

:root {
    --primary-color: #D03374;      /* Main Pink */
    --secondary-color: #8c1f4d;    /* Darker Pink */
    --accent-color: #f4a6c1;       /* Light Pink */
    --light-color: #fdf2f7;        /* Soft Background */
    --dark-color: #333333;
    --text-color: #555555;
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* About Hero Section */
.about-hero-section {
    background: linear-gradient(rgba(208, 51, 116, 0.85), rgba(208, 51, 116, 0.9)), 
                url('https://images.unsplash.com/photo-1596462502278-27bfdc403348?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') 
                no-repeat center center/cover;
    color: var(--white);
    padding: 150px 0 100px;
    text-align: center;
    margin-top: 80px;
}

.about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero-section h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.about-subtitle {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-style: italic;
    margin-bottom: 30px;
}

/* About Content Section */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.about-text h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 0;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
}

.about-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Mission Section */
.mission-section {
    background-color: var(--light-color);
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.mission-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
}

.mission-icon {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.mission-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.mission-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.why-choose-content .section-title {
    text-align: left;
}

.why-choose-content .section-title::after {
    left: 0;
    transform: none;
}

.why-choose-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
}

.features-list {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.feature-item i {
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Gallery Section - Simplified */
.why-choose-gallery {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.why-choose-gallery h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    text-align: center;
}

.why-choose-gallery > p {
    text-align: center;
    color: #777;
    margin-bottom: 25px;
    font-size: 1rem;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 200px;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(208, 51, 116, 0.7));
    color: var(--white);
    padding: 15px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Gallery Instructions */
.gallery-instruction {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    border-left: 4px solid var(--accent-color);
}

.gallery-instruction h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.gallery-instruction p {
    margin-bottom: 10px;
    line-height: 1.5;
    font-size: 0.95rem;
    color: var(--text-color);
}

.gallery-instruction code {
    background-color: #f0f0f0;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--secondary-color);
    border: 1px solid #ddd;
}

/* Responsive adjustments for gallery */
@media (max-width: 992px) {
    .why-choose-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .gallery-item {
        height: 200px;
    }
    
    .why-choose-gallery {
        padding: 20px;
    }
    
    .gallery-instruction {
        padding: 15px;
    }
}

/* Hours Section */
.hours-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.hours-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.hours-icon {
    font-size: 3rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.hours-content h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.hour-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hour-item .day {
    font-weight: 600;
    color: var(--text-color);
}

.hour-item .time {
    color: var(--primary-color);
    font-weight: 500;
}

.hour-item.closed .time {
    color: #ff6b6b;
}

.booking-reminder {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    padding: 40px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-reminder h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.booking-reminder p {
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.booking-btn {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.booking-btn:hover {
    background-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Services Highlight */
.highlight-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.highlight-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlight-content h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.highlight-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-color);
}

.highlight-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.highlight-feature i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

/* Active Navigation */
.desktop-nav .active,
.mobile-nav .active {
    color: var(--accent-color) !important;
    position: relative;
}

.desktop-nav .active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    left: 0;
    bottom: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-hero-section h1 {
        font-size: 3rem;
    }
    
    .about-intro,
    .why-choose-container,
    .hours-container,
    .highlight-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image,
    .highlight-image {
        height: 350px;
        order: -1;
    }
    
    .mission-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 120px 0 80px;
    }
    
    .about-hero-section h1 {
        font-size: 2.5rem;
    }
    
    .about-subtitle {
        font-size: 1.2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .hours-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .booking-reminder {
        text-align: center;
        padding: 30px;
    }
    
    .booking-btn {
        align-self: center;
    }
}

@media (max-width: 576px) {
    .about-hero-section h1 {
        font-size: 2rem;
    }
    
    .mission-card,
    .why-choose-gallery,
    .hours-card {
        padding: 25px;
    }
    
    .gallery-item {
        height: 180px;
    }
    
    .feature-item,
    .highlight-feature {
        font-size: 1rem;
    }
}