/* ============================================
   CANNABIS CULTURE - STYLESHEET
   ============================================ */

/* Variables */
:root {
    --primary-green: #2d5a27;
    --secondary-green: #4a7c47;
    --accent-green: #7cb342;
    --dark-green: #1a3a1a;
    --lime: #cddc39;
    --gold: #ffc107;
    --purple: #7b1fa2;
    --earth: #5d4037;
    --bg-dark: #0d1f0d;
    --bg-light: #f8faf7;
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(13, 31, 13, 0.95), rgba(13, 31, 13, 0.8));
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(124, 179, 66, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.logo:hover {
    color: var(--lime);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-green);
    transition: var(--transition);
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 5% 60px;
    position: relative;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--dark-green) 100%);
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent-green), var(--lime));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s both;
}

.btn-hero {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    animation: fadeInUp 1s ease 0.4s both;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(124, 179, 66, 0.4);
}

.hero-image {
    position: relative;
    z-index: 2;
    max-width: 45%;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    animation: float 6s ease-in-out infinite;
}

/* Introduction */
.intro {
    padding: 80px 20px;
    background: var(--bg-light);
    text-align: center;
}

.intro h2 {
    color: var(--primary-green);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.intro p {
    color: var(--text-dark);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Section Titles */
.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--accent-green);
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

/* Varieties Section */
.varieties {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--dark-green) 100%);
}

.variety-grid {
    display: grid;
    gap: 40px;
}

.variety-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(124, 179, 66, 0.2);
}

.variety-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow);
    border-color: var(--accent-green);
}

.variety-card:nth-child(even) {
    direction: rtl;
}

.variety-card:nth-child(even) > * {
    direction: ltr;
}

.variety-image {
    height: 400px;
    overflow: hidden;
}

.variety-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.variety-card:hover .variety-image img {
    transform: scale(1.1);
}

.variety-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.variety-tag {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 15px;
}

.variety-tag.positive {
    background: rgba(124, 179, 66, 0.2);
    color: var(--lime);
}

.variety-tag.relax {
    background: rgba(123, 31, 162, 0.2);
    color: #ce93d8;
}

.variety-tag.balanced {
    background: rgba(255, 193, 7, 0.2);
    color: var(--gold);
}

.variety-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: white;
}

.variety-origin {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-bottom: 20px;
}

.variety-traits {
    list-style: none;
    margin-bottom: 20px;
}

.variety-traits li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.variety-traits strong {
    color: var(--accent-green);
}

.effects {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.effect-tag {
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
}

.effect-tag.positive {
    background: var(--primary-green);
    color: white;
}

.effect-tag.relax {
    background: var(--purple);
    color: white;
}

.effect-tag.balanced {
    background: var(--earth);
    color: white;
}

.variety-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* Popular Strains */
.popular-strains {
    padding: 100px 20px;
    background: var(--bg-light);
}

.popular-strains .section-title {
    color: var(--primary-green);
}

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

.strain-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    text-align: center;
    padding-bottom: 20px;
}

.strain-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(45, 90, 39, 0.2);
}

.strain-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.strain-card h4 {
    color: var(--primary-green);
    margin: 15px 0 10px;
    font-size: 1.3rem;
}

.strain-type {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.strain-type.sativa {
    background: #e8f5e9;
    color: #2e7d32;
}

.strain-type.indica {
    background: #f3e5f5;
    color: #7b1fa2;
}

.strain-type.hybrid {
    background: #fff8e1;
    color: #f57f17;
}

.strain-thc {
    color: var(--secondary-green);
    font-weight: 600;
    font-size: 0.9rem;
}

.strain-desc {
    color: #666;
    font-size: 0.9rem;
    padding: 0 15px;
}

/* Cultivation Section */
.cultivation {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--dark-green) 0%, var(--bg-dark) 100%);
}

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

.culture-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(124, 179, 66, 0.2);
    transition: var(--transition);
}

.culture-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-5px);
}

.culture-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.culture-card h3 {
    color: var(--accent-green);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.culture-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.culture-card p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 15px;
}

.culture-card ul {
    list-style: none;
}

.culture-card li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.culture-card li::before {
    content: '✓ ';
    color: var(--accent-green);
}

/* Tips Section */
.tips {
    padding: 100px 20px;
    background: var(--bg-light);
}

.tips .section-title {
    color: var(--primary-green);
}

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

.tip-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 90, 39, 0.15);
}

.tip-card h4 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.tip-card p {
    color: #555;
    line-height: 1.7;
}

/* Gallery Section */
.gallery {
    padding: 100px 20px;
    background: var(--bg-dark);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 31, 13, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay span {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Disclaimer */
.disclaimer {
    padding: 60px 20px;
    background: #1a1a2e;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 15px;
    padding: 30px;
}

.disclaimer-box h3 {
    color: var(--gold);
    margin-bottom: 15px;
}

.disclaimer-box p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 60px 20px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--accent-green);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    margin-top: 10px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-image {
        max-width: 80%;
        margin-top: 40px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .variety-card {
        grid-template-columns: 1fr;
    }
    
    .variety-card:nth-child(even) {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .variety-image {
        height: 250px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Image Placeholders */
.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.image-placeholder span {
    font-size: 4rem;
}

.image-placeholder small {
    margin-top: 10px;
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-img {
    background: linear-gradient(135deg, #1a472a 0%, #2d5a27 50%, #4a7c47 100%);
    height: 400px;
    animation: pulse 4s ease-in-out infinite;
}

.hero-img span {
    font-size: 6rem;
}

.sativa-img {
    background: linear-gradient(135deg, #ff9800 0%, #ffc107 50%, #ffeb3b 100%);
}

.indica-img {
    background: linear-gradient(135deg, #4a148c 0%, #7b1fa2 50%, #9c27b0 100%);
}

.hybrid-img {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 50%, #43a047 100%);
}

.strain-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px 15px 0 0;
}

.strain-img span {
    font-size: 3.5rem;
}

.og-kush { background: linear-gradient(135deg, #ff5722, #ff7043); }
.gsc { background: linear-gradient(135deg, #8e24aa, #ab47bc); }
.blue-dream { background: linear-gradient(135deg, #1565c0, #42a5f5); }
.northern-lights { background: linear-gradient(135deg, #283593, #5c6bc0); }
.sour-diesel { background: linear-gradient(135deg, #f9a825, #fdd835); }
.gorilla-glue { background: linear-gradient(135deg, #37474f, #607d8b); }

.culture-img {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 15px;
}

.culture-img span {
    font-size: 3rem;
}

.germination { background: linear-gradient(135deg, #81c784, #a5d6a7); }
.croissance { background: linear-gradient(135deg, #66bb6a, #81c784); }
.floraison { background: linear-gradient(135deg, #ffb74d, #ffcc80); }
.recolte { background: linear-gradient(135deg, #a1887f, #bcaaa4); }

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-placeholder span {
    font-size: 4rem;
    margin-bottom: 15px;
}

.gallery-placeholder p {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}

.gallery-placeholder:hover {
    transform: scale(1.05);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(124, 179, 66, 0.3); }
    50% { box-shadow: 0 0 40px rgba(124, 179, 66, 0.6); }
}
