/* About Page Styles */

/* Reuse Hero V2 structure but override image and alignment */
.about-hero-bg {
    background-image: url('../images/hero-about.jpeg') !important;
}

.hero-card-right {
    margin: 50px 60px 50px auto !important;
    /* Right aligned */
    padding: 40px !important;
}

.btn-book {
    display: inline-block;
    background: var(--spa-black);
    color: var(--spa-white);
    padding: 12px 45px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 10px;
    border-radius: 12px;
    font-size: 1.4rem;
}

/* Spacer for About Page Sections */
.about-page section.outer {
    margin-bottom: 80px;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.about-page .inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* About Us Section */
.about-us-section {
    padding: 20px 0;
    /* Reduced top padding */
}

.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    /* 40% Text, 60% Image as requested "unbalanced" fix */
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 1.5rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--spa-text-grey, #666);
}

.about-image img {
    width: 100%;
    border-radius: 40px 40px 40px 40px;
    /* Custom shape? Screenshot shows rounded square/rect */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 in top row, 2 in bottom? Screenshot has 3 then 2 centered? or just flow. Let's do auto-fill or just grid */
    gap: 30px;
    justify-content: center;
}

.team-card {
    background: #f8f5f2;
    /* Light beige base from screenshot */
    border: none;
    border-radius: 20px;
    padding: 25px;
    text-align: left;
    /* Screenshot shows left align */
    transition: transform 0.3s ease;
}

.team-card-dark {
    background: #000;
    color: #fff;
}

.team-card-dark .team-info-top h4,
.team-card-dark .team-info-top span {
    color: #fff !important;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.team-info-top {
    text-align: left;
    margin-bottom: 15px;
}

.team-info-top h4 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
}

.team-info-top span {
    font-size: 1.2rem;
    color: #888;
}

.team-photo img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.team-social .social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #e1e1e1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #15171a;
    transition: all 0.2s ease;
    margin-right: 8px;
    text-decoration: none;
}

.team-social .social-icon:hover {
    background: #15171a;
    color: #fff;
    border-color: #15171a;
}

.team-card-dark .team-social .social-icon,
.team-card-dark .btn-tiny {
    border-color: #555;
    color: #fff;
}

.btn-tiny {
    font-size: 1.1rem;
    /* Slightly larger */
    padding: 8px 20px;
    border: 1px solid #15171a;
    border-radius: 30px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: auto;
    transition: all 0.2s ease;
}

.btn-tiny:hover {
    background: #15171a;
    color: #fff;
}

/* Offer Section */
.offer-section {
    background: #f9f7f4;
    /* Light beige */
    padding: 60px 15px !important;
    /* Added padding per request */
}

.offer-header {
    text-align: center;
    margin-bottom: 60px;
}

.offer-header h2 {
    font-size: 3.6rem;
    margin-bottom: 15px;
}

.offer-header p {
    font-size: 1.4rem;
    color: #666;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.offer-item {
    background: #fff;
    border-radius: 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.offer-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.offer-item img {
    width: 100%;
    height: 180px;
    /* Fixed height for landscape ratio */
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    /* Only top corners rounded */
    margin-bottom: 0;
}

.offer-item span {
    font-weight: 600;
    font-size: 1.4rem;
    padding: 20px 15px;
    display: block;
    line-height: 1.4;
}

/* Booking Split Section */
.booking-split {
    padding: 100px 0;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.booking-image img {
    width: 100%;
    border-radius: 40px;
    /* Big rounded corner bottom left maybe? Screenshot has specific shape. */
    border-bottom-left-radius: 60px;
    border-top-right-radius: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-content h2 {
    font-size: 4rem;
    /* Serif font in screenshot? */
    font-family: serif;
    /* Try to match if possible, or use standard */
    margin-bottom: 20px;
}

.appointment-form-split .form-row {
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
}

.appointment-form-split input,
.appointment-form-split select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ccc;
    border-radius: 30px;
    font-size: 1.4rem;
    background: #fff;
}

.btn-black-full {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 15px;
    border-radius: 30px;
    font-size: 1.4rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    margin-top: 10px;
}

.time-select {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Responsive */
@media (max-width: 900px) {
    .about-page {
        overflow-x: hidden;
    }

    .about-grid,
    .booking-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-card-right {
        margin: 30px !important;
        width: auto !important;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

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