/* 🎨 Premium Aesthetic Palette */
:root {
    --bg-main: #fcf9f6; /* Ultra soft warm white */
    --bg-alt: #ffffff;
    
    --text-main: #2c2420; /* Deep warm charcoal */
    --text-muted: #6e635b;
    --text-light: #948b85;
    
    --accent-gold: #c6a87c; /* Elegant metallic gold */
    --accent-gold-hover: #b09164;
    --accent-red: #d67d7d; /* Soft romantic red for Valentine's */
    --accent-blue: #7da5d6; /* Soft blue for birthdays/boys? or general */
    
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(198, 168, 124, 0.1);
    
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.02);
    --shadow-lg: 0 10px 40px -10px rgba(44, 36, 32, 0.08);

    --font-heading: "Playfair Display", serif;
    --font-body: "Inter", sans-serif;
}

body {
    background: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

a { 
    text-decoration: none; 
    transition: all 0.3s ease; 
}

/* --- Navigation --- */
.navbar {
    background: rgba(252, 249, 246, 0.85); /* Matches bg-main with opacity */
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(198, 168, 124, 0.1);
    padding: 1rem 0;
    transition: all 0.4s ease;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-main);
    font-weight: 700;
}

.nav-link {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0 0.5rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-gold);
}

.nav-link:hover::after {
    width: 100%;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px; /* Offset for fixed navbar */
    overflow: hidden;
}

/* Subtle animated background gradient */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(198, 168, 124, 0.15) 0%, rgba(252, 249, 246, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-main) 0%, #5d4d44 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-image-wrapper {
    position: relative;
    z-index: 1;
}

.hero-img {
    border-radius: 24px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.hero-img:hover {
    transform: rotate(0deg) scale(1.02);
}

/* --- Buttons --- */
.btn-primary-gold {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b09164 100%);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 15px rgba(198, 168, 124, 0.4);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #b09164 0%, var(--accent-gold) 100%);
    z-index: -1;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.btn-primary-gold:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(198, 168, 124, 0.5);
}

.btn-primary-gold:hover::before {
    opacity: 1;
}

.btn-outline-gold {
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.btn-outline-gold:hover {
    background: var(--accent-gold);
    color: #fff;
}

/* --- Features / Products Cards (Glassmorphism) --- */
.product-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glass-shadow);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    background: rgba(198, 168, 124, 0.1);
    border-radius: 50%;
    color: var(--accent-gold);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Specific Accents for different types */
.card-valentine .card-icon { color: var(--accent-red); background: rgba(214, 125, 125, 0.1); }
.product-card.card-valentine:hover::before { background: var(--accent-red); }

.card-bday .card-icon { color: var(--accent-blue); background: rgba(125, 165, 214, 0.1); }
.product-card.card-bday:hover::before { background: var(--accent-blue); }

/* --- Section Styling --- */
.section-padding {
    padding: 6rem 0;
}

.section-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    display: block;
}

/* --- Pricing / Plans --- */
.pricing-card {
    border: 1px solid #e5e5e5;
    background: #fff;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s;
}

.pricing-card.featured {
    border-color: var(--accent-gold);
    box-shadow: 0 10px 40px rgba(198, 168, 124, 0.15);
    background: #FFFEFC;
    transform: scale(1.05);
    z-index: 2;
}

.price-tag {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.price-tag span {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-muted);
}

/* --- Footer --- */
.footer {
    background: #fff;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--text-main);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .hero {
        padding-top: 100px;
        text-align: center;
        flex-direction: column;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-img {
        margin-top: 3rem;
        transform: rotate(0);
    }
    .pricing-card.featured {
        transform: scale(1);
    }
}