/* ==========================================
   BABY PHOTOGRAPHY STUDIO PAGE
   Studio Rental Service
========================================== */

:root {

    --gold: #D4AF37;
    --gold-light: #f5d76e;
    --black: #050505;
    --dark: #0d0d0d;
    --card: #141414;
    --text: #ffffff;
    --text-light: #cfcfcf;
    --border: rgba(212, 175, 55, .15);

}

/* ==========================================
   COMMON
========================================== */

.service-hero,
.creator-about,
.included-section,
.perfect-for,
.benefits,
.why-us,
.faq-section,
.location-section,
.service-cta {

    padding: 100px 0;
}

.section-title {

    text-align: center;
    margin-bottom: 50px;
}

.section-title span {

    display: inline-block;

    color: var(--gold);

    text-transform: uppercase;

    letter-spacing: 2px;

    font-size: .9rem;

    margin-bottom: 15px;
}

.section-title h2 {

    font-size: 2.5rem;

    color: #fff;

    margin-bottom: 15px;
}

.content-box {

    max-width: 1000px;

    margin: auto;
}

.content-box p {

    color: var(--text-light);

    line-height: 1.9;

    margin-bottom: 20px;

    font-size: 1.05rem;
}

/* ==========================================
   HERO
========================================== */

.service-hero {

    min-height: 85vh;

    display: flex;

    align-items: center;

    text-align: center;

    background:
        linear-gradient(rgba(0, 0, 0, .75),
            rgba(0, 0, 0, .85)),
        url('../../images/baby-photography-studio/hero.jpg');

    background-size: cover;

    background-position: center;
}

.hero-content {

    max-width: 900px;

    margin: auto;
}

.service-tag {

    display: inline-block;

    color: var(--gold);

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 20px;
}

.service-hero h1 {

    font-size: 4rem;

    color: #fff;

    margin-bottom: 25px;
}

.service-hero p {

    color: #ddd;

    font-size: 1.15rem;

    line-height: 1.9;

    max-width: 800px;

    margin: auto;
}

.btn-primary {

    display: inline-block;

    margin-top: 35px;

    padding: 16px 35px;

    background: var(--gold);

    color: #000;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 700;

    transition: .3s;
}

.btn-primary:hover {

    transform: translateY(-4px);

    background: var(--gold-light);
}

/* ==========================================
   INCLUDED FEATURES
========================================== */

.features-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.feature-card {

    background: var(--card);

    padding: 25px;

    border-radius: 18px;

    border: 1px solid var(--border);

    color: #fff;

    transition: .3s;
}

.feature-card:hover {

    transform: translateY(-8px);

    border-color: var(--gold);
}

/* ==========================================
   PERFECT FOR
========================================== */

.use-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.use-card {

    background: var(--card);

    padding: 35px 20px;

    text-align: center;

    border-radius: 18px;

    border: 1px solid var(--border);

    color: #fff;

    font-size: 1.1rem;

    transition: .3s;
}

.use-card:hover {

    transform: translateY(-8px);

    border-color: var(--gold);
}

/* ==========================================
   WHY US
========================================== */

.why-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 30px;
}

.why-card {

    background: var(--card);

    padding: 35px;

    border-radius: 18px;

    border: 1px solid var(--border);

    transition: .3s;
}

.why-card:hover {

    transform: translateY(-8px);

    border-color: var(--gold);
}

.why-card h3 {

    color: var(--gold);

    margin-bottom: 15px;
}

.why-card p {

    color: var(--text-light);

    line-height: 1.8;
}

/* ==========================================
   FAQ
========================================== */

.faq-item {

    background: var(--card);

    padding: 30px;

    margin-bottom: 20px;

    border-radius: 15px;

    border: 1px solid var(--border);

}

.faq-item h3 {

    color: var(--gold);

    margin-bottom: 12px;

}

.faq-item p {

    color: var(--text-light);

    line-height: 1.8;

}

/* ==========================================
   LOCATION
========================================== */

.location-box {

    background: var(--card);

    max-width: 800px;

    margin: auto;

    padding: 40px;

    text-align: center;

    border-radius: 20px;

    border: 1px solid var(--border);

}

.location-box p {

    color: #ddd;

    margin-bottom: 15px;

    line-height: 1.8;

}

.map-wrapper {

    margin-top: 35px;

    overflow: hidden;

    border-radius: 20px;

}

.map-wrapper iframe {

    width: 100%;

    height: 420px;

    border: 0;

}

/* ==========================================
   CTA
========================================== */

.service-cta {

    text-align: center;

    background: #111;

}

.service-cta h2 {

    font-size: 2.8rem;

    color: #fff;

    margin-bottom: 20px;

}

.service-cta p {

    color: #ccc;

    max-width: 700px;

    margin: auto auto 30px;

    line-height: 1.8;

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:1200px) {

    .service-hero h1 {

        font-size: 3.5rem;

    }

}

@media(max-width:992px) {

    .features-grid,
    .use-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .why-grid {

        grid-template-columns: 1fr;

    }

    .service-hero h1 {

        font-size: 3rem;

    }

    .section-title h2 {

        font-size: 2rem;

    }

}

@media(max-width:768px) {

    .service-hero {

        min-height: 75vh;

    }

    .service-hero h1 {

        font-size: 2.3rem;

    }

    .service-hero p {

        font-size: 1rem;

    }

    .features-grid,
    .use-grid {

        grid-template-columns: 1fr;

    }

    .section-title h2 {

        font-size: 1.8rem;

    }

    .service-hero,
    .creator-about,
    .included-section,
    .perfect-for,
    .benefits,
    .why-us,
    .faq-section,
    .location-section,
    .service-cta {

        padding: 70px 0;

    }

    .location-box {

        padding: 25px;

    }

    .map-wrapper iframe {

        height: 300px;

    }

    .service-cta h2 {

        font-size: 2rem;

    }

}

@media(max-width:480px) {

    .service-hero h1 {

        font-size: 2rem;

    }

    .btn-primary {

        width: 100%;

        text-align: center;

    }

}

/* ==========================================
   GALLERY
========================================== */

.gallery-section {

    padding: 100px 0;

}

.gallery-section .section-title p {

    max-width: 800px;

    margin: 15px auto 0;

    color: #cfcfcf;

    line-height: 1.8;

}

.gallery-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

    margin-top: 50px;

}

.gallery-item {

    overflow: hidden;

    border-radius: 20px;

    border: 1px solid rgba(212, 175, 55, .15);

    background: #111;

}

.gallery-item img {

    width: 100%;

    height: 320px;

    object-fit: cover;

    display: block;

    transition: .5s;

}

.gallery-item:hover img {

    transform: scale(1.08);

}

.gallery-btn {

    text-align: center;

    margin-top: 50px;

}

/* Tablet */

@media(max-width:992px) {

    .gallery-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}

/* Mobile */

@media(max-width:768px) {

    .gallery-grid {

        grid-template-columns: 1fr;

    }

    .gallery-item img {

        height: 280px;

    }

}

/* ==========================================
   BABY PAGE CUSTOM
========================================== */

.service-tag {

    color: var(--gold);

    letter-spacing: 2px;

}

.service-hero h1 {

    max-width: 900px;

}

.feature-card {

    position: relative;

}

.feature-card::before {

    content: "👶";

    position: absolute;

    top: 20px;

    right: 20px;

    font-size: 24px;

    opacity: .08;

}

.gallery-item {

    cursor: pointer;

}

.gallery-item:hover {

    box-shadow:
        0 20px 45px rgba(212, 175, 55, .20);

}

.why-card {

    position: relative;

    overflow: hidden;

}

.why-card::after {

    content: "";

    position: absolute;

    bottom: 0;

    left: 0;

    width: 0;

    height: 3px;

    background: var(--gold);

    transition: .35s;

}

.why-card:hover::after {

    width: 100%;

}

.faq-item {

    transition: .35s;

}

.faq-item:hover {

    transform: translateX(8px);

}

.location-box {

    position: relative;

}

.location-box::before {

    content: "👶";

    position: absolute;

    top: 20px;

    right: 20px;

    font-size: 26px;

    opacity: .15;

}

