/* =====================================================
   BASIC
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: #111;
    background: #fff;
    line-height: 1.6;
}

body.popup-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

.container {
    width: min(1160px, 92%);
    margin: auto;
}


/* =====================================================
   FULL SCREEN OFFER POPUP
===================================================== */

.offer-popup {
    position: fixed;

    inset: 0;

    width: 100%;
    height: 100vh;

    z-index: 999999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 20px;

    opacity: 1;
    visibility: visible;

    transition:
        opacity .4s ease,
        visibility .4s ease;
}


/* Background */

.offer-overlay {
    position: absolute;

    inset: 0;

    background:
        rgba(0, 0, 0, .92);

    backdrop-filter: blur(8px);
}


/* Popup Box */

.offer-box {
    position: relative;

    z-index: 2;

    width: min(900px, 100%);

    max-height: 90vh;

    display: grid;

    grid-template-columns: 45% 55%;

    background: #fff;

    overflow: hidden;

    box-shadow:
        0 30px 100px rgba(0, 0, 0, .6);

    animation:
        popupOpen .6s ease;
}


@keyframes popupOpen {

    from {
        opacity: 0;
        transform:
            scale(.80)
            translateY(30px);
    }

    to {
        opacity: 1;
        transform:
            scale(1)
            translateY(0);
    }

}


/* Popup Image */

.offer-image {
    min-height: 500px;

    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* Popup Content */

.offer-content {
    padding: 50px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}


.offer-camera {
    font-size: 35px;

    margin-bottom: 10px;
}


.offer-label {
    color: #c9a96e;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 15px;
}


.offer-content h1 {
    font-family:
        "Playfair Display",
        serif;

    color: #111;

    font-size:
        clamp(38px, 5vw, 60px);

    line-height: 1.05;

    margin-bottom: 20px;
}


.offer-content h1 span {
    color: #c9a96e;
}


.offer-description {
    color: #777;

    font-size: 15px;

    line-height: 1.7;

    margin-bottom: 28px;
}


/* WhatsApp Offer Button */

.offer-whatsapp {
    display: flex;

    align-items: center;

    gap: 14px;

    width: 100%;

    padding: 17px 20px;

    background: #25d366;

    color: white;

    transition: .3s;

    box-shadow:
        0 8px 25px
        rgba(37, 211, 102, .25);
}


.offer-whatsapp:hover {
    background: #1ebe5d;

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px
        rgba(37, 211, 102, .40);
}


.whatsapp-icon {
    width: 44px;
    height: 44px;

    display: grid;

    place-items: center;

    background:
        rgba(255, 255, 255, .20);

    border-radius: 50%;

    font-size: 21px;
}


.whatsapp-text strong {
    display: block;

    font-size: 14px;
}


.whatsapp-text small {
    display: block;

    font-size: 11px;

    margin-top: 2px;

    opacity: .85;
}


.offer-note {
    color: #999;

    text-align: center;

    font-size: 11px;

    margin-top: 15px;
}


/* Close Button */

.offer-close {
    position: absolute;

    top: 12px;
    right: 12px;

    z-index: 10;

    width: 42px;
    height: 42px;

    border: none;

    border-radius: 50%;

    background:
        rgba(0, 0, 0, .80);

    color: white;

    font-size: 29px;

    line-height: 1;

    cursor: pointer;

    display: grid;

    place-items: center;

    transition: .3s;
}


.offer-close:hover {
    background: #c9a96e;

    color: #111;

    transform: rotate(90deg);
}


/* Hide Popup */

.offer-popup.hide {
    opacity: 0;

    visibility: hidden;

    pointer-events: none;
}


/* =====================================================
   HEADER
===================================================== */

.header {
    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(255, 255, 255, .97);

    backdrop-filter: blur(10px);

    border-bottom:
        1px solid #eee;
}


.nav {
    height: 76px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.logo {
    font-family:
        "Playfair Display",
        serif;

    font-size: 22px;

    font-weight: 700;

    white-space: nowrap;
}


.logo > span {
    color: #c9a96e;
}


.logo b {
    color: #c9a96e;
}


nav {
    display: flex;

    gap: 30px;

    margin-left: auto;

    margin-right: 30px;
}


nav a {
    font-size: 14px;

    font-weight: 600;

    transition: .3s;
}


nav a:hover {
    color: #c9a96e;
}


.book-button {
    padding: 12px 22px;

    background: #111;

    color: white;

    font-size: 13px;

    font-weight: 700;
}


.menu-toggle {
    display: none;

    border: 0;

    background: transparent;

    font-size: 26px;

    cursor: pointer;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    min-height: 690px;

    position: relative;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        url("https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?auto=format&fit=crop&w=2000&q=90")
        center / cover no-repeat;
}


.hero-dark {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .90),
            rgba(0, 0, 0, .50),
            rgba(0, 0, 0, .20)
        );
}


.hero-content {
    position: relative;

    z-index: 2;

    color: white;

    max-width: 720px;
}


.hero-label {
    color: #c9a96e;

    font-size: 12px;

    letter-spacing: 3px;

    font-weight: 700;

    margin-bottom: 18px;
}


.hero h2 {
    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(48px, 7vw, 86px);

    line-height: 1.02;

    margin-bottom: 25px;
}


.hero h2 span {
    color: #e1c58e;

    display: block;
}


.hero-content > p:not(.hero-label) {
    max-width: 590px;

    color: #eee;

    font-size: 17px;

    margin-bottom: 35px;
}


.hero-buttons {
    display: flex;

    gap: 14px;

    flex-wrap: wrap;
}


.button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 52px;

    padding: 15px 25px;

    font-size: 13px;

    font-weight: 700;

    transition: .3s;
}


.gold-button {
    background: #c9a96e;

    color: #111;
}


.gold-button:hover {
    background: #e1c58e;

    transform: translateY(-2px);
}


.outline-button {
    border:
        1px solid rgba(255, 255, 255, .7);

    color: white;
}


.outline-button:hover {
    background: white;

    color: #111;
}


/* =====================================================
   COMMON SECTIONS
===================================================== */

.section {
    padding: 100px 0;
}


.section-label {
    color: #c9a96e;

    font-size: 12px;

    letter-spacing: 3px;

    font-weight: 700;

    margin-bottom: 18px;
}


.section-title {
    max-width: 650px;

    text-align: center;

    margin:
        0 auto 55px;
}


.section-title h2,
.about-text h2,
.booking h2,
.contact h2 {
    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(34px, 5vw, 54px);

    line-height: 1.15;

    margin-bottom: 18px;
}


.section-title > p:last-child {
    color: #777;
}


/* =====================================================
   ABOUT
===================================================== */

.about {
    background: #f7f5f1;
}


.about-grid {
    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 80px;

    align-items: center;
}


.about-photo {
    height: 520px;

    overflow: hidden;

    box-shadow:
        25px 25px 0 #c9a96e;
}


.about-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


.about-text > p:not(.section-label) {
    color: #777;

    margin-bottom: 18px;

    max-width: 620px;
}


.stats {
    display: flex;

    gap: 45px;

    margin-top: 35px;

    padding-top: 30px;

    border-top:
        1px solid #e6e2db;
}


.stats div {
    display: flex;

    flex-direction: column;
}


.stats strong {
    color: #c9a96e;

    font-family:
        "Playfair Display",
        serif;

    font-size: 30px;
}


.stats small {
    color: #777;

    font-size: 12px;
}


/* =====================================================
   SERVICES
===================================================== */

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}


.service-card {
    padding: 35px 25px;

    background: white;

    border:
        1px solid #e6e2db;

    transition: .3s;
}


.service-card:hover {
    transform: translateY(-8px);

    border-color: #c9a96e;

    box-shadow:
        0 18px 40px
        rgba(0, 0, 0, .08);
}


.service-icon {
    font-size: 35px;

    margin-bottom: 20px;
}


.service-card h3 {
    font-family:
        "Playfair Display",
        serif;

    font-size: 23px;

    margin-bottom: 12px;
}


.service-card p {
    color: #777;

    font-size: 14px;

    margin-bottom: 22px;
}


.service-card a {
    color: #c9a96e;

    font-size: 13px;

    font-weight: 700;
}


/* =====================================================
   PORTFOLIO
===================================================== */

.portfolio {
    background: #0c0c0c;
}


.dark-title h2 {
    color: white;
}


.dark-title > p:last-child {
    color: #aaa;
}


.portfolio-grid {
    display: grid;

    grid-template-columns:
        1.3fr 1fr 1fr;

    grid-auto-rows: 230px;

    gap: 14px;
}


.portfolio-item {
    position: relative;

    overflow: hidden;

    background:
        #333;

    background-position: center;

    background-size: cover;

    transition: .5s;
}


.portfolio-item:hover {
    transform: scale(1.01);
}


.portfolio-item span {
    position: absolute;

    left: 25px;

    bottom: 20px;

    z-index: 2;

    color: white;

    font-family:
        "Playfair Display",
        serif;

    font-size: 24px;
}


.portfolio-item::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            transparent,
            rgba(0, 0, 0, .75)
        );
}


.portfolio-one {
    grid-row: span 2;

    background-image:
        url("https://images.unsplash.com/photo-1500648767791-00dcc994a43e?auto=format&fit=crop&w=900&q=90");
}


.portfolio-two {
    background-image:
        url("https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=800&q=90");
}


.portfolio-three {
    background-image:
        url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=800&q=90");
}


.portfolio-four {
    background-image:
        url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=800&q=90");
}


.portfolio-five {
    background-image:
        url("./images/photografic1.avif");
}



.booking {
    background: #c9a96e;

    padding: 65px 0;
}


.booking-inner {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;
}


.booking h2 {
    margin-bottom: 10px;
}


.booking .section-label {
    color: #111;
}


.booking-inner p:last-child {
    color: #493d29;
}


.booking-buttons {
    display: flex;

    gap: 12px;

    flex-shrink: 0;
}


.whatsapp-button,
.call-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 15px 22px;

    font-size: 13px;

    font-weight: 700;
}


.whatsapp-button {
    background: #25d366;

    color: white;
}


.call-button {
    background: #111;

    color: white;
}


/* =====================================================
   CONTACT
===================================================== */

.contact {
    background: #f7f5f1;
}


.contact-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 100px;
}


.contact-grid > div:first-child > p:last-child {
    color: #777;

    max-width: 500px;
}


.contact-info {
    display: flex;

    flex-direction: column;

    gap: 25px;
}


.contact-row {
    display: flex;

    gap: 18px;

    padding-bottom: 25px;

    border-bottom:
        1px solid #e6e2db;
}


.contact-row > span {
    font-size: 25px;
}


.contact-row small {
    display: block;

    color: #c9a96e;

    letter-spacing: 2px;

    font-size: 10px;

    font-weight: 700;

    margin-bottom: 4px;
}


.contact-row a,
.contact-row p {
    font-weight: 600;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
    background: #0c0c0c;

    color: white;

    padding:
        55px 0 25px;
}


.footer-inner {
    display: grid;

    grid-template-columns:
        1.3fr 1fr 1fr;

    gap: 30px;

    align-items: end;
}


.footer-logo {
    color: white;
}


.footer-inner > div > p {
    color: #888;

    font-size: 13px;

    margin-top: 10px;
}


.footer-links {
    display: flex;

    justify-content: center;

    gap: 25px;
}


.footer-links a {
    color: #aaa;

    font-size: 12px;
}


.footer-links a:hover {
    color: #c9a96e;
}


.copyright {
    color: #888;

    font-size: 12px;

    text-align: right;
}


/* =====================================================
   FLOATING WHATSAPP
===================================================== */

.floating-whatsapp {
    position: fixed;

    right: 25px;

    bottom: 25px;

    z-index: 999;

    width: 58px;
    height: 58px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: #25d366;

    color: white;

    font-size: 27px;

    box-shadow:
        0 8px 25px
        rgba(0, 0, 0, .25);

    animation:
        whatsappPulse 2s infinite;
}


@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow:
            0 8px 25px
            rgba(37, 211, 102, .25);
    }

    50% {
        box-shadow:
            0 8px 35px
            rgba(37, 211, 102, .60);
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    nav {
        display: none;

        position: absolute;

        top: 76px;

        left: 0;
        right: 0;

        margin: 0;

        padding: 25px;

        background: white;

        flex-direction: column;

        gap: 20px;

        border-bottom:
            1px solid #eee;
    }


    nav.active {
        display: flex;
    }


    .menu-toggle {
        display: block;

        margin-left: auto;

        margin-right: 15px;
    }


    .book-button {
        display: none;
    }


    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .booking-inner {
        flex-direction: column;

        align-items: flex-start;
    }


    .footer-inner {
        grid-template-columns: 1fr;

        text-align: center;
    }


    .footer-links {
        justify-content: center;
    }


    .copyright {
        text-align: center;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    .offer-popup {
        padding: 12px;
    }


    .offer-box {
        width: 100%;

        max-height: 94vh;

        display: block;

        overflow-y: auto;
    }


    .offer-image {
        height: 200px;

        min-height: 200px;
    }


    .offer-content {
        padding:
            28px 22px 30px;
    }


    .offer-camera {
        font-size: 28px;
    }


    .offer-content h1 {
        font-size: 38px;
    }


    .offer-description {
        font-size: 14px;

        margin-bottom: 22px;
    }


    .offer-close {
        width: 38px;
        height: 38px;

        top: 8px;
        right: 8px;

        font-size: 25px;
    }


    .logo {
        font-size: 18px;
    }


    .hero {
        min-height: 600px;
    }


    .hero h2 {
        font-size: 48px;
    }


    .hero-content > p:not(.hero-label) {
        font-size: 15px;
    }


    .section {
        padding: 70px 0;
    }


    .about-photo {
        height: 400px;
    }


    .stats {
        gap: 20px;

        justify-content:
            space-between;
    }


    .services-grid {
        grid-template-columns: 1fr;
    }


    .portfolio-grid {
        grid-template-columns: 1fr;

        grid-auto-rows: 240px;
    }


    .portfolio-one {
        grid-row: span 1;
    }


    .booking-buttons {
        width: 100%;

        flex-direction: column;
    }


    .whatsapp-button,
    .call-button {
        width: 100%;
    }


    .contact-grid {
        gap: 40px;
    }


    .floating-whatsapp {
        width: 54px;
        height: 54px;

        right: 18px;
        bottom: 18px;
    }

}
