:root {
    --gold-main: #D4AF37;
    --gold-warm: #E2A76F;
    --beige: #F5F5DC;
    --cream: #FFFDD0;
    --cream-light: #FFFAF0;
    --soft-orange: #FFDAB9;
    --blush-pink: #FFE4E1;
    --text-dark: #4A3C31;
    --text-muted: #7D6B5D;

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body, html {
    font-family: var(--font-body);
    line-height: 1.8;
    background-color: var(--cream-light);
    color: var(--text-dark);
    font-size: 16px;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Overlays and Backgrounds */
.golden-overlay {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: radial-gradient(circle at 50% 30%, rgba(255, 218, 185, 0.4) 0%, rgba(226, 167, 111, 0.15) 60%, transparent 100%);
    pointer-events: none; z-index: -1;
    animation: pulseGlow 8s infinite alternate;
}
@keyframes pulseGlow { 0% { opacity: 0.6; transform: scale(1); } 100% { opacity: 1; transform: scale(1.05); } }

/* Hero Section */
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.hero-bg {
    position: absolute; top:0; left:0; width: 100%; height: 100%;
    background-image: url('https://images.unsplash.com/photo-1499209974431-9dddcece7f88?auto=format&fit=crop&w=1920&q=80'); /* Warm sunset */
    background-size: cover; background-position: center;
    filter: sepia(35%) brightness(0.9);
    z-index: 1;
    animation: slowZoom 30s infinite alternate linear;
}
.hero::after {
    content: ''; position: absolute; top:0; left:0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(255,250,240,0.5), rgba(255,250,240,0.95)); z-index: 2;
}
@keyframes slowZoom { from { transform: scale(1); } to { transform: scale(1.15); } }

.hero-title {
    font-size: 5.5rem; letter-spacing: 2px; margin-bottom: 25px; line-height: 1.2; font-style: italic; text-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}
.warm-text {
    background: linear-gradient(120deg, var(--gold-warm), var(--gold-main));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-quote {
    font-size: 1.4rem; color: var(--text-dark); max-width: 800px; margin: 0 auto;
    font-weight: 400; line-height: 2.1;
    background: rgba(255,255,255,0.7); padding: 40px 50px; border-radius: 8px;
    border: 1px solid rgba(255,218,185,0.7); box-shadow: 0 15px 40px rgba(226, 167, 111, 0.2);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}

.scroll-down-btn {
    display: inline-block; color: var(--text-dark); text-decoration: none; font-size: 1.05rem;
    letter-spacing: 2px; text-transform: uppercase; border-bottom: 2px solid var(--gold-main); padding-bottom: 5px;
    transition: all 0.3s; font-weight: 500;
}
.scroll-down-btn:hover { color: var(--gold-main); border-color: var(--gold-warm); transform: translateY(5px); }

/* Utilities */
.text-center { text-align: center; }
.text-gold { color: var(--gold-main); }
.container { max-width: 1000px; margin: 0 auto; padding: 0 5%; position: relative; z-index: 5; }
.container-sm { max-width: 750px; }
.section { padding: 130px 0; }
.section-cream { background: var(--cream-light); }
.section-beige { background: linear-gradient(to bottom, var(--cream-light), var(--beige), var(--cream-light)); }
.section-blush { background: linear-gradient(to top, var(--blush-pink), var(--cream-light)); }
.mt-3 { margin-top: 1.5rem; }
.mt-5 { margin-top: 4rem; }
.mb-5 { margin-bottom: 3.5rem; }
.ml-2 { margin-left: 0.5rem; }
.footer-space { height: 12vh; background: var(--blush-pink);}

/* Typography */
h1, h2, h3 { font-family: var(--font-heading); font-weight: 600; color: var(--text-dark); }
.section-title { font-size: 3.2rem; margin-bottom: 30px; letter-spacing: 1.5px; font-style: italic; }
.section-para { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 25px; line-height: 2; font-weight: 300; }

/* Modules */
.split-layout { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 60px; }
.align-center { align-items: center; }
.text-col { flex: 1; min-width: 320px; }
.img-col { flex: 1; min-width: 320px; text-align: center; }
.pl-md { padding-left: 3rem; }

.soft-image {
    width: 100%; max-width: 480px; height: auto; border-radius: 200px 200px 10px 10px; /* Arch shape */
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.25); border: 5px solid var(--white);
    transition: transform 0.6s ease;
}
.soft-image:hover { transform: translateY(-12px); }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 35px; }
.soft-card {
    background: rgba(255,255,255,0.85); padding: 50px 30px; border-radius: 12px;
    box-shadow: 0 20px 45px rgba(226, 167, 111, 0.15); border: 1px solid rgba(255,218,185,0.6);
    text-align: center; transition: all 0.4s ease; backdrop-filter: blur(5px);
}
.soft-card:hover { transform: translateY(-12px); background: #fff; box-shadow: 0 25px 55px rgba(226, 167, 111, 0.25); }
.card-icon { font-size: 2.8rem; color: var(--gold-main); margin-bottom: 25px; }
.soft-card h3 { font-size: 1.7rem; margin-bottom: 15px; font-style: italic; }
.soft-card p { font-size: 1.1rem; color: var(--text-muted); line-height: 1.8; }

/* Buttons */
.btn-primary, .btn-outline {
    display: inline-flex; justify-content: center; align-items: center;
    padding: 16px 45px; border-radius: 40px; border: none; font-size: 1.15rem; font-family: var(--font-body);
    font-weight: 500; letter-spacing: 1px; cursor: pointer; transition: all 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold-warm), var(--gold-main)); color: #fff;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}
.btn-primary:hover { box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6); transform: translateY(-4px); }
.btn-outline { background: transparent; color: var(--text-dark); border: 2px solid var(--gold-warm); padding: 14px 40px;}
.btn-outline:hover { background: rgba(212, 175, 55, 0.15); border-color: var(--gold-main); transform: translateY(-3px);}

/* Floating Sparkles System generated by JS */
.sparkle {
    position: fixed; background: radial-gradient(circle, #fff, var(--gold-soft), transparent);
    border-radius: 50%; opacity: 0; pointer-events: none; z-index: 10;
    animation: drift 10s infinite linear;
}
@keyframes drift {
    0% { transform: translateY(0) scale(0); opacity: 0; }
    20% { opacity: 0.8; transform: scale(1); }
    80% { opacity: 0.8; transform: scale(1); }
    100% { transform: translateY(-250px) scale(0); opacity: 0; }
}

/* Play Music Btn */
.music-btn {
    position: fixed; top: 30px; right: 30px; width: 55px; height: 55px;
    border-radius: 50%; background: rgba(255, 255, 255, 0.85); color: var(--gold-main);
    border: 1px solid var(--gold-warm); display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 100; transition: all 0.4s ease; box-shadow: 0 5px 20px rgba(212, 175, 55, 0.25);
}
.music-btn:hover { background: var(--gold-main); color: #fff; border-color: var(--gold-main); }

/* Modal */
.modal { display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(74, 60, 49, 0.7); backdrop-filter: blur(10px); }
.modal-content {
    margin: 15vh auto; width: 90%; max-width: 500px; position: relative; padding: 50px;
    background: var(--cream-light); border: 1px solid rgba(212, 175, 55, 0.4); border-radius: 12px;
    animation: fadeInModal 0.5s cubic-bezier(0.18, 0.89, 0.32, 1.28); box-shadow: 0 35px 70px rgba(0,0,0,0.3); border-top: 5px solid var(--gold-main);
}
.close-modal { position: absolute; top: 15px; right: 25px; color: var(--text-muted); font-size: 30px; cursor: pointer; transition: 0.3s; }
.close-modal:hover { color: var(--gold-main); }
#modalMessage img { width: 100%; max-width: 250px; margin-bottom: 25px; border-radius: 8px; box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);}
#modalMessage h3 { font-size: 2.3rem; color: var(--text-dark); margin-bottom: 15px; font-style: italic; line-height: 1.2;}
#modalMessage p { font-size: 1.15rem; color: var(--text-muted); font-weight: 300; line-height: 1.8; }
@keyframes fadeInModal { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }

/* Mobile Adaptations */
@media (max-width: 768px) {
    .container { padding: 0 7%; }
    .hero-title { font-size: 3.8rem; }
    .hero-quote { font-size: 1.2rem; padding: 25px 25px; }
    .split-layout { flex-direction: column; gap: 40px; }
    .pl-md { padding-left: 0; text-align: center; }
    .section-para { text-align: center; }
    .section-title { text-align: center; font-size: 2.6rem;}
    .action-buttons { display: flex; flex-direction: column; gap: 15px; align-items: center; }
}
