@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
    --bg-dark: #090c09;
    --bg-card: rgba(20, 30, 20, 0.6);
    --text-main: #f0f4f0;
    --text-muted: #a0a8a0;
    --accent-purple: #8b3a62;
    --accent-purple-glow: rgba(139, 58, 98, 0.5);
    --accent-gold: #d4af37;
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Outfit', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-purple), #5c2040);
    color: white;
    box-shadow: 0 4px 15px var(--accent-purple-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 58, 98, 0.7);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
}

.btn-outline:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
}

nav.scrolled {
    background: rgba(9, 12, 9, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 5%;
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 2px;
}

.logo span {
    color: var(--accent-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--accent-gold);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-gold);
    transition: var(--transition);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 5%;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('Pic 1.webp') center/cover no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(9, 12, 9, 0.4), var(--bg-dark));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out forwards;
}

.hero-tagline {
    color: var(--accent-gold);
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 40px;
}

/* Sections */
section {
    padding: 100px 5%;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Why Mulberry Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 40px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--accent-purple);
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
}

/* Products Section */
.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

.product-card:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.product-img {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.product-content {
    padding: 30px;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
}

.product-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.product-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    min-height: 80px;
}

/* Interactive Timeline */
.timeline-section {
    background: linear-gradient(rgba(9, 12, 9, 0.9), rgba(9, 12, 9, 0.9)), url('Pic 2.webp') center/cover fixed;
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.slider-container {
    margin: 40px 0;
}

#timeline-slider {
    width: 100%;
    -webkit-appearance: none;
    height: 4px;
    background: var(--glass-border);
    border-radius: 2px;
    outline: none;
}

#timeline-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-gold);
    cursor: pointer;
    box-shadow: 0 0 15px var(--accent-gold);
}

.timeline-display {
    font-size: 5rem;
    font-family: 'Playfair Display', serif;
    color: var(--accent-purple);
    font-weight: 700;
    margin: 20px 0;
    text-shadow: 0 0 20px var(--accent-purple-glow);
}

.timeline-desc {
    font-size: 1.2rem;
    color: #fff;
    min-height: 60px;
}

/* Accordion (Guide) */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
}

.accordion-header {
    background: var(--bg-card);
    padding: 20px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.2rem;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.accordion-header:hover {
    background: rgba(30, 40, 30, 0.8);
}

.accordion-content {
    background: rgba(10, 15, 10, 0.5);
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    border-left: 1px solid var(--glass-border);
    border-right: 1px solid var(--glass-border);
}

.accordion-content p {
    padding: 20px 0;
    color: var(--text-muted);
}

.accordion-content h4 {
    color: var(--accent-gold);
    margin-top: 15px;
}

/* Pollinator/Manifesto Banner */
.manifesto {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.manifesto blockquote {
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--text-main);
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    height: 250px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Footer / Newsletter */
footer {
    background: #050705;
    padding: 60px 5% 30px;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.newsletter {
    max-width: 600px;
    margin: 0 auto 40px;
    padding: 40px;
}

.newsletter h3 {
    margin-bottom: 10px;
    font-size: 2rem;
}

.newsletter p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: 'Outfit', sans-serif;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-purple);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 40px;
}

/* Checkout Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.checkout-modal {
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    transform: translateY(50px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .checkout-modal {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

.close-modal:hover {
    color: white;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.checkout-img {
    border-radius: 12px;
    height: 100%;
    min-height: 300px;
    background: url('Pic 6.webp') center/cover;
}

.checkout-details h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--accent-gold);
}

.checkout-details .price {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.checkout-details ul {
    list-style: none;
    margin-bottom: 20px;
}

.checkout-details ul li {
    margin-bottom: 10px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.checkout-details ul li::before {
    content: '✓';
    color: var(--accent-purple);
    margin-right: 10px;
    font-weight: bold;
}

.paypal-btn {
    width: 100%;
    background: #FFC439;
    color: #003087;
    font-weight: bold;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.2s;
}

.paypal-btn:hover {
    background: #F4BB33;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 70%;
        background: rgba(9, 12, 9, 0.95);
        backdrop-filter: blur(15px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        padding: 20px;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        margin: 15px 0;
    }

    .hero h1 {
        font-size: 3rem;
    }
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    .newsletter-form {
        flex-direction: column;
    }
}

/* Article Page Styles */
.article-container {
    max-width: 900px;
    margin: -100px auto 100px;
    padding: 50px 8%;
    position: relative;
    z-index: 10;
}

.article-content h2 {
    color: var(--accent-gold);
    margin-top: 50px;
    margin-bottom: 25px;
    font-size: 2.2rem;
}

.article-content h3 {
    color: var(--text-main);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.article-content p {
    margin-bottom: 20px;
    color: #d8e0d8;
    font-size: 1.15rem;
    line-height: 1.8;
}

.article-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
    color: #d8e0d8;
}

.article-content ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    margin: 40px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    border: 1px solid var(--glass-border);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.references {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
}

.references h3 {
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.references a {
    color: #a46d88;
    text-decoration: underline;
    transition: color 0.3s;
}

.references a:hover {
    color: var(--text-main);
}

