/* Color Palette */
:root {
    --color-gold: #CBA135; /* Elegant Gold */
    --color-pink: #F9DEDC; /* Soft Blush Pink */
    --color-white: #FFFFFF;
    --color-dark: #333333;
    --color-gray: #666666;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
}

/* Global Reset and Typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
    scroll-behavior: smooth;
}

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

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

h1, h2, h3 {
    font-family: var(--font-primary);
    color: var(--color-dark);
    margin-bottom: 0.5em;
}

h1 { font-size: 3rem; font-weight: 700; color: var(--color-gold); text-shadow: 1px 1px 2px rgba(0,0,0,0.1); }
h2 { font-size: 2.5rem; font-weight: 600; text-align: center; margin-bottom: 1.5em; color: var(--color-gold); }
h3 { font-size: 1.5rem; font-weight: 600; }

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

.section-title {
    padding-bottom: 10px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-gold);
    margin: 10px auto 0;
}

.section-subtitle {
    text-align: center;
    color: var(--color-gray);
    margin-top: -10px;
    margin-bottom: 40px;
}

/* Header & Navigation */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--color-pink);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-gold);
}
.logo-image {
    width: 200px;
    height: auto;
    transition: transform 0.18s ease;
}
.nav-menu a {
    margin-left: 25px;
    font-weight: 600;
    padding: 5px 0;
    transition: color 0.3s, border-bottom 0.3s;
}

.nav-menu a:hover {
    color: var(--color-gold);
    border-bottom: 2px solid var(--color-gold);
}

.cta-nav-link {
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
    padding: 8px 15px !important;
    border-radius: 5px;
}
.cta-nav-link:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
    border-bottom: none;
}

.hamburger {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-gold);
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 12px 30px;
    margin-top: 20px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s, border 0.3s;
    text-align: center;
}

.primary-cta {
    background-color: var(--color-gold);
    color: var(--color-white);
    border: 2px solid var(--color-gold);
}

.primary-cta:hover {
    background-color: #A5832E; /* Darker Gold */
    border-color: #A5832E;
}

.secondary-cta {
    background-color: var(--color-white);
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
}

.secondary-cta:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

/* 2. About Us */
.about-section {
    background-color: var(--color-white);
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-gray);
}

/* 2.5 CEO Message */
.ceo-section {
    /* Uses .pink-bg */
}

.ceo-profile {
    display: flex;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    gap: 40px;
    padding: 30px;
    background-color: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.ceo-photo {
    width: 200px;
    height: auto; /* Changed from 200px to auto to display the full image vertically */
    border-radius: 10px; /* Changed from 50% for a rectangular/portrait image display */
    object-fit: cover;
    border: 5px solid var(--color-gold);
    flex-shrink: 0;
}

.ceo-bio {
    text-align: left;
}

.ceo-bio h3 {
    color: var(--color-gold);
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.ceo-bio p {
    margin-bottom: 10px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-gray);
}

/* 3. Our Services */
.pink-bg {
    background-color: var(--color-pink);
}

.services-section {
    /* Background now defaults to white unless overridden */
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.service-card {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 5px rgba(203, 161, 53, 0.5));
}

.service-card h3 {
    color: var(--color-dark);
    margin-bottom: 5px;
}

.service-note {
    font-size: 0.9rem;
    color: var(--color-gray);
    margin-top: 5px;
}

/* 4. Why Choose Us */
.why-choose-us-section {
    background-color: var(--color-white); 
}

.feature-grid {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
}

.feature-item {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    padding: 20px;
}

.gold-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    display: block;
    margin-bottom: 10px;
}

.feature-item h3 {
    margin-bottom: 10px;
}
.feature-item p {
    color: var(--color-gray);
}


/* 5. Testimonials Section */
.testimonials-section {
    /* Background now defaults to white unless overridden */
}

.testimonial-slider {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    max-width: 350px;
    flex: 1;
    min-width: 280px;
    text-align: center;
    border-left: 5px solid var(--color-gold);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.testimonial-card cite {
    display: block;
    font-weight: 600;
    color: var(--color-gold);
}


/* 6. Booking Section */
.booking-section {
    padding-bottom: 100px;
    background-color: var(--color-white); /* Explicitly white */
}

.booking-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background: var(--color-pink);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.booking-form label {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--color-dark);
    font-size: 0.9rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.submit-wa {
    grid-column: 1 / -1;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

.form-note {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-gray);
    margin-top: 10px;
}

/* 7. Footer/Contact Us */
.footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-info, .contact-details, .footer-cta {
    min-width: 250px;
}

.footer h3 {
    color: var(--color-gold);
    margin-bottom: 15px;
}

.footer p, .footer a {
    color: #ccc;
    margin-bottom: 5px;
}

.footer a:hover {
    color: var(--color-pink);
}

.whatsapp-button {
    background-color: #25D366; /* WhatsApp Green */
    color: white;
    border: none;
}

.whatsapp-button:hover {
    background-color: #128C7E;
}

/* Scroll Animation */
.menu-card {
    /* initial state handled by animations module; keep lightweight fallback */
    opacity: 0;
    transform: translateY(18px);
    animation: fadeInUp 0.56s ease forwards;
}

.menu-card:nth-child(1) { animation-delay: 0.1s; }
.menu-card:nth-child(2) { animation-delay: 0.2s; }
.menu-card:nth-child(3) { animation-delay: 0.3s; }
.menu-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsiveness */
@media (max-width: 1000px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 10px 20px;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px; /* Adjust based on header height */
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        border-top: 1px solid var(--color-pink);
        padding: 10px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        margin: 0;
        padding: 12px 30px;
        text-align: center;
        border-bottom: 1px solid var(--color-pink);
    }
    
    .nav-menu a:hover {
        background-color: var(--color-pink);
        border-bottom: 1px solid var(--color-pink);
    }

    .cta-nav-link {
        margin-top: 10px;
        border: none;
        color: var(--color-dark);
    }

    .hamburger {
        display: block;
    }

    .hero-section {
        height: 60vh;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }

  /* Mobile-only adjustment */
@media (max-width: 768px) {

    .hero-content {
        padding-top: 20px; 
    }

    .hero-content h1 {
        font-size: 2rem !important; 

    }
}
    .hero-content .subheadline {
        font-size: 1.2rem;
    }

    .section-padding {
        padding: 50px 0;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }

    .booking-form {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        max-width: 90%;
    }
    
    .ceo-profile {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .ceo-photo {
        width: 150px;
        height: auto; /* Ensures full picture display on mobile */
        margin-bottom: 15px;
        border-radius: 10px; /* Consistent rectangular look */
    }
    
    .ceo-bio {
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-info, .contact-details, .footer-cta {
        min-width: auto;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .menu-card {
        padding: 25px;
    }
    
    .menu-icon {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }
    
    .menu-intro {
        font-size: 1rem;
    }
    
    .menu-tagline {
        font-size: 1.1rem;
    }
}

/* About Page Specific Styles */
.about-story-section {
    background-color: var(--color-white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 25px;
    text-align: center;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.mission-card, .vision-card {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.mission-card h3, .vision-card h3 {
    color: var(--color-gold);
    margin-bottom: 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-item {
    text-align: center;
    padding: 30px;
    background-color: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Services Page Specific Styles */
.services-overview-section {
    background-color: var(--color-white);
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    padding: 5px 0;
    color: var(--color-gray);
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '✓';
    color: var(--color-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.custom-menu-section {
    background-color: var(--color-pink);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 30px;
    background-color: var(--color-white);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.services-cta-section {
    background-color: var(--color-pink);
}

/* Portfolio Page Specific Styles */
.portfolio-gallery-section {
    background-color: var(--color-pink);
}

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

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(203, 161, 53, 0.9), rgba(249, 222, 220, 0.9));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    text-align: center;
    padding: 20px;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.portfolio-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.story-card {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.story-event {
    color: var(--color-gold);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.story-description {
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

.story-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.highlight-tag {
    background-color: var(--color-pink);
    color: var(--color-gold);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.portfolio-cta-section {
    background-color: var(--color-white);
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .about-text {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .mission-vision-grid,
    .values-grid,
    .process-grid,
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-image img {
        height: 250px;
    }
    
    .service-features {
        font-size: 0.9rem;
    }
}

/* --- NEW TESTIMONIAL STRUCTURE STYLES --- */

.client-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
}

.client-profile img {
    width: 120px; /* Increased size for better visibility */
    height: 120px; /* Increased size for better visibility */
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 3px solid var(--color-gold);
}

.client-profile cite {
    font-style: normal; /* Names shouldn't be italic */
    margin-top: 5px;
}