:root {
    --font-heading: 'Chewy', cursive;
    --font-body: 'Baloo 2', cursive;
    --primary-purple: #9C27B0;
    --bg-purple: #CE93D8;
    --bg-blue: #29B6F6;
    --bg-orange: #FFB74D;
    --bg-white: #ffffff;
    --btn-red: #E57373; /* Softer red as requested */
    --btn-yellow: #FFEE58;
    --text-dark: #333;
    --sidebar-width: 260px;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- Navigation --- */
.mobile-header {
    display: none;
    background: var(--bg-white);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    justify-content: space-between;
    align-items: center;
}

.mobile-logo {
    display: flex;
    align-items: center;
}

.mobile-logo-img {
    height: 40px;
    width: auto;
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-purple);
    cursor: pointer;
}

.sidebar {
    width: var(--sidebar-width);
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background: white;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    padding: 2rem 1rem;
    z-index: 900;
    transition: transform 0.3s ease;
}

.nav-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.logo-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.nav-links {
    list-style: none;
    flex-grow: 1;
}

.nav-links li {
    margin-bottom: 1rem;
}

.nav-links a {
    display: block;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.2s;
    color: #555;
}

.nav-links a:hover, .nav-links a.active {
    background-color: var(--bg-purple);
    color: white;
}

.nav-socials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.nav-socials a {
    font-size: 1.8rem;
    color: var(--primary-purple);
}

.nav-contact {
    text-align: center;
    font-weight: 800;
    color: var(--text-dark);
    font-size: 1.1rem;
}

/* --- Main Content --- */
.main-content {
    margin-left: var(--sidebar-width);
}

.section {
    padding: 4rem 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

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

/* --- Home Section --- */
.home-section {
    background-color: var(--bg-purple);
    padding: 2rem; /* Reduced padding for card effect */
}

.content-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    width: 100%;
    max-width: 1000px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    text-align: center;
}

.home-header {
    margin-bottom: 2rem;
}

.hero-logo {
    max-height: 150px;
    max-width: 260px;
    height: auto;
    width: auto;
    margin: 0 auto 1rem;
    display: block;
}

.home-header h1 {
    font-size: 2.5rem;
    color: #333;
}

.hero-images {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-img-container {
    width: 200px;
    height: 150px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid #ddd;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
}

.hero-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    font-size: 1.2rem;
    z-index: 2;
}

.fb-overlay {
    color: #1877F2;
}

.insta-overlay {
    color: #E1306C;
}

.flip-horizontal {
    transform: scaleX(-1);
}

.main-hero img {
    object-position: 50% 25%;
}

.main-hero {
    width: 250px;
    height: 200px;
    border: 3px solid var(--primary-purple);
}

.placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    background: #f9f9f9;
}

.cta-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-transform: uppercase;
    box-shadow: 0 4px 0 rgba(0,0,0,0.2);
    transition: transform 0.1s;
}

.btn:active {
    transform: translateY(4px);
    box-shadow: none;
}

.btn-primary {
    background-color: var(--btn-yellow);
    color: #333;
}

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

.badges-grid {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.badge {
    background: #E1BEE7;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    border: 2px solid var(--primary-purple);
    font-size: 0.9rem;
}

.location-text {
    font-size: 1.2rem;
    font-weight: 600;
}

/* --- Services Section --- */
.services-section {
    background-color: var(--bg-blue);
    color: white;
}

.section-title {
    font-size: 4rem;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.2);
    margin-bottom: 3rem;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    padding: 2rem;
    border-radius: 20px;
    color: #333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border: 3px solid white;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #D32F2F;
}

.service-card ul {
    list-style: none;
    padding-left: 0.5rem;
}

.service-card li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #D32F2F;
}

.orange-card { background-color: #FFCC80; }
.yellow-card { background-color: #FFF59D; }
.green-card { background-color: #A5D6A7; }

.collage-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 0;
    padding: 0;
    background: transparent;
    border-radius: 20px;
    border: 4px solid white;
    overflow: hidden; /* Clips the corners of the images */
}

.collage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
    border: none;
    display: block; /* Removes bottom spacing */
}

.collage-img:hover {
    transform: scale(1.05);
    z-index: 2;
    position: relative;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

/* Layout for 7 images - Gapless 4x3 Grid */
.item-1 { grid-column: span 2; grid-row: span 2; }
.item-2 { grid-column: span 1; }
.item-3 { grid-column: span 1; }
.item-4 { grid-column: span 1; }
.item-5 { grid-column: span 1; }
.item-6 { grid-column: span 2; }
.item-7 { grid-column: span 2; }

/* Responsive Grid for Collage */
@media (max-width: 768px) {
    .collage-container {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
    }
    
    .item-1 { grid-column: span 2; grid-row: span 2; height: 100%; }
    .item-2, .item-3, .item-4, .item-5 { grid-column: span 1; height: 100%; }
    .item-6, .item-7 { grid-column: span 2; height: 100%; }
}

/* --- About Section --- */
.about-section {
    background-color: var(--bg-orange);
    color: #333;
}

.about-content {
    background: rgba(255,255,255,0.9);
    padding: 3rem;
    border-radius: 30px;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.quote-box {
    background: #81D4FA;
    padding: 1.5rem;
    border-radius: 15px;
    border: 3px solid #0288D1;
    margin: 2rem 0;
    transform: rotate(-1deg);
}

.quote-box h3 {
    color: #01579B;
    font-size: 1.4rem;
    text-align: center;
}

.about-img-container {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    position: relative;
    overflow: hidden;
    border: 8px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.about-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-text {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    color: rgba(255, 255, 255, 0.7); /* Faint white text */
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    padding-bottom: 10px;
}

.star-rating {
    text-align: center;
    color: #FFC107;
    font-size: 2rem;
}

/* --- Reviews Section --- */
.reviews-section {
    background-color: white;
}

.reviews-section .section-title {
    color: #333;
    text-shadow: none;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary-purple);
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.review-card h4 {
    color: #1976D2;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.review-card p {
    font-style: italic;
    color: #555;
}

.review-card .stars {
    color: #FFC107;
    margin-top: 0.5rem;
}

/* --- Contact Section --- */
.contact-section {
    background-color: #EF5350; /* Softer red matching logo */
    color: white;
    text-align: center;
}

.contact-section .section-title {
    color: white;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    align-items: flex-start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    flex: 1;
    min-width: 280px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.1);
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: background 0.3s;
    width: 100%;
    justify-content: center;
}

.contact-item:hover {
    background: rgba(255,255,255,0.2);
}

.booking-form {
    flex: 1;
    min-width: 300px;
    background: rgba(255,255,255,0.9);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    max-width: 500px;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

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

.submit-btn {
    width: 100%;
    border: none;
    cursor: pointer;
    margin-top: 1rem;
}

.footer-note {
    margin-top: 3rem;
    opacity: 0.9;
}

.seo-tags {
    margin-top: 1rem;
    font-size: 0.85rem;
    line-height: 1.5;
}

.seo-tags-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.seo-tags-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.3rem 1.5rem;
}

.seo-tags-list li::before {
    content: "★ ";
}

@media (max-width: 600px) {
    .seo-tags-list {
        grid-template-columns: 1fr;
    }
}

.made-by {
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

.made-by a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.made-by a:hover {
    opacity: 0.9;
}

/* --- Responsive Design --- */
@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --sidebar-width: 0px;
    }

    .mobile-header {
        display: flex;
    }

    .sidebar {
        transform: translateX(-100%);
        width: 250px;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
    }

    .section {
        padding: 3rem 1rem;
    }

    .content-card {
        padding: 1.5rem;
    }
    
    .hero-logo {
        max-height: 120px;
        max-width: 220px;
        width: auto;
    }

    .home-header h1 {
        font-size: 1.8rem;
    }
    
    .hero-images {
        gap: 0.5rem;
    }
    
    .hero-img-container {
        width: 120px;
        height: 90px;
    }
    
    .main-hero {
        width: 150px;
        height: 120px;
    }
    
    .btn {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

/* Extra-small mobile tweaks */
@media (max-width: 480px) {
    .section {
        padding: 2.5rem 1rem;
    }

    .content-card {
        padding: 1.25rem 1rem;
    }

    .hero-logo {
        max-height: 90px;
        max-width: 200px;
        width: auto;
    }

    .home-header h1 {
        font-size: 1.5rem;
    }

    .hero-images {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-img-container,
    .main-hero {
        width: 100%;
        max-width: 260px;
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .badges-grid {
        gap: 0.5rem;
    }

    .badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content {
        padding: 2rem 1.25rem;
    }

    .about-img-container {
        width: 220px;
        height: 220px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .collage-container {
        grid-template-columns: 1fr;
        grid-auto-rows: 180px;
    }

    .contact-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .booking-form {
        max-width: 100%;
    }
}
