/* =========================================
   VARIABLES & GLOBAL STYLES
   ========================================= */
:root {
    --primary-color: #d4b572; /* Elegant gold/sand */
    --secondary-color: #2c3e2a; /* Deep forest green */
    --bg-color: #fdfaf3; /* Soft cream/beige background from screenshot */
    --bg-light: #f4efdf; /* Slightly darker beige */
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lora', serif; /* Elegant serif for body as well to give it an invitation feel */
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.text-center {
    text-align: center;
}

.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.max-w-700 { max-width: 700px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.bg-light { background-color: var(--bg-light); }
.text-white { color: var(--white) !important; }

/* Section Headers */
.section-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 500;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background-color: #1ebe57;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-block {
    display: block;
    width: 100%;
}

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(253, 250, 243, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
}

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

.logo-img {
    height: 80px; /* Adjust based on actual logo aspect ratio */
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.navbar.scrolled .logo-img {
    height: 60px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    font-size: 1rem;
    font-weight: 500;
    position: relative;
}

.nav-links::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

.mobile-socials {
    display: none;
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: var(--transition);
    border-radius: 3px;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px; /* For navbar */
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(253,250,243,0.3), rgba(244,239,223,0.2));
    z-index: 1;
}

.hero-slider {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
}

.hero-slider .slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: heroFade 15s infinite;
}

.hero-slider .slide-1 {
    background-image: url('../assets/hero_bg_1.png');
    animation-delay: 0s;
}

.hero-slider .slide-2 {
    background-image: url('../assets/hero_bg_2.png');
    animation-delay: 5s;
}

.hero-slider .slide-3 {
    background-image: url('../assets/hero_bg_3.png');
    animation-delay: 10s;
}

@keyframes heroFade {
    0% { opacity: 0; transform: scale(1); }
    10% { opacity: 1; }
    33% { opacity: 1; }
    43% { opacity: 0; }
    100% { opacity: 0; transform: scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(255,255,255,0.9), 0 0 30px rgba(255,255,255,0.8);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(255,255,255,0.9), 0 0 20px rgba(255,255,255,0.7);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Quick Nav */
.quick-nav {
    background-color: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.quick-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px 30px;
}

.quick-links a {
    font-family: var(--font-heading);
    display: inline-block;
    font-size: 1.05rem;
    color: var(--text-dark);
    padding: 8px 20px;
    border: 1px solid var(--primary-color);
    background-color: rgba(212, 175, 55, 0.05);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.quick-links a:hover {
    color: var(--white);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.mv-box {
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 3px solid var(--primary-color);
}

.mv-box h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.mv-box p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.about-features {
    position: relative;
    padding: 20px;
}

.sticky-note {
    background-color: #fffac2; /* Pale yellow */
    padding: 40px;
    border-radius: 20px 20px 20px 0;
    box-shadow: var(--shadow);
    position: relative;
}

.sticky-note::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 20px;
    width: 100px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.5);
    transform: rotate(-5deg);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.feature-sub {
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-list li {
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-list i {
    color: var(--primary-color);
    margin-right: 10px;
}

.decorative-note {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background-color: #f5eedc;
    padding: 20px;
    font-family: 'Playfair Display', cursive; /* cursive fallback */
    font-style: italic;
    font-size: 1.2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transform: rotate(5deg);
    border-radius: 5px;
}

.decorative-note::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background-color: rgba(255,255,255,0.6);
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border-bottom: 3px solid transparent;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-bottom: 3px solid var(--primary-color);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* =========================================
   PORTFOLIO SECTION
   ========================================= */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.portfolio-img-placeholder {
    height: 250px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.portfolio-img-placeholder span {
    background-color: rgba(255,255,255,0.8);
    padding: 10px 20px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: bold;
    color: var(--secondary-color);
    z-index: 2;
}

.portfolio-img-placeholder::before {
    content: '';
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-img-placeholder::before {
    transform: scale(1.05);
}

/* Using distinct placeholder backgrounds */
.wedding-bg::before { background-image: url('https://images.unsplash.com/photo-1511285560929-80b456fea0bc?auto=format&fit=crop&w=800&q=80'); }
.engagement-bg::before { background-image: url('https://images.unsplash.com/photo-1515934751635-c81c6bc9a2d8?auto=format&fit=crop&w=800&q=80'); }
.birthday-bg::before { background-image: url('https://images.unsplash.com/photo-1464349095431-e9a21285b5f3?auto=format&fit=crop&w=800&q=80'); }
.save-date-bg::before { background-image: url('https://images.unsplash.com/photo-1469371670807-013ccf25f16a?auto=format&fit=crop&w=800&q=80'); }

.portfolio-content {
    padding: 25px;
}

.portfolio-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.portfolio-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* =========================================
   HOW IT WORKS
   ========================================= */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

.step-card {
    background-color: var(--white);
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: bold;
    margin: 0 auto 20px;
    border: 5px solid var(--white);
    box-shadow: var(--shadow);
}

.step-card h3 {
    font-size: 1.2rem;
}

/* =========================================
   STATS & TESTIMONIALS
   ========================================= */
.stats-testimonials {
    background: linear-gradient(rgba(44, 62, 42, 0.9), rgba(44, 62, 42, 0.9)), url('https://images.unsplash.com/photo-1465495976277-4387d4b0b4c6?auto=format&fit=crop&w=1920&q=80') fixed center/cover;
    color: var(--white);
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 50px;
}

.stat-item h2 {
    display: inline-block;
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 0;
}

.stat-item span {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.stat-item p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.testimonial-card h4 {
    color: var(--primary-color);
    margin-bottom: 0;
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-item .icon {
    width: 50px;
    height: 50px;
    background-color: var(--bg-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.info-item p {
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.contact-form-container {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: var(--bg-color);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 100px;
    margin-bottom: 20px;
    background-color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    object-fit: contain;
}

.tagline {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary-color);
}

.footer-desc {
    color: rgba(255,255,255,0.7);
}

.footer-links h3,
.footer-social h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-social p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.footer-social .social-icons {
    display: flex;
    gap: 15px;
}

.footer-social .social-icons a {
    width: 35px;
    height: 35px;
    background-color: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social .social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* =========================================
   ANIMATIONS (Triggered via JS)
   ========================================= */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.slide-right {
    transform: translateX(-30px);
}

.animate-on-scroll.slide-left {
    transform: translateX(30px);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translate(0);
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 992px) {
    .hero h1 { font-size: 2.8rem; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    
    .about-features { order: -1; }
}

@media (max-width: 768px) {
    .navbar { padding: 10px 0; }
    .logo-img { height: 50px; }
    .navbar.scrolled .logo-img { height: 40px; }
    
    .menu-toggle { display: flex; }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-links {
        font-size: 1.2rem;
    }
    
    .mobile-socials {
        display: flex;
        gap: 15px;
        margin-top: 20px;
    }
    
    .mobile-socials a {
        color: var(--secondary-color);
        font-size: 1.2rem;
    }
    
    /* Hamburger Animation */
    .menu-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
    .section-padding { padding: 50px 0; }
    .hero h1 { font-size: 1.8rem; }
    .section-header h2 { font-size: 2rem; }
    .stat-item h2 { font-size: 2.5rem; }
    .portfolio-img-placeholder { height: 200px; }
    .quick-links { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 12px; }
    .quick-links a { display: inline-block; width: auto; font-size: 0.95rem; padding: 8px 16px; border: 1px solid var(--primary-color); background-color: rgba(212, 175, 55, 0.05); border-radius: 30px; }
    .about-text h2 { font-size: 2rem; }
    .mission-vision { grid-template-columns: 1fr; }
    .sticky-note { padding: 25px; }
    .contact-form-container { padding: 25px; }
    .rights-reserved { display: block; margin-top: 5px; }
}
