/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
}

/* Header styles */
.header {
    background-color: white;
    width: 100%;
    z-index: 1000;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    border-bottom: 1px solid #eee;
}

.header .logo {
    padding: 0.5rem 0;
}

.header .logo img {
    max-height: 45px;
    width: auto;
}

.header .nav {
    width: 100%;
    margin: 0;
}

.header .nav ul {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header .nav a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.header .nav a:hover {
    color: #6c7ae0;
}

/* Hero section */
.hero {
    min-height: auto;
    background-color: #1a1f3d;
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    margin-top: 0;
}

.hero-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 0 1rem;
}

.hero-content {
    flex: 1;
    padding: 1rem;
    color: #fff;
    text-align: center;
    max-width: 100%;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
    line-height: 1.2;
    font-weight: 700;
}

.hero-content .limited-deal {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 400;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    width: 100%;
    max-width: 500px;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Services section */
.services {
    padding: 3rem 1rem;
    background-color: #e6e0f3;
}

.services-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.services-image {
    width: 100%;
}

.services-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 0;
}

.services-content {
    flex: 1;
    padding: 0;
    text-align: center;
}

.services-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1f3d;
}

.services-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #1a1f3d;
    margin-bottom: 1.5rem;
}

/* Bridal services section */
.bridal-services {
    padding: 3rem 1rem;
    background-color: #e6e0f3;
}

.bridal-services-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.bridal-services-content {
    max-width: 100%;
    text-align: center;
}

.bridal-services-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1f3d;
}

.bridal-services-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #1a1f3d;
    margin-bottom: 1.5rem;
}

.bridal-services-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bridal-services-images img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 0;
    background-color: #e6e0f3;
}

/* About us section */
.about-us {
    padding: 3rem 1rem;
    background-color: #fff;
}

.about-us-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.about-us-content {
    margin-bottom: 2rem;
    text-align: center;
}

.about-us-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1f3d;
}

.about-us-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #1a1f3d;
}

.about-us-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-us-images img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 0;
}

/* Testimonial section */
.testimonial {
    padding: 3rem 1rem;
    background-color: #f8f9fa;
}

.testimonial-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-image {
    width: 100%;
}

.testimonial-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

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

.testimonial-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1f3d;
}

.testimonial-content blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: #666;
    margin: 0;
    padding: 0 1rem;
}

/* Map section */
.map-section {
    padding: 3rem 1rem;
    background-color: #fff;
}

.map-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.salon-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1f3d;
}

.location {
    font-style: normal;
    margin-bottom: 1.5rem;
    color: #666;
}

.hours, .contacts {
    margin-bottom: 1.5rem;
}

.hours h3, .contacts h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1f3d;
}

.hours p, .contacts p {
    color: #666;
}

.contacts a {
    color: #1a1f3d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contacts a:hover {
    color: #6c7ae0;
}

.map-container {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
.footer {
    background-color: #1a1f3d;
    color: #fff;
    padding: 3rem 1rem 1rem;
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section p, .footer-section address {
    color: #ccc;
    margin-bottom: 0.5rem;
    font-style: normal;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #6c7ae0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #6c7ae0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #ccc;
    font-size: 0.9rem;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: #6c7ae0;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #5a6bc0;
}

/* Prices Hero Section */
.prices-hero {
    background: linear-gradient(rgba(26, 31, 61, 0.8), rgba(26, 31, 61, 0.8)), url('images/photo-1633681926035-ec1ac984418a.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 1rem;
    text-align: center;
    color: #fff;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prices-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.prices-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.prices-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Prices Grid Layout */
.prices {
    padding: 3rem 1rem;
    background-color: #fff;
}

.prices-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.prices-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.price-column {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
}

.price-column h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1f3d;
    text-align: center;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.service-list li:last-child {
    border-bottom: none;
}

.price {
    font-weight: 600;
    color: #1a1f3d;
}

.service-list li strong {
    color: #1a1f3d;
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(rgba(26, 31, 61, 0.8), rgba(26, 31, 61, 0.8)), url('images/photo-1633681926035-ec1ac984418a.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 1rem;
    text-align: center;
    color: #fff;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.contact-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 3rem 1rem;
    background-color: #fff;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1f3d;
    text-align: center;
}

.contact-details {
    display: grid;
    gap: 1.5rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1a1f3d;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-item a {
    color: #1a1f3d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #6c7ae0;
}

.contact-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Media Queries for larger screens */
@media (min-width: 768px) {
    .header {
        flex-direction: row;
        justify-content: space-between;
        padding: 1.2rem 2rem;
    }

    .header .logo {
        padding-top: 0;
    }

    .header .nav {
        margin-left: auto;
        width: auto;
    }

    .header .nav ul {
        gap: 3rem;
    }

    .hero {
        min-height: 600px;
        padding: 4rem 0;
    }

    .hero-wrapper {
        flex-direction: row;
        gap: 4rem;
        padding: 0 2rem;
    }

    .hero-content {
        text-align: left;
        padding: 2rem;
        max-width: 600px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-content .limited-deal {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-image {
        height: 500px;
        max-width: 50%;
    }

    .services {
        padding: 4rem 2rem;
    }

    .services-wrapper {
        flex-direction: row;
        gap: 4rem;
    }

    .services-image {
        flex: 1;
    }

    .services-image img {
        height: 500px;
    }

    .services-content {
        flex: 1;
        text-align: left;
        padding: 2rem;
    }

    .services-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .bridal-services {
        padding: 4rem 2rem;
    }

    .bridal-services-images {
        flex-direction: row;
        gap: 2rem;
    }

    .bridal-services-images img {
        width: 50%;
        height: 600px;
    }

    .about-us {
        padding: 4rem 2rem;
    }

    .about-us-content {
        text-align: left;
        margin-bottom: 3rem;
    }

    .about-us-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .about-us-images {
        flex-direction: row;
        gap: 2rem;
    }

    .about-us-images img {
        width: 50%;
        height: 400px;
    }

    .testimonial {
        padding: 4rem 2rem;
        background-color: #1a1f3d;
        color: #fff;
    }

    .testimonial-wrapper {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }

    .testimonial-image {
        flex: 1;
    }

    .testimonial-image img {
        height: 400px;
    }

    .testimonial-content {
        flex: 1;
        text-align: left;
    }

    .testimonial-content h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        color: #fff;
    }

    .testimonial-content blockquote {
        font-size: 1.2rem;
        line-height: 1.8;
        color: #fff;
        border-left: 4px solid #6c7ae0;
        padding-left: 2rem;
    }

    .map-section {
        padding: 4rem 2rem;
    }

    .map-wrapper {
        flex-direction: row;
        gap: 4rem;
    }

    .salon-info {
        flex: 1;
        text-align: left;
    }

    .salon-info h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .map-container {
        flex: 1;
        height: 400px;
    }

    .footer {
        padding: 4rem 2rem 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }

    .footer-section h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .footer-section p, .footer-section address {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Prices and Contact sections for desktop */
    .prices-hero, .contact-hero {
        padding: 6rem 2rem;
        min-height: 400px;
    }

    .prices-hero h1, .contact-hero h1 {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }

    .prices-hero p, .contact-hero p {
        font-size: 1.2rem;
    }

    .prices {
        padding: 4rem 2rem;
    }

    .prices-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .price-column {
        padding: 1rem;
    }

    .price-column h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .service-list li {
        padding: 1rem 0;
        font-size: 1.1rem;
    }

    .contact {
        padding: 4rem 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .contact-info {
        padding: 3rem;
    }

    .contact-info h3 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .contact-details {
        gap: 2rem;
    }

    .contact-item h4 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .contact-item p, .contact-item a {
        font-size: 1.1rem;
    }

    .contact-image {
        height: 100%;
        min-height: 500px;
    }
} 