/* Global Styles */
:root {
    --primary-color: #e05297; /* Vibrant pink */
    --secondary-color: #fee1e8; /* Light pink */
    --accent-color: #ff85a2; /* Medium pink */
    --text-color: #333;
    --light-text: #fff;
    --spacing: 2rem;
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fef2f5; /* Very light pink background for entire site */
}

/* Header & Navigation */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 5px rgba(230, 98, 157, 0.2);
    position: fixed;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem var(--spacing);
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1562322140-8baeececf3df?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeIn 1.5s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 6px rgba(230, 98, 157, 0.2);
}

.cta-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(230, 98, 157, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}

/* Info Cards Section */
.info-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: var(--spacing);
    background-color: var(--secondary-color);
}

.location-info, .credentials {
    background-color: #fee1e8;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(230, 98, 157, 0.15);
    transition: transform 0.3s ease;
    border-top: 3px solid var(--accent-color);
}

.location-info:hover, .credentials:hover {
    transform: translateY(-5px);
}

/* Services Preview */
.services-preview {
    padding: 4rem var(--spacing);
    text-align: center;
    background-color: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.services-preview::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: var(--accent-color);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 0;
}

.services-preview::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background-color: var(--primary-color);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 0;
}

.services-preview h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.services-preview h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 0.8rem auto;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    padding: 0 var(--spacing);
    position: relative;
    z-index: 1;
}

.service-card {
    background-color: #fee1e8;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(230, 98, 157, 0.2);
    transition: all 0.3s ease;
    border-bottom: 3px solid var(--accent-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(230, 98, 157, 0.3);
    border-bottom-color: var(--primary-color);
}

.service-card picture {
    display: block;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-card h3 {
    padding: 1.5rem;
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* Booking CTA Section */
.booking-cta {
    background-color: #fde4ec;
    text-align: center;
    padding: var(--spacing);
    color: white;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: var(--spacing);
    text-align: center;
}

.social-links {
    margin-bottom: 1rem;
}

.social-links a {
    color: var(--light-text);
    font-size: 1.5rem;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

/* Image Loading Animation */
@keyframes imageLoadFade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

img[loading="lazy"] {
    opacity: 0;
    animation: imageLoadFade 0.5s ease-in forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 1rem;
    }

    nav ul {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .info-cards {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }

    .location-info, .credentials {
        width: 100%;
        box-sizing: border-box;
        padding: 1.5rem 1rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .service-card {
        width: 100%;
        min-width: 0;
        margin: 0 auto;
        padding: 0;
    }

    .service-card picture {
        height: 180px;
    }

    .services-preview, .about-preview, .why-choose-us, .booking-cta {
        padding: 2rem 1rem;
    }

    .why-choose-us {
        text-align: center;
    }

    .about-preview {
        padding: 2rem 1rem;
    }

    .booking-cta {
        padding: 2rem 1rem;
    }

    .footer-content {
        padding: 1rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .about-image {
        margin-bottom: 1.5rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .category-btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* Gallery Categories */
.category-btn {
    background-color: var(--secondary-color);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background-color: var(--primary-color);
    color: white;
}

/* Form Elements */
input:focus, 
textarea:focus, 
select:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(230, 98, 157, 0.2);
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(230, 98, 157, 0.2);
}

.submit-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(230, 98, 157, 0.3);
}

/* About Us Section */
.about-us {
    padding: 5rem var(--spacing);
    background-color: #fff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    align-items: center;
}

.about-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.about-tagline {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    border-radius: 10px;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(230, 98, 157, 0.15);
}

.feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(230, 98, 157, 0.2);
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 70%;
    height: 70%;
    border: 5px solid var(--accent-color);
    border-radius: 10px;
    z-index: -1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.highlight {
    color: #c41c65; /* Dark pink */
    position: relative;
}

.services-preview .highlight {
    color: #c41c65; /* Dark pink */
    position: relative;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.pink-heading {
    color: var(--primary-color);
    position: relative;
} 

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 4px;
    margin: 4px 0;
    background: var(--primary-color);
    border-radius: 2px;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    nav ul {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        box-shadow: 0 4px 12px rgba(230, 98, 157, 0.15);
        border-radius: 0 0 0 10px;
        z-index: 1001;
        padding: 1rem 0;
    }
    nav ul.show {
        display: flex;
    }
    nav ul li {
        margin: 0.5rem 0;
        text-align: right;
        padding: 0 1.5rem;
    }
    nav {
        position: relative;
    }
} 