:root {
    --primary-color: #3b6d3b; /* Sage / Moss */
    --secondary-color: #d1e8c4; /* Pale Mint */
    --accent-color: #f2aeb4; /* Rose Petal */
    --warm-cream: #fdfaf5; /* Warm Paper / Linen */
    --deep-green: #1a301a;
    --sand: #ece4d9;
    --bloom-shadow: rgba(242, 174, 180, 0.2);
    --transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    --header-height: 110px;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #fdfaf5 0%, #f7f2e8 100%); /* Elegant gradient for glass effect */
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Subtle Organic Texture */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/natural-paper.png');
    opacity: 0.15;
    pointer-events: none;
    z-index: 9999;
}

h1, h2, h3, .subtitle {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Header Header Refined */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(253, 250, 245, 0.6); /* Glassy background */
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.main-header.scrolled {
    height: 90px;
    background: rgba(253, 250, 245, 0.98);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.header-container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    position: relative;
    z-index: 2;
}

/* Ivy Integrated Logic */


.logo-container {
    width: 180px;
    display: flex;
    justify-content: center;
    position: relative;
    transition: var(--transition);
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    filter: blur(60px);
    opacity: 0.3;
    z-index: -1;
}

.brand-logo {
    max-width: 100%;
    height: auto;
    margin-top: 16px;
}

.nav-links {
    display: flex;
    gap: 40px;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.nav-links a {
    position: relative;
    display: inline-block;
    padding: 10px 0;
}

.nav-links a span {
    position: relative;
    z-index: 1;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 6px;
    background: var(--secondary-color);
    transition: var(--transition);
    z-index: 0;
    opacity: 0.5;
}

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



/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

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

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

/* Hero Section Overhaul */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: transparent; /* Changed from deep-green to allow video visibility */
}

.video-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Above the background, but below overlay */
    background: var(--deep-green);
}

.slider-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1), transform 2s ease-out;
    filter: brightness(0.9) saturate(1.1);
}

.slider-video.active {
    opacity: 1;
    z-index: 1;
    transform: scale(1);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 10;
    pointer-events: none;
}

.slider-arrow {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
}

.slider-arrow:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.slider-indicator {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 40px 0;
    background-color: var(--warm-cream);
    z-index: 100;
    position: relative;
    border-top: 1px solid rgba(0,0,0,0.03);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #3b6d3b !important; /* Force Sage Green */
    opacity: 0.2;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: #3b6d3b !important; /* Force Sage Green active */
    width: 50px;
    border-radius: 20px;
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(26, 48, 26, 0.4) 0%, rgba(26, 48, 26, 0.1) 70%, var(--warm-cream) 100%);
    z-index: 0; /* Above video-slider */
}

.hero-content {
    max-width: 800px;
    color: #fff;
    padding: 0 20px;
    position: relative;
    z-index: 10; /* Above all */
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 10px 40px rgba(0,0,0,0.3);
    letter-spacing: -2px;
}

.hero-content .accent {
    display: inline-block;
    color: var(--accent-color);
    font-style: italic;
    background: none;
    position: relative;
}

.hero-content .accent::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 15px;
    background: var(--secondary-color);
    z-index: -1;
    opacity: 0.3;
    transform: rotate(-1deg);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    margin: 10px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(59, 109, 59, 0.2);
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateY(-3px);
}

/* Collection Section */
.collection-section {
    padding: 120px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.subtitle {
    display: block;
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
}

.title-decoration {
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 20px auto 0;
}

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

.flower-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.flower-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.card-image {
    height: 400px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.discount {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.card-info {
    padding: 25px;
}

.card-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.card-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.price {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* About Section */
.about-section {
    padding: 120px 0;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 80px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.about-image {
    position: relative;
    border-radius: 300px 300px 0 0;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    display: block;
}



.about-text h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.about-text p {
    margin-bottom: 25px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.btn-text {
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-text:hover {
    gap: 20px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.contact-wrapper {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 60px;
    border-radius: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.status-indicator {
    padding-top: 10px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

#status-text {
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 1.1rem;
    transition: var(--transition);
}

.status-indicator.is-open i {
    color: #4caf50;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
    100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

.social-links {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.social-links a:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.contact-form h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 18px 25px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.5);
}

/* Footer */
.main-footer {
    padding: 80px 0 40px;
    background: rgba(253, 250, 245, 0.4);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/natural-paper.png'), 
                      url('https://images.unsplash.com/photo-1490750967868-88aa4486c946?q=20&w=2000&auto=format&fit=crop'); 
    background-size: initial, cover;
    background-blend-mode: overlay;
    opacity: 0.05;
    z-index: -1;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.footer-brand {
    height: 80px;
}

.footer-nav ul {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-copyright {
    margin-top: 20px;
    opacity: 0.6;
    font-size: 0.85rem;
}

/* Deskrop row layout override */
@media (min-width: 993px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    .footer-copyright {
        margin-top: 0;
        text-align: right;
    }
}

@media (max-width: 768px) {
    .main-footer {
        background: rgba(255, 255, 255, 0.9);
    }
    .footer-nav ul {
        gap: 20px;
        font-size: 0.8rem;
    }
    .footer-brand {
        height: 60px;
    }
}

.footer-nav a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-nav a:hover {
    color: var(--primary-color);
}


/* More Mobile Adjustments */
@media (max-width: 768px) {

    .hero-content h1 {
        font-size: 3rem;
    }
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
    .about-grid, .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 3.2rem;
        letter-spacing: -1px;
    }
    .brand-logo {
        max-width: 100%;
        height: auto;
        margin-top: 38px;
    }
    .gallery-hero-content h1 {
        font-size: 1.6rem; /* Further decreased to prevent wrapping on mobile */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: clip; /* Or ellipsis, but clip just cuts off, which is rarer with such small font size */
    }
    .breadcrumb {
        font-size: 1.3rem; /* Further increased for mobile visibility */
    }
}

/* Mobile Nav Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(253, 250, 245, 0.98);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.7s cubic-bezier(0.8, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
}

.mobile-nav.active {
    right: 0;
    opacity: 1;
    visibility: visible;
}

.mobile-nav-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/natural-paper.png');
    opacity: 0.1;
    pointer-events: none;
}

.mobile-nav-links {
    text-align: left;
    padding-left: 10%;
    width: 100%;
}

.mobile-nav-links li {
    margin: 25px 0;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.mobile-nav.active .mobile-nav-links li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav.active li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.active li:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav.active li:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav.active li:nth-child(4) { transition-delay: 0.4s; }

.mobile-link {
    font-size: 2.8rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.mobile-link span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-color);
    position: absolute;
    top: 5px;
    left: -35px;
}

.mobile-nav-footer {
    position: absolute;
    bottom: 50px;
    width: 100%;
    text-align: center;
}

.mobile-nav-footer p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.mobile-nav-socials {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.mobile-nav-socials a {
    font-size: 1.4rem;
    color: var(--primary-color);
}

.no-scroll {
    overflow: hidden !important;
}

/* Gallery Section */
.gallery-section {
    padding-bottom: 120px;
    background-color: var(--warm-cream);
}

.gallery-hero {
    position: relative;
    height: 450px; /* Increased height slightly to accommodate padding */
    background-image: url('https://images.unsplash.com/photo-1490750967868-88aa4486c946?q=80&w=2000&auto=format&fit=crop'); /* Cinematic background */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: 80px;
    padding-top: var(--header-height);
}

.gallery-hero .hero-overlay {
    background-image: linear-gradient(to bottom, rgba(26, 48, 26, 0.7) 0%, rgba(26, 48, 26, 0.4) 100%);
}

.gallery-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.breadcrumb {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.gallery-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 10px;
}

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

.masonry-grid {
    columns: 4 300px;
    column-gap: 20px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

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

.gallery-more {
    text-align: center;
    margin-top: 60px;
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 1s ease-out 0.3s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 1s ease-out 0.6s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .gallery-hero h1 {
        font-size: 3rem;
    }
    .masonry-grid {
        columns: 2 250px;
    }
}

@media (max-width: 768px) {
    .gallery-hero {
        height: 300px;
    }
    .gallery-hero h1 {
        font-size: 2.5rem;
    }
    .masonry-grid {
        columns: 1;
    }
    .gallery-container {
        padding: 0 20px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Cookie Banner Styling */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 320px;
    background: rgba(253, 250, 245, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
    z-index: 9999;
    transform: translateY(120%);
    transition: transform 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cookie-logo {
    height: 50px;
    margin-bottom: 20px;
}

.cookie-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.cookie-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    width: 100%;
}

.btn-cookie {
    flex: 1;
    padding: 12px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-accept {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-reject {
    background: rgba(0,0,0,0.05);
    color: var(--text-dark);
}

.btn-cookie:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .cookie-banner {
        left: 20px;
        right: 20px;
        bottom: 20px;
        max-width: none;
    }
}
