:root {
    --green: #6B9E78;
    --green-bright: #7FB892;
    --black: #000;
    --gray-dark: #0a0a0a;
    --gray-medium: #1a1a1a;
    --gray-light: #333;
    --text-primary: #fff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 500;
}

/* Header & Navigation */
header {
    background: var(--black);
    border-bottom: 1px solid var(--gray-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--green);
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(107, 158, 120, 0.3);
}

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

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    transition: color 0.2s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

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

/* Main Content */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5rem 0;
    border-bottom: 1px solid var(--gray-light);
}

section:last-child {
    border-bottom: none;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--green);
    text-transform: uppercase;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
    opacity: 0.3;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h2 {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 900;
    letter-spacing: 3px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

.hero-content p {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Mother Plants Section */
.mother-plant {
    margin-bottom: 3rem;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin: 2rem 0;
    background: var(--gray-dark);
    border-radius: 4px;
}

.video-container video,
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gray-light);
    border-radius: 4px;
}

.youtube-links {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.yt-link,
.yt-subscribe {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.yt-link {
    background: var(--gray-medium);
    color: var(--text-primary);
    border: 1px solid var(--gray-light);
}

.yt-link:hover {
    border-color: var(--green);
    background: var(--gray-dark);
}

.yt-link svg {
    color: var(--green);
}

.yt-subscribe {
    background: var(--green);
    color: var(--black);
    border: 1px solid var(--green);
}

.yt-subscribe:hover {
    background: var(--green-bright);
    transform: translateY(-1px);
}

.mother-description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Strains Section */
.section-info {
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin-bottom: 3.5rem;
    margin-top: 0.5rem;
}

.strain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.strain-card {
    border: 1px solid var(--gray-light);
    padding: 2.5rem;
    background: var(--gray-medium);
    transition: all 0.3s ease;
    border-radius: 4px;
    position: relative;
}

.strain-card:hover {
    border-color: var(--green);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 158, 120, 0.1);
}

.strain-card h3 {
    margin-bottom: 1.25rem;
    font-size: 1.75rem;
    color: var(--text-primary);
}

.strain-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 1rem;
    border: 1px solid var(--gray-light);
}

.parent-label {
    color: var(--green);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    font-style: italic;
}

.genetics {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1rem;
}

.seed-info {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.availability {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.pricing {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: var(--gray-dark);
    border-radius: 4px;
    border: 1px solid var(--gray-light);
}

.price-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
}

.price-label {
    color: var(--text-secondary);
}

.price-amount {
    color: var(--green);
    font-weight: 600;
    font-size: 1.1rem;
}

.buy-button,
.inquire-button {
    width: 100%;
    padding: 1rem;
    background: var(--green);
    color: var(--black);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 0.5rem;
}

.buy-button:hover,
.inquire-button:hover {
    background: var(--green-bright);
    transform: translateY(-1px);
}

.buy-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Contact Section */
.contact {
    min-height: 30vh;
}

/* Footer */
footer {
    border-top: 1px solid var(--gray-light);
    padding: 3rem 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1.25rem;
        padding: 1.5rem;
    }

    .nav-links {
        gap: 1.75rem;
        font-size: 0.9rem;
    }

    .hero {
        min-height: 50vh;
        padding: 4rem 0;
    }

    .hero-content h2 {
        font-size: 2.75rem;
        letter-spacing: 1.5px;
    }

    .hero-content p {
        font-size: 1.15rem;
    }

    h2 {
        font-size: 2rem;
    }

    section {
        padding: 3.5rem 0;
    }

    .strain-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .strain-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    main {
        padding: 0 1.25rem;
    }

    .logo h1 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .hero-content h2 {
        font-size: 2.25rem;
        letter-spacing: 1px;
    }

    .strain-card {
        padding: 1.75rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }
}
