:root {
    --rose-gold: #B76E79;
    --champagne: #F7E7CE;
    --cream: #FDFDFD;
    --text-grey: #555;
    --white: #ffffff;
    
    --font-script: 'Great Vibes', cursive;
    --font-body: 'Lato', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--cream);
    color: var(--text-grey);
    font-family: var(--font-body);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1100px; margin: 0 auto; }
.section-padding { padding: 100px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Header */
.wedding-header { background: var(--white); padding: 20px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 15px rgba(183, 110, 121, 0.1); border-bottom: 3px solid var(--champagne); }
.header-layout { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-script); font-size: 2.5rem; color: var(--rose-gold); }
.heart { color: var(--rose-gold); font-size: 1.5rem; vertical-align: middle; }

.romance-nav a { margin-left: 25px; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; color: var(--text-grey); }
.romance-nav a:hover, .romance-nav a.active { color: var(--rose-gold); border-bottom: 1px solid var(--rose-gold); }

.btn-rose { background: var(--rose-gold); color: var(--white) !important; padding: 10px 25px; border-radius: 50px; border: none; font-weight: bold; box-shadow: 0 5px 15px rgba(183, 110, 121, 0.3); }
.btn-rose:hover { background: #a05a63; transform: translateY(-2px); }

/* Mobile Menu */
.mobile-toggle { display: none; font-family: var(--font-script); font-size: 1.8rem; cursor: pointer; color: var(--rose-gold); }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--white); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: 0.5s; }
.mobile-menu.open { right: 0; }
.close-btn { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 2rem; color: var(--rose-gold); cursor: pointer; }
.mobile-menu a { font-family: var(--font-script); font-size: 3rem; margin: 10px 0; color: var(--text-grey); }

/* Hero */
.hero-wedding { height: 85vh; background-size: cover; background-position: center; position: relative; }
.hero-overlay { width: 100%; height: 100%; background: rgba(255, 255, 255, 0.2); display: flex; align-items: center; justify-content: center; backdrop-filter: blur(1px); }
.hero-text { text-align: center; background: rgba(255, 255, 255, 0.85); padding: 50px; border-radius: 10px; border: 1px solid var(--rose-gold); max-width: 700px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.script-title { font-family: var(--font-script); font-size: 2.5rem; color: var(--rose-gold); display: block; margin-bottom: 10px; }
.hero-text h1 { font-family: var(--font-body); font-size: 3.5rem; letter-spacing: 5px; color: var(--text-grey); line-height: 1.2; margin-bottom: 20px; }
.hero-text p { font-size: 1.1rem; margin-bottom: 30px; font-style: italic; }
.btn-hero { display: inline-block; border: 1px solid var(--rose-gold); padding: 12px 30px; color: var(--rose-gold); font-weight: bold; letter-spacing: 2px; }
.btn-hero:hover { background: var(--rose-gold); color: var(--white); }

/* Concepts */
.section-head { text-align: center; margin-bottom: 60px; }
.section-head h2 { font-size: 2.5rem; letter-spacing: 3px; color: var(--text-grey); font-weight: 300; }
.floral-divider { color: var(--rose-gold); font-size: 1.5rem; margin-top: 10px; }

.concept-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.concept-card { text-align: center; transition: 0.3s; }
.concept-card:hover { transform: translateY(-10px); }
.img-frame { padding: 10px; border: 1px solid var(--champagne); border-radius: 50% 50% 0 0; overflow: hidden; }
.img-frame img { width: 100%; height: 300px; object-fit: cover; border-radius: 50% 50% 0 0; }
.concept-card h3 { font-family: var(--font-script); font-size: 2rem; color: var(--rose-gold); margin: 20px 0 10px; }

/* About */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-text h1 { font-size: 3rem; font-weight: 300; }
.line-rose { width: 80px; height: 3px; background: var(--rose-gold); margin: 20px 0; }
.services-list { list-style: none; margin-top: 30px; }
.services-list li { margin-bottom: 10px; font-size: 1.1rem; color: var(--rose-gold); font-style: italic; font-family: var(--font-body); }
.story-img img { width: 100%; border-radius: 10px; box-shadow: 10px 10px 0 var(--champagne); }

/* Testimonials */
.love-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.love-card { background: var(--white); padding: 40px 30px; text-align: center; border-radius: 10px; border: 1px solid #f0f0f0; box-shadow: 0 5px 20px rgba(0,0,0,0.02); }
.love-card.highlight { border-color: var(--rose-gold); transform: scale(1.05); }
.photo-circle img { width: 100px; height: 100px; border-radius: 50%; border: 3px solid var(--champagne); margin-bottom: 20px; object-fit: cover; }
.love-card blockquote { font-style: italic; color: #777; margin-bottom: 20px; }
.couple-name { font-family: var(--font-script); font-size: 1.8rem; color: var(--rose-gold); }
.date { font-size: 0.8rem; color: #ccc; text-transform: uppercase; }

/* Contact */
.contact-wedding { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; background: var(--white); padding: 60px; border-radius: 20px; border: 1px solid var(--champagne); }
.contact-visual h2 { font-size: 2.5rem; font-weight: 300; color: var(--rose-gold); }
.info-lines { margin-top: 30px; font-size: 1.1rem; line-height: 2; }

.elegant-form .input-row { display: flex; gap: 20px; margin-bottom: 20px; }
.elegant-form input, .elegant-form select { width: 100%; padding: 15px; border: 1px solid #eee; border-radius: 5px; font-family: var(--font-body); background: #fafafa; }
.elegant-form textarea { width: 100%; padding: 15px; border: 1px solid #eee; border-radius: 5px; margin-bottom: 20px; background: #fafafa; font-family: var(--font-body); }
.elegant-form input:focus, .elegant-form textarea:focus { border-color: var(--rose-gold); outline: none; background: var(--white); }
.btn-submit { width: 100%; background: var(--rose-gold); color: var(--white); border: none; padding: 15px; font-weight: bold; border-radius: 5px; cursor: pointer; letter-spacing: 2px; }
.btn-submit:hover { background: #a05a63; }

/* Legal */
.contract-doc { max-width: 800px; margin: 0 auto; background: var(--white); padding: 60px; border: 1px solid #eee; text-align: center; }
.contract-doc h1 { font-family: var(--font-body); font-weight: 300; color: var(--text-grey); }
.contract-doc h3 { font-family: var(--font-script); font-size: 2rem; color: var(--rose-gold); margin-top: 40px; margin-bottom: 10px; }
.contract-doc p { text-align: left; }

/* Footer */
.wedding-footer { background: #fffcfc; border-top: 1px solid var(--champagne); padding: 60px 0 20px; margin-top: 80px; text-align: center; }
.f-logo { font-family: var(--font-script); font-size: 3rem; color: var(--rose-gold); border: 2px solid var(--rose-gold); width: 80px; height: 80px; border-radius: 50%; line-height: 75px; margin: 0 auto 20px; }
.f-links a { margin: 0 15px; color: #888; font-size: 0.9rem; }
.f-links a:hover { color: var(--rose-gold); }
.copyright { margin-top: 30px; font-size: 0.8rem; color: #ccc; }

/* Cookie */
.cookie-rose { position: fixed; bottom: 20px; right: 20px; background: var(--white); padding: 15px 30px; border-radius: 20px; box-shadow: 0 5px 20px rgba(183, 110, 121, 0.2); border: 1px solid var(--rose-gold); display: none; align-items: center; gap: 15px; z-index: 9999; }
.cookie-rose.show { display: flex; animation: fadeIn 0.5s; }
.cookie-rose button { background: var(--rose-gold); color: var(--white); border: none; padding: 5px 15px; border-radius: 10px; cursor: pointer; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

@media (max-width: 900px) {
    .romance-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero-text h1 { font-size: 2.5rem; }
    .concept-grid, .about-story, .love-grid, .contact-wedding { grid-template-columns: 1fr; }
    .elegant-form .input-row { flex-direction: column; gap: 15px; }
}