:root {
    /* Text Colors */
    --text-dark: #333333;
    --text-dark-muted: #555555;
    --text-gold: #FFE66E;
    --text-gold-muted: #cbb232;
    
    /* Background Colors */
    --bg-light: #FFFFFF;
    --bg-gold: #FFE66E;
    --bg-dark: #000000;
}


/* Reset default styles */
@font-face {
    font-family: 'NADALL';
    src: url('../assets/fonts/NADALL.woff') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: var(--text-dark);
    padding-top: 80px; /* Adjust this value to match your header height */
}

#app {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    flex: 1;
}

/* Main Styles */
h1 {
    font-family: 'NADALL', Arial, sans-serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
}

h2 {
    font-family: 'NADALL', Arial, sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
}

h3 {
    font-family: 'NADALL', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
}

p {
    color: var(--text-dark-muted);
}

a {
    color: var(--text-dark);
    text-decoration: underline;
}

/* Header Styles */
.site-header {
    background-color: var(--bg-dark);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
}

.main-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.logo {
    width: 100px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-dark);
}

.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: var(--text-gold);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 100%;
    object-fit: contain;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-gold);
    font-weight: 700;
    font-family: 'NADALL', Arial, sans-serif;
    font-size: 1.5rem;
}

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

.mobile-nav {
    display: none;
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-dark);
        padding: 2rem;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        z-index: 1000;
    }

    .mobile-nav.active {
        display: flex;
    }

    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .hamburger-menu span {
        width: 100%;
        height: 3px;
        background-color: var(--text-gold);
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .hamburger-menu.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

@media (min-width: 769px) {
    .hamburger-menu {
        display: none;
    }
}

/* Footer Styles */
footer {
    background-color: var(--bg-gold);
    color: var(--head-dark);
    padding: 2rem 0 1rem;
    margin-top: auto;
}

#footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#footer-warning {
    font-size: 0.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

#footer-separator {
    border-top: 1px solid var(--text-dark);
    margin-bottom: 1rem;
}

#footer-bottom-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8rem;
}

@media (max-width: 768px) {
    #footer-bottom-info {
        flex-direction: column;
        gap: 2rem;
    }
}

#footer-cert img {
    width: 150px;
    height: auto;
}

/* Strains Page Styles */
.strains-container {
    padding: 2rem 0;
}

.strains-container h1 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.strains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.strain-card {
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.strain-card:hover {
    transform: translateY(-5px);
}

.strain-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.strain-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.strain-info {
    padding: 1.5rem;
}

.strain-info h3 {
    font-family: 'NADALL', Arial, sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.strain-type {
    color: var(--text-gold-muted);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.strain-description {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.strain-details {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.strain-details span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-gold-muted);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .strains-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .strains-container h1 {
        font-size: 3rem;
    }
}

button {
    background: linear-gradient(90deg, var(--bg-gold) 0%, var(--text-gold-muted) 100%);
    color: var(--text-dark);
    border: 3px solid var(--text-dark);
    border-radius: 16px;
    padding: 0.5em 1.5em;
    font-size: 1.5rem;
    font-family: 'NADALL', Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    outline: none;
    margin: 1.5rem 0;
}

button:hover, button:focus {
    color: var(--bg-dark);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    letter-spacing: 0.2em;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, letter-spacing 0.2s;
}