:root {
    --bg-color: #afbca6;       /* Soft Cream */
    --header-bg: #364f36;     /* Dark Forest Green for Top Bar */
    --text-main: #2c2c2c;     /* Deep Charcoal */
    --accent-green: #4a6741;  /* Sage Green for buttons/links */
    --border-color: #e0e0da;  /* Subtle line separator */
}



body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    line-height: 1.6;
}

header {
    background-color: var(--header-bg);
    color: #f6f3e8;
    padding: 10px 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Add a buffer when jumping to an anchor ID */
tr[id] {
    scroll-margin-top: 300px; /* Adjust this number to your liking */
}

.stocktable {
    table-layout: fixed; /* Forces the table to obey the width setting */
    width: 90% !important;
	padding: none !important;
    word-wrap: break-word; /* Forces long botanical names to break */
	font-size: clamp(12px, 3vw, 16px);
}

/* Navbar Base */
.navbar {
    background: #f6f3e8;
    padding-right: 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-container {
	background-color: #f6f3e8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: white;
    font-weight: 800;
}
.logo span { color: var(--bamboo-gold); }

/* Hide Toggle and Desktop Links on Mobile */
.menu-toggle { display: none; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #364f36;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover { color: var(--bamboo-gold); }

/* MOBILE STYLES (Under 768px) */
@media (max-width: 768px) {
    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        background-color: black;
        transition: 0.3s;
    }

    .nav-links {
        position: absolute;
        top: 50%;
        left: 0;
        width: 88%;
        background-color: #f6f3e8;
        flex-direction: column;
        text-align: center;
        gap: 0;
        max-height: 0; /* Hidden by default */
        overflow: auto;
        transition: max-height 0.4s ease-in-out;
    }

    .nav-links li {
        width: 100%;
		height: 60px !important;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .nav-links a {
        display: block;
        padding: 1.5rem;
    }

    /* The "Hack": When checkbox is checked, show the menu */
    .menu-toggle:checked ~ .nav-links {
        max-height: 500px; /* Expands the menu */
    }

    /* Simple Hamburger Animation */
    .menu-toggle:checked ~ .hamburger .bar:nth-child(2) { opacity: 0; }
    .menu-toggle:checked ~ .hamburger .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle:checked ~ .hamburger .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* Nav Button (Contact) */
.nav-btn {
    background: var(--bamboo-gold);
    color: var(--deep-evergreen) !important;
    padding: 0.6rem 1.2rem;
    border-radius: 2px;
    font-weight: 700 !important;
	white-space: nowrap; /* Prevents the text from wrapping to a new line */
    display: inline-block; /* Ensures the button keeps its shape */
    /* Optional: If the button is too long for the screen, this prevents it from breaking the layout */
    max-width: 100%; 
    overflow: hidden;
    text-overflow: ellipsis; /* Adds "..." if it absolutely cannot fit */
}


    .nav-container {
        flex-direction: column; /* Stacks the logo and hamburger vertically */
        align-items: flex-start; /* Aligns them to the left */
        gap: 20px; /* This creates the "space" instead of using <br> */
    }

    .hamburger {
        align-self: flex-end; /* Optional: Pushes hamburger to the right side of the second line */
    }


.main {
	height: 600px;
    background: #f6f3e8;
    padding: 60px 20px;
    text-align: center;
	background-image: url(img/spectabilis.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 1050px 788px;
}


.glass-box {
    /* Black with 40% opacity - adjust the 0.4 to go lighter or darker */
    background: rgba(54,79,54, 0.5); 
    
    /* This creates the "frosted glass" effect on the photo behind it */
    backdrop-filter: blur(2px); 
    -webkit-backdrop-filter: blur(2px);
    
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2); /* Very subtle highlight edge */
    max-width: 700px;
    margin: 0 auto; /* Centers the box */
    text-align: center;
}

/* Ensure your text stays readable and bright */
.glass-box h1 {
    margin-top: 0;
    color: #ffffff;
}

.glass-box .lead {
    color: #f4f7f5;
    font-size: 36px;
    margin-bottom: 10px;
}


.shadowbox {
	margin-top: 40px;
    left: 20%;
    width: 80%;
    height: 100px;
    background-color: #f6f3e8; /* The div's background color */
    box-shadow: 50px 50px 50px rgba(0, 0, 0, 0.2); /* Black shadow with 50% opacity */
  
}	 


h1, h2, h3 {
    color: var(--header-bg);
    font-family: 'Georgia', serif;
	font-size: 36px;
}


.container {
    max-width: 1000px;
    margin: auto;
    padding: 40px 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}

.footer {
    background: #f6f3e8;
    padding: 40px;
    text-align: center;
    margin-top: 50px;
}

.social-sidebar {
    position: fixed;
    left: 0px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

.social-icon {
    background: var(--bamboo-gold);
    color: var(--deep-evergreen);
    padding: 10px;
	padding-left: 1px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.bamboosocial {

height: 40px;
width: 40px;
}

.authority-bar {
    background: var(--header-bg); /* Dark Forest Green */
    color: #f6f3e8;
    padding: 40px 5%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-number {
    display: block;
    font-family: 'Georgia', serif;
    font-size: 3.5rem;
    color: #c5a059; /* Bamboo Gold */
    line-height: 1;
}

.stat-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 600;
}

.dnr-quote p {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 1.8rem;
    margin: 0;
}

.dnr-source {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.2);
}

.btn-primary {
    background: #364f36;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    display: inline-block;
}

/* Pricing Container */
.price-table-container {
    background-color: #f9f9f7;
    padding: 20px; /* Reduced padding for mobile friendliness */
    font-family: 'Segoe UI', sans-serif;
    overflow-x: auto; /* Safety for small screens */
}

/* Bamboo Pricing */
.bamboo-price-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: none;
}

/* Header Styling */
.bamboo-price-thead {
    background-color: #1b3022;
    color: #ffffff;
}

.bamboo-price-th {
    padding: 18px;
    text-align: left;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Cell and Row Styling */
.bamboo-price-td {
    padding: 15px 18px;
    border-bottom: 1px solid #eee;
    color: #444;
}

/* Stripe Effect - Targeted specifically */
.bamboo-price-row:nth-child(even) {
    background-color: #fcfcf9;
}

/* Species Column Highlight */
.bamboo-price-td.species-name {
    color: #1b3022;
    font-weight: 700;
    font-family: 'Georgia', serif;
}

/* Pricing Color */
.bamboo-price-td.price-tag {
    font-weight: 600;
    color: #4a6741;
}

/* Hover Effect - Targeted specifically */
.bamboo-price-row:hover {
    background-color: #f0f4ef;
    transition: background 0.3s ease;
}

/* Styling Links inside the Price Table */
.bamboo-price-td a {
    color: #1b3022; /* Matches your Dark Forest Green header */
    text-decoration: none; /* Removes the default underline */
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
	text-decoration: none;
}

.bamboo-price-td a:hover {
    color: #c5a059; /* Your "Bamboo Gold" accent color */
    border: none;
}

/* Specific styling for links in the Species column */
.species-name a {
    font-family: 'Georgia', serif; /* Matches the species font style */
    font-style: italic; /* Common for botanical names */
}

.horizontal-info-container {
    width: 95%;            /* Use percentage instead of pixels */
    max-width: 1100px;     /* Only allow it to go up to 1100px */
    margin: 20px auto;
    padding: 0;
    box-sizing: border-box;
}

.horizontal-card {
    display: flex;
    flex-direction: row;   /* Desktop: Icon on left, Text on right */
    width: 100%;           /* Stay inside the container */
    background: #fff !important; /* Force Chrome to show white */
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    box-sizing: border-box;
}


/* The Right Side Text Block */
.card-content {
    padding: 30px;
    flex: 1;
}

.card-content h3 {
    color: #1b3022;
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-content h7 {
    color: #1b3022;
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.4rem;
	font-weight: bolder;
    letter-spacing: 1px;
}

.card-content p {
    color: #444;
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

.news-events-container {
    width: 95%;
    max-width: 1100px;
    margin: 20px auto;
}

/* News & Events Section */
.news-events-container {
    width: 95%;
    max-width: 1100px;
    margin: 20px auto;
    padding: 0 10px; /* Prevents the card from touching phone edges */
    box-sizing: border-box;
}

.news-card {
    background-color: #e2eae2 !important; /* Force sage background */
    border-left: 6px solid #c5a059 !important; /* Thick gold accent */
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: block !important; /* Ensure it doesn't get hidden */
    margin-bottom: 30px;
}

.news-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    border-bottom: 1px solid #dee2de;
    padding-bottom: 8px;
}

/* Mobile adjustments for the header */
@media (max-width: 768px) {
    .news-header {
        flex-direction: column; /* Stack label and date on tiny screens */
        gap: 5px;
    }
}

.news-label {
    text-transform: uppercase;
    font-weight: bold;
    color: #1b3022;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.news-date {
    color: #666;
    font-size: 0.85rem;
}

.news-body h3 {
    margin-top: 0;
    color: #1b3022;
}

.news-body ul {
    list-style: none;
    padding: 0;
}

.news-body li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.news-body li::before {
    content: "\2022"; /*represents • in code form*/
    color: #c5a059;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Mobile: Stack them vertically when screen is small */
@media (max-width: 768px) {
    .horizontal-card {
        flex-direction: column;
		max-width: 600px;
    }
    .card-visual {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .bamboo-price-table, 
    .bamboo-price-thead, 
    .bamboo-price-tbody, 
    .bamboo-price-th, 
    .bamboo-price-td, 
    .bamboo-price-row { 
        display: block; 
    }
    
    .bamboo-price-thead .bamboo-price-header-row { 
        position: absolute; 
        top: -9999px; 
        left: -9999px; 
    }
    
    .bamboo-price-row { 
        border: 1px solid #ccc; 
        margin-bottom: 10px; 
    }
    
    .bamboo-price-td { 
        border: none; 
        position: relative; 
        /* Switch padding from left to right */
        padding-left: 15px; 
        padding-right: 50%; 
        text-align: left; /* Actual data (e.g., "$70") now sits on the left */
    }
    
    .bamboo-price-td:before { 
        position: absolute; 
        /* Switch label from left to right */
        right: 10px; 
        left: auto;
        font-weight: bold;
        content: attr(data-label); 
        text-align: right;
        color: #1b3022; /* Dark green for the labels */
    }
	
	.bamboo-price-td a {
        font-size: 1.1rem; /* Slightly larger for mobile readability */
        display: inline-block; /* Allows padding to work better */
        padding: 5px 0; /* Creates a larger "tap target" for fingers */
        color: #4a6741; /* Using the Sage Green for better visibility on mobile */
        text-decoration: none; /* Standard underline is often clearer on mobile */
    }

    /* If the species name is a link, make it even more prominent */
    .species-name a {
        font-size: 1.2rem;
        display: block; /* Takes up its own line to prevent accidental clicks on prices */
        margin-bottom: 5px;
		text-decoration: none;
    }
}


/* Mobile Friendly Adjustments */
@media (max-width: 768px) {
    .authority-bar {
        flex-direction: column;
        gap: 40px;
    }
    .divider {
        width: 60px;
        height: 1px;
    }
    .stat-number {
        font-size: 4.5rem; /* Larger on mobile as requested! */
    }
	
	.main {
	height: 600px;
    background: #f6f3e8;
    padding: 60px 20px;
    text-align: center;
	background-image: url(img/spectabilis.jpg);
	background-repeat: no-repeat;
	background-position: -100px center;
	background-size: 1050px 788px;
}
}

/* --- Mobile Specific Font Adjustments --- */
@media (max-width: 768px) {
    
    /* Makes the main site titles larger on small screens */
    h1, h2, h3 {
        font-size: 42px; /* Increased from 36px */
        line-height: 1.2;
    }
	
	.card-content h7 {
        font-size: 42px; /* Increased from 36px */
        line-height: 1.2;
		font-weight: bolder;
    }

    /* Makes the headline inside the main image much more prominent */
    .glass-box h1 {
        font-size: 48px; 
    }

    /* Makes the sub-text (lead) easier to read on mobile */
    .glass-box .lead {
        font-size: 28px; /* Adjusted for better flow on narrow screens */
        line-height: 1.4;
    }

    /* Adjust the glass box padding so text has more room */
    .glass-box {
        padding: 25px 15px;
        width: 95%; /* Take up more width on small screens */
    }

    /* Ensure body text is also comfortable for mobile reading */
    body {
        font-size: 18px; 
    }
}

@media (max-width: 768px) {
    .horizontal-card {
        flex-direction: column; /* Phone: Icon on TOP, Text on BOTTOM */
    }
    
    .card-visual {
        width: 100%;         /* Make icon section full width */
        padding: 20px 0;
    }

    /* Ensure images don't push the page wide */
    img {
        max-width: 100% !important;
        height: auto !important;
    }
}
