/* =========================
   RESET
========================= */

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

/* =========================
   VARIABLES
========================= */

:root {
    --serif: "Cormorant Garamond", serif;
    --sans: "Manrope", sans-serif;

    --gold: #b88b63;
    --gold-hover: #9b6d49;
    --dark: #222222;
    --light: #f8f3ef;
}

/* =========================
   GENERAL
========================= */

body {
    font-family: var(--sans);
    color: var(--dark);
    line-height: 1.6;
    background: white;
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

/* =========================
   HEADER
========================= */

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    z-index: 99;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 52px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .logo img {
        height: 42px;
    }
}

nav {
    display: flex;
    gap: 28px;
}

nav a {
    text-decoration: none;
    color: #444;
    transition: color .3s;
}

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

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

.hero {
    position: relative;
    height: 100vh;
    display: grid;
    place-items: center;
    overflow: hidden;
}

/* Aquí cambiarás la imagen */

.hero-bg {
    position: absolute;
    inset: 0;

    background-image: url("../img/befantastic_studio_01.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    max-width: 760px;
    padding: 20px;
}

.subtitle {
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: .9rem;
}

.hero h1 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(3.2rem, 7vw, 6rem);
    line-height: .92;
    margin: 16px 0;
}

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

/* =========================
   BOTONES
========================= */

.btn {
    display: inline-block;
    margin-top: 28px;
    padding: 15px 34px;

    background: var(--gold);
    color: white;
    text-decoration: none;
    border-radius: 999px;

    transition: all .3s ease;
}

.btn:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
}

/* =========================
   SECCIONES
========================= */

.section {
    padding: 100px 0;
}

.section h2 {
    text-align: center;
    font-family: var(--serif);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 500;
    margin-bottom: 50px;
}

/* =========================
   SERVICIOS
========================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 35px rgba(0, 0, 0, .08);
}

.card h3 {
    font-family: var(--serif);
    font-weight: 500;
    text-align: center;
    padding: 20px;
}

.service {
    height: 300px;
}

.service-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* =========================
   SOBRE MÍ
========================= */

.about {
    background: var(--light);
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 70px;
    align-items: center;
}
.about-photo {
    width: 100%;
    max-width: 650px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* =========================
   GALERÍA
========================= */

.gallery-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    border-radius: 18px;
    display: block;
    transition: transform .35s ease;
}

.gallery-img:hover {
    transform: scale(1.03);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.gallery {
    height: 230px;
    border-radius: 18px;
}

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

.cta {
    text-align: center;
    padding: 100px 0;
}

/* =========================
   FOOTER
========================= */

footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 28px 0;
}

/* =========================
   WHATSAPP
========================= */

.whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;

    width: 60px;
    height: 60px;

    border-radius: 50%;

    background: #25D366;
    color: white;

    display: grid;
    place-items: center;

    text-decoration: none;
    font-size: 28px;

    box-shadow: 0 10px 20px rgba(0, 0, 0, .25);
}

/* =========================
   PLACEHOLDERS
========================= */

.placeholder {
    background: linear-gradient(135deg, #ece8e5, #d8d2cd);
    border: 2px dashed #9d958f;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    color: #6a6663;
    font-weight: 600;

    padding: 20px;
}

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

@media (max-width: 768px) {

    nav {
        display: none;
    }

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

    .about-photo {
        height: 380px;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

}