@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

:root {
    /* Color Palette */
    --clr-bg: #FDFBF7; /* Soft Ivory White */
    --clr-gold: #D4AF37; /* Warm Gold */
    --clr-beige: #E8DCC4; /* Beige Nude */
    --clr-pink: #F2D4D7; /* Soft Blush Pink */
    --clr-taupe: #A68A64; /* Light Brown/Taupe */
    --clr-text: #4A4A4A;
    --clr-text-light: #7a7a7a;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--clr-taupe);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.text-center { text-align: center; }
.gold-text { color: var(--clr-gold); }

.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '✨';
    position: absolute;
    top: -10px;
    right: -25px;
    font-size: 1.2rem;
    animation: sparkle 2s infinite alternate;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--clr-text-light);
    margin-bottom: 40px;
}

/* Animations */
@keyframes glow {
    0% { box-shadow: 0 0 10px rgba(212, 175, 55, 0.2); }
    100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.6); }
}

@keyframes sparkle {
    0% { opacity: 0.5; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1.2); }
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--clr-gold), var(--clr-taupe));
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
    color: white;
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--clr-gold);
    color: var(--clr-taupe);
}

.btn-secondary:hover {
    background: var(--clr-beige);
    color: var(--clr-taupe);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(253, 251, 247, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo img {
    height: 60px;
    transition: 0.3s;
}

.header.scrolled .logo img {
    height: 50px;
}

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

.nav-links a {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    position: relative;
}

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

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

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--clr-taupe);
}

/* Footer */
.footer {
    background-color: var(--clr-beige);
    padding: 60px 0 20px;
    text-align: center;
    border-top: 1px solid var(--clr-gold);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 80px;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--clr-taupe);
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    color: var(--clr-gold);
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.social-icons a:hover {
    background-color: var(--clr-gold);
    color: white;
    transform: translateY(-3px);
}

.footer-quote {
    font-style: italic;
    color: var(--clr-text-light);
    margin-bottom: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(166, 138, 100, 0.2);
    padding-top: 20px;
    font-size: 0.9rem;
    color: var(--clr-text-light);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: var(--clr-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: 0.3s ease;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .mobile-toggle {
        display: block;
        z-index: 1001;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .logo img {
        display: none;
    }
    
    .nav-container {
        justify-content: flex-end;
    }
}
