@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --primary-bg: #FFFFFF;
    --secondary-bg: #F8F5F2;
    --gold: #D4AF37;
    --gold-hover: #B8860B;
    --text-main: #1A1A1A;
    --text-muted: #666666;
    --accent-red: #A52A2A; /* Deep red for roses */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography Overrides */
h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem); /* Fluid typography */
    font-weight: 400;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 2rem;
}

h2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 400;
    margin-bottom: 2rem;
}

/* Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

section {
    padding: 8rem 0;
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    background: transparent;
    transition: var(--transition-smooth);
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
}

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

.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.menu-toggle span {
    width: 25px;
    height: 1px;
    background-color: var(--text-main);
    transition: var(--transition-smooth);
}

@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: var(--transition-smooth);
        box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    position: relative;
}

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

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

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: var(--secondary-bg);
    padding-top: 80px; /* Account for fixed navigation */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0; /* Remove auto-centering margin */
    padding-left: 5vw; /* Fixed distance from the left edge of the screen */
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 45%; /* Further reduced width to maximize white space for the text */
    height: 100%;
    object-fit: cover;
    z-index: 1;
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%); /* Even sharper gradient */
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%);
}

@media (max-width: 1024px) {
    .hero {
        padding-top: 100px;
        text-align: center;
        justify-content: center;
    }
    .hero-content {
        margin: 0;
        max-width: 100%;
        padding: 0 2rem;
        background: radial-gradient(circle, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0) 80%); /* Subtle glow for readability */
    }
    .hero h1 {
        text-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .hero-image {
        width: 100%;
        opacity: 0.35;
        mask-image: none;
        -webkit-mask-image: none;
    }
}

.gold-text {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.btn-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--text-main);
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-top: 3rem;
    transition: var(--transition-smooth);
    border: 1px solid var(--text-main);
}

.btn-primary:hover {
    background: transparent;
    color: var(--text-main);
}

/* Experience Section */
.experience {
    background-color: var(--secondary-bg);
    text-align: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 4rem;
}

.card {
    background: white;
    padding: 3rem;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.card h3 {
    margin-bottom: 1.5rem;
    color: var(--gold);
}

/* Category Tabs */
.categories {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.category-btn {
    background: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0.5rem 1rem;
}

.category-btn.active, .category-btn:hover {
    color: var(--gold);
    border-bottom: 1px solid var(--gold);
}

/* Product Gallery Enhanced */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.product-card {
    text-align: left;
    transition: var(--transition-smooth);
}

.product-image {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    margin-bottom: 1.5rem;
    background: #fdfdfd;
}

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

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.product-price {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
    font-size: 1.1rem;
}

.product-details {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    min-height: 2em;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--gold);
    color: white;
    padding: 0.3rem 0.8rem;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
}

.product-badge.limited {
    background: var(--accent-red);
}

.btn-whatsapp-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.8rem;
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--text-main);
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.btn-whatsapp-card:hover {
    background: #25D366;
    border-color: #25D366;
    color: white;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.testimonial-card {
    text-align: center;
    padding: 2rem;
}

.testimonial-text {
    font-style: italic;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.testimonial-author {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
}

@media (max-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .categories { flex-direction: column; align-items: center; gap: 1rem; }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    background: var(--text-main);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.footer-logo {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .container { padding: 0 1.5rem; }
    .hero-content { padding: 0 1rem; }
    .grid { gap: 2rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .nav-links { width: 100%; }
}

/* Proposal Section Specifics */
.proposal-flex {
    display: flex;
    align-items: center;
    gap: 6rem;
    text-align: left;
}

.proposal-text {
    flex: 1;
}

.proposal-image-container {
    flex: 1.2;
}

.proposal-img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.proposal-list {
    list-style: none;
    margin: 2rem 0;
}

.proposal-list li {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .proposal-flex {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    .proposal-list {
        display: inline-block;
        text-align: left;
    }
}

/* Shopping Cart UI */

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    z-index: 2000;
    box-shadow: -10px 0 50px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.cart-header h3 {
    font-size: 1.5rem;
    color: var(--gold);
}

.close-cart {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-muted);
}

#cart-items-container {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 2rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f9f9f9;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-info h5 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    font-family: 'Playfair Display', serif;
}

.cart-item-info span {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid #eee;
    padding: 0.3rem 0.8rem;
    width: fit-content;
}

.quantity-controls button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-muted);
}

.remove-item {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #ccc;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.remove-item:hover {
    color: var(--accent-red);
}

.cart-footer {
    border-top: 1px solid #eee;
    padding-top: 2rem;
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.total-row.deposit-row {
    font-size: 1rem;
    color: var(--accent-red);
    margin-top: -1.5rem;
    margin-bottom: 2rem;
    border-top: 1px dashed #eee;
    padding-top: 1rem;
}

.deposit-selector {
    background: #fdfdfd;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #eee;
    margin-bottom: 2rem;
}

.deposit-selector label {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    cursor: pointer;
    color: var(--text-main);
}

.deposit-selector input[type="radio"] {
    accent-color: var(--gold);
    width: 18px;
    height: 18px;
}

.checkout-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-checkout {
    width: 100%;
    padding: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
}

.btn-whatsapp-checkout {
    background: #25D366;
    color: white;
}

.btn-card-checkout {
    background: var(--text-main);
    color: white;
}

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

/* Add to Cart small button */
.btn-add-cart {
    background: var(--secondary-bg);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.6rem 1rem;
    cursor: pointer;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    margin-top: 0.5rem;
    width: 100%;
    margin-bottom: 0.5rem;
}

.btn-add-cart:hover {
    background: var(--gold);
    color: white;
}

/* Nav Cart Icon */
.cart-nav-item {
    position: relative;
    cursor: pointer;
}

.cart-badge {
    position: absolute;
    top: -12px;
    right: -15px;
    background: var(--gold);
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

@media (max-width: 600px) {
    .cart-sidebar {
        width: 100%;
        padding: 2rem;
    }
}
