/* =========================================================
   CONTACT PAGE
   Cafe & Restaurant
   Color Palette:
   Teal Green : #0F5C5C
   Dark Teal  : #083F3F
   Gray Teal  : #536B6B
   Gold       : #C9A45C
   White      : #FFFFFF
   Light      : #F5F7F6
========================================================= */


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Vazirmatn", "Tahoma", sans-serif;
    background: #ffffff;
    color: #183333;
    direction: rtl;
    overflow-x: hidden;
}



@font-face {
    font-family: "payda_woff";
    src: url("PeydaWeb-Bold.woff") format("woff"),
         url("PeydaWeb-Bold.woff") format("woff");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

* {
    font-family: "payda_woff", sans-serif;
}



a {
    text-decoration: none;
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-page {
    width: 100%;
    overflow: hidden;
}


/* =========================================================
   HERO
========================================================= */

.contact-hero {
    position: relative;
    min-height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #083F3F 0%,
            #0F5C5C 50%,
            #536B6B 100%
        );

    overflow: hidden;
}


/* Decorative circles */

.contact-hero::before {
    content: "";
    position: absolute;

    width: 500px;
    height: 500px;

    border: 1px solid rgba(201, 164, 92, 0.25);
    border-radius: 50%;

    top: -250px;
    right: -120px;
}

.contact-hero::after {
    content: "";
    position: absolute;

    width: 420px;
    height: 420px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;

    bottom: -230px;
    left: -120px;
}


.contact-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(255, 255, 255, 0.06),
            transparent 55%
        );
}


.contact-hero-content {
    position: relative;
    z-index: 2;

    width: min(800px, 90%);

    text-align: center;
    color: #ffffff;

    animation: heroFade 1s ease forwards;
}


.hero-small-title {
    display: inline-block;

    color: #C9A45C;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 18px;
}


.contact-hero-content h1 {
    font-size: clamp(38px, 5vw, 68px);

    line-height: 1.2;

    font-weight: 900;

    margin-bottom: 25px;
}


.contact-hero-content p {
    max-width: 650px;

    margin: 0 auto;

    font-size: 17px;

    line-height: 2;

    color: rgba(255, 255, 255, 0.82);
}


.hero-line {
    width: 70px;
    height: 3px;

    margin: 30px auto 0;

    background: #C9A45C;

    border-radius: 10px;
}


@keyframes heroFade {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   INTRO
========================================================= */

.contact-intro {
    padding: 100px 0 70px;

    background: #ffffff;

    text-align: center;
}


.section-heading {
    max-width: 750px;

    margin: 0 auto;
}


.section-subtitle {
    display: block;

    color: #C9A45C;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 12px;
}


.section-heading h2,
.location-details h2,
.social-content h2 {
    color: #083F3F;

    font-size: clamp(30px, 4vw, 46px);

    line-height: 1.4;

    font-weight: 900;

    margin-bottom: 18px;
}


.section-heading p,
.social-content p {
    color: #657878;

    font-size: 16px;

    line-height: 2;

    max-width: 650px;

    margin: 0 auto;
}


/* =========================================================
   CONTACT INFORMATION
========================================================= */

.contact-information {
    padding: 30px 0 100px;

    background: #ffffff;
}


.contact-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 22px;
}


/* Card */

.contact-card {
    position: relative;

    min-height: 280px;

    padding: 38px 28px;

    background: #F5F7F6;

    border: 1px solid rgba(15, 92, 92, 0.08);

    border-radius: 22px;

    text-align: center;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}


.contact-card::before {
    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: 100%;
    height: 3px;

    background: #C9A45C;

    transform: scaleX(0);

    transform-origin: center;

    transition: transform 0.35s ease;
}


.contact-card:hover {
    transform: translateY(-10px);

    background: #ffffff;

    box-shadow:
        0 20px 50px rgba(8, 63, 63, 0.12);
}


.contact-card:hover::before {
    transform: scaleX(1);
}


/* Icon */

.contact-icon {
    width: 72px;
    height: 72px;

    margin: 0 auto 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #0F5C5C;

    color: #ffffff;

    font-size: 25px;

    box-shadow:
        0 10px 25px rgba(15, 92, 92, 0.18);

    transition:
        transform 0.35s ease,
        background 0.35s ease;
}


.contact-card:hover .contact-icon {
    transform: rotate(-5deg) scale(1.08);

    background: #C9A45C;
}


.contact-card-content > span {
    display: block;

    color: #C9A45C;

    font-size: 12px;

    font-weight: 700;

    margin-bottom: 8px;
}


.contact-card-content h3 {
    color: #083F3F;

    font-size: 20px;

    margin-bottom: 15px;

    font-weight: 800;
}


.contact-card-content p {
    color: #657878;

    line-height: 1.9;

    font-size: 14px;
}


.contact-card-content a {
    display: block;

    color: #536B6B;

    font-size: 14px;

    margin: 8px 0;

    transition: color 0.25s ease;
}


.contact-card-content a:hover {
    color: #C9A45C;
}


.contact-card-content strong {
    display: block;

    margin-top: 8px;

    color: #0F5C5C;

    font-size: 14px;
}


/* =========================================================
   RESERVATION CTA
========================================================= */

.reservation-section {
    padding: 0 0 100px;

    background: #ffffff;
}


.reservation-box {
    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding: 55px 65px;

    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            #083F3F,
            #0F5C5C
        );

    box-shadow:
        0 25px 60px rgba(8, 63, 63, 0.18);
}


.reservation-box::before {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    border: 1px solid rgba(201, 164, 92, 0.25);

    border-radius: 50%;

    left: -100px;
    bottom: -180px;
}


.reservation-box::after {
    content: "";

    position: absolute;

    width: 200px;
    height: 200px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;

    right: -80px;
    top: -120px;
}


.reservation-content {
    position: relative;
    z-index: 2;
}


.reservation-content > span {
    display: block;

    color: #C9A45C;

    font-size: 13px;

    font-weight: 800;

    margin-bottom: 10px;
}


.reservation-content h2 {
    color: #ffffff;

    font-size: clamp(25px, 3vw, 38px);

    line-height: 1.5;

    margin-bottom: 10px;
}


.reservation-content p {
    max-width: 650px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 15px;

    line-height: 2;
}


.reservation-button {
    position: relative;
    z-index: 2;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 15px;

    min-width: 170px;

    padding: 17px 28px;

    border-radius: 12px;

    background: #C9A45C;

    color: #083F3F;

    font-size: 15px;

    font-weight: 800;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.reservation-button:hover {
    transform: translateY(-4px);

    background: #ffffff;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.18);
}


/* =========================================================
   LOCATION
========================================================= */

.location-section {
    padding: 100px 0;

    background: #F5F7F6;
}


.location-grid {
    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 70px;

    align-items: center;
}


/* Map */

.map-wrapper {
    min-height: 520px;
}


.map-placeholder {
    position: relative;

    width: 100%;
    height: 520px;

    overflow: hidden;

    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            #DDE6E4,
            #C8D6D4
        );

    box-shadow:
        0 25px 60px rgba(8, 63, 63, 0.12);

    display: flex;

    align-items: center;
    justify-content: center;
}


/* Fake map lines */

.map-placeholder::before,
.map-placeholder::after {
    content: "";

    position: absolute;

    width: 160%;
    height: 80px;

    border-top: 2px solid rgba(15, 92, 92, 0.12);
    border-bottom: 2px solid rgba(15, 92, 92, 0.08);

    transform: rotate(-25deg);
}


.map-placeholder::before {
    top: 25%;
    right: -30%;
}


.map-placeholder::after {
    bottom: 25%;
    left: -30%;

    transform: rotate(25deg);
}


.map-content {
    position: relative;

    z-index: 2;

    width: min(360px, 85%);

    padding: 35px;

    text-align: center;

    background: rgba(255, 255, 255, 0.93);

    backdrop-filter: blur(10px);

    border-radius: 22px;

    box-shadow:
        0 15px 40px rgba(8, 63, 63, 0.12);
}


.map-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #0F5C5C;

    color: #C9A45C;

    border-radius: 50%;

    font-size: 25px;
}


.map-content h3 {
    color: #083F3F;

    font-size: 20px;

    margin-bottom: 10px;
}


.map-content p {
    color: #657878;

    font-size: 14px;

    line-height: 1.9;

    margin-bottom: 20px;
}


.map-button {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 13px 20px;

    background: #C9A45C;

    color: #083F3F;

    border-radius: 10px;

    font-size: 13px;

    font-weight: 800;

    transition: 0.3s ease;
}


.map-button:hover {
    background: #0F5C5C;

    color: #ffffff;
}


/* Location Details */

.location-details {
    max-width: 520px;
}


.location-details > p {
    color: #657878;

    font-size: 15px;

    line-height: 2;

    margin-bottom: 35px;
}


.location-item {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    margin-bottom: 25px;
}


.location-item-icon {
    flex-shrink: 0;

    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: #0F5C5C;

    color: #C9A45C;

    font-size: 18px;
}


.location-item span {
    display: block;

    color: #C9A45C;

    font-size: 12px;

    font-weight: 800;

    margin-bottom: 5px;
}


.location-item p,
.location-item a {
    color: #536B6B;

    font-size: 14px;

    line-height: 1.9;

    transition: color 0.25s ease;
}


.location-item a:hover {
    color: #C9A45C;
}


/* =========================================================
   SOCIAL
========================================================= */

.social-section {
    padding: 110px 0;

    background: #ffffff;

    text-align: center;
}


.social-content {
    max-width: 750px;

    margin: 0 auto;
}


.social-content p {
    margin-bottom: 35px;
}


.social-links {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 15px;
}


.social-links a {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: #F5F7F6;

    color: #0F5C5C;

    font-size: 21px;

    border: 1px solid rgba(15, 92, 92, 0.08);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}


.social-links a:hover {
    transform: translateY(-7px);

    background: #0F5C5C;

    color: #C9A45C;

    box-shadow:
        0 12px 30px rgba(15, 92, 92, 0.16);
}


/* =========================================================
   FOOTER
========================================================= */

.contact-footer {
    background: #083F3F;

    color: #ffffff;

    padding: 55px 0 25px;
}


.footer-content {
    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 40px;

    padding-bottom: 40px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.footer-brand {
    max-width: 450px;
}


.footer-brand h3 {
    color: #C9A45C;

    font-size: 25px;

    margin-bottom: 12px;
}


.footer-brand p {
    color: rgba(255, 255, 255, 0.65);

    font-size: 14px;

    line-height: 2;
}


.footer-contact {
    display: flex;

    flex-direction: column;

    gap: 15px;
}


.footer-contact a {
    display: flex;

    align-items: center;

    gap: 12px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 14px;

    transition: color 0.25s ease;
}


.footer-contact i {
    color: #C9A45C;
}


.footer-contact a:hover {
    color: #ffffff;
}


.footer-bottom {
    padding-top: 25px;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color: rgba(255, 255, 255, 0.45);

    font-size: 12px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .location-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .location-details {
        max-width: 800px;

        margin: 0 auto;
    }


    .map-wrapper {
        min-height: 450px;
    }


    .map-placeholder {
        height: 450px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .container {
        width: min(100% - 28px, 1200px);
    }


    /* HERO */

    .contact-hero {
        min-height: 460px;

        padding: 60px 0;
    }


    .contact-hero-content h1 {
        font-size: 36px;
    }


    .contact-hero-content p {
        font-size: 14px;

        line-height: 2;
    }


    /* INTRO */

    .contact-intro {
        padding: 70px 0 40px;
    }


    .section-heading h2,
    .location-details h2,
    .social-content h2 {
        font-size: 30px;
    }


    .section-heading p,
    .social-content p {
        font-size: 14px;
    }


    /* CARDS */

    .contact-information {
        padding: 20px 0 70px;
    }


    .contact-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }


    .contact-card {
        min-height: auto;

        padding: 32px 22px;
    }


    /* RESERVATION */

    .reservation-section {
        padding-bottom: 70px;
    }


    .reservation-box {
        flex-direction: column;

        align-items: flex-start;

        padding: 40px 28px;

        border-radius: 22px;

        gap: 25px;
    }


    .reservation-content h2 {
        font-size: 26px;
    }


    .reservation-content p {
        font-size: 14px;
    }


    .reservation-button {
        width: 100%;
    }


    /* LOCATION */

    .location-section {
        padding: 70px 0;
    }


    .map-wrapper {
        min-height: 380px;
    }


    .map-placeholder {
        height: 380px;

        border-radius: 22px;
    }


    .map-content {
        padding: 25px 20px;
    }


    /* SOCIAL */

    .social-section {
        padding: 75px 0;
    }


    .social-links {
        gap: 10px;
    }


    .social-links a {
        width: 52px;
        height: 52px;

        font-size: 19px;

        border-radius: 14px;
    }


    /* FOOTER */

    .contact-footer {
        padding: 45px 0 20px;
    }


    .footer-content {
        flex-direction: column;

        gap: 30px;
    }


    .footer-bottom {
        flex-direction: column;

        align-items: center;

        text-align: center;

        gap: 10px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .contact-hero-content h1 {
        font-size: 31px;
    }


    .hero-small-title {
        font-size: 12px;
    }


    .contact-card {
        padding: 28px 18px;
    }


    .contact-icon {
        width: 65px;
        height: 65px;
    }


    .reservation-box {
        padding: 32px 22px;
    }


    .reservation-content h2 {
        font-size: 23px;
    }


    .map-placeholder {
        height: 350px;
    }

}


/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

}





.site-footer {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(176, 130, 44, 0.10),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(38, 63, 56, 0.55),
            transparent 35%
        ),
        #0b1512;

    color: #fff;

    direction: rtl;

    border-top: 1px solid rgba(176, 130, 44, 0.18);
}


/* =========================================
   DECORATIVE GLOW
========================================= */

.footer-glow {
    position: absolute;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(100px);

    opacity: .25;
}

.footer-glow-1 {
    top: -250px;
    right: -100px;

    background: #b0822c;
}

.footer-glow-2 {
    bottom: -250px;
    left: -100px;

    background: #29463d;
}


/* =========================================
   CONTAINER
========================================= */

.footer-container {
    position: relative;

    z-index: 2;

    width: min(1400px, 90%);

    margin: auto;

    padding: 90px 0 70px;

    display: grid;

    grid-template-columns:
        1.4fr
        .8fr
        .9fr
        1.2fr;

    gap: 60px;
}


/* =========================================
   BRAND
========================================= */

.footer-brand {
    max-width: 340px;
}


.footer-logo {
    display: flex;

    align-items: baseline;

    gap: 10px;

    margin-bottom: 22px;
}


.footer-logo span {
    color: rgba(255, 255, 255, .45);

    font-size: 10px;

    letter-spacing: 4px;
}


.footer-logo strong {
    color: #b0822c;

    font-family: Georgia, serif;

    font-size: 36px;

    letter-spacing: 3px;

    text-shadow:
        0 0 25px rgba(176, 130, 44, .15);
}


.footer-brand-text {
    color: rgba(255, 255, 255, .55);

    font-size: 13px;

    line-height: 2.2;

    margin-bottom: 28px;
}


/* =========================================
   SOCIALS
========================================= */

.footer-socials {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}


.footer-socials a {
    padding: 8px 13px;

    border: 1px solid rgba(255, 255, 255, .12);

    border-radius: 30px;

    color: rgba(255, 255, 255, .55);

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 9px;

    letter-spacing: 1px;

    transition:
        color .3s ease,
        border-color .3s ease,
        background .3s ease,
        transform .3s ease;
}


.footer-socials a:hover {
    color: #fff;

    border-color: #b0822c;

    background: rgba(176, 130, 44, .10);

    transform: translateY(-3px);
}


/* =========================================
   FOOTER COLUMNS
========================================= */

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 14px;
}


.footer-column h3 {
    position: relative;

    margin: 0 0 10px;

    color: #fff;

    font-size: 14px;

    font-weight: 800;
}


.footer-column h3::after {
    content: "";

    position: absolute;

    right: 0;

    bottom: -8px;

    width: 28px;
    height: 1px;

    background: #b0822c;
}


.footer-column a,
.footer-column span {
    color: rgba(255, 255, 255, .48);

    font-size: 12px;

    text-decoration: none;

    transition:
        color .3s ease,
        transform .3s ease;
}


.footer-column a:hover {
    color: #b0822c;

    transform: translateX(-5px);
}


/* =========================================
   CTA
========================================= */

.footer-cta {
    padding: 28px;

    border: 1px solid rgba(176, 130, 44, .18);

    background:
        linear-gradient(
            145deg,
            rgba(176, 130, 44, .08),
            rgba(255, 255, 255, .02)
        );

    backdrop-filter: blur(10px);

    border-radius: 18px;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .05),
        0 20px 50px rgba(0, 0, 0, .18);
}


.footer-cta-label {
    display: block;

    margin-bottom: 15px;

    color: #b0822c;

    font-family: Arial, sans-serif;

    font-size: 8px;

    letter-spacing: 3px;
}


.footer-cta h3 {
    margin: 0 0 25px;

    color: #fff;

    font-size: 22px;

    line-height: 1.8;
}


.footer-cta h3 span {
    color: #b0822c;
}


.footer-reservation-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    padding: 12px 20px;

    border-radius: 50px;

    background: #b0822c;

    color: #fff;

    text-decoration: none;

    font-size: 11px;

    font-weight: 800;

    box-shadow:
        0 10px 30px rgba(176, 130, 44, .2);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.footer-reservation-btn span {
    font-size: 17px;

    transition:
        transform .3s ease;
}


.footer-reservation-btn:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(176, 130, 44, .35);
}


.footer-reservation-btn:hover span {
    transform: translateX(-5px);
}


/* =========================================
   DEVELOPER SIGNATURE
========================================= */

.footer-developer {
    position: relative;

    z-index: 5;

    width: min(1200px, 90%);

    margin: 0 auto;

    display: flex;

    align-items: center;

    gap: 25px;
}


.developer-line {
    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(176, 130, 44, .45),
            transparent
        );
}


.developer-content {
    min-width: 320px;

    text-align: center;

    padding: 15px 25px;

    border: 1px solid rgba(176, 130, 44, .16);

    border-radius: 100px;

    background:
        linear-gradient(
            90deg,
            rgba(176, 130, 44, .03),
            rgba(176, 130, 44, .09),
            rgba(176, 130, 44, .03)
        );

    box-shadow:
        0 0 50px rgba(176, 130, 44, .04);
}


.developer-small {
    display: block;

    margin-bottom: 5px;

    color: rgba(255, 255, 255, .30);

    font-family: Arial, sans-serif;

    font-size: 7px;

    letter-spacing: 4px;
}


.developer-content p {
    margin: 0 0 3px;

    color: rgba(255, 255, 255, .55);

    font-size: 10px;
}


.developer-brand {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: rgba(255, 255, 255, .45);

    text-decoration: none;

    font-size: 10px;
}


.developer-brand strong {
    color: #b0822c;

    font-size: 15px;

    font-weight: 900;

    transition:
        text-shadow .3s ease;
}


.developer-brand:hover strong {
    text-shadow:
        0 0 20px rgba(176, 130, 44, .5);
}


/* =========================================
   MANAGER
========================================= */

.developer-manager {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin-right: 10px;

    padding-right: 10px;

    border-right: 1px solid rgba(255, 255, 255, .12);

    color: rgba(255, 255, 255, .32);

    font-size: 8px;
}


.developer-manager strong {
    color: rgba(255, 255, 255, .72);

    font-size: 9px;
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
    position: relative;

    z-index: 5;

    width: min(1400px, 90%);

    margin: 55px auto 0;

    padding: 22px 0;

    border-top:
        1px solid rgba(255, 255, 255, .07);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    color: rgba(255, 255, 255, .28);

    font-family: Arial, sans-serif;

    font-size: 9px;
}


.footer-bottom p {
    margin: 0;
}


.footer-credit span {
    color: #b0822c;

    font-size: 13px;
}


.footer-credit strong {
    color: rgba(255, 255, 255, .5);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .footer-container {
        grid-template-columns:
            1fr 1fr;

        gap: 50px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-cta {
        max-width: 400px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .footer-container {
        width: 88%;

        padding: 65px 0 45px;

        grid-template-columns: 1fr;

        gap: 42px;

        text-align: center;
    }


    .footer-brand {
        margin: auto;
    }


    .footer-logo {
        justify-content: center;
    }


    .footer-socials {
        justify-content: center;
    }


    .footer-column {
        align-items: center;
    }


    .footer-column h3::after {
        right: 50%;

        transform: translateX(50%);
    }


    .footer-cta {
        width: 100%;

        max-width: 430px;

        margin: auto;
    }


    .footer-developer {
        width: 88%;

        gap: 10px;
    }


    .developer-content {
        min-width: 0;

        width: 100%;

        padding: 17px 12px;

        border-radius: 20px;
    }


    .developer-manager {
        display: flex;

        justify-content: center;

        margin: 8px 0 0;

        padding: 0;

        border: 0;
    }


    .footer-bottom {
        width: 88%;

        margin-top: 40px;

        padding: 20px 0;

        flex-direction: column;

        justify-content: center;

        text-align: center;

        line-height: 2;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .footer-logo strong {
        font-size: 30px;
    }


    .footer-cta {
        padding: 23px 18px;
    }


    .developer-small {
        font-size: 6px;

        letter-spacing: 3px;
    }


    .developer-content p {
        font-size: 9px;
    }


    .developer-brand strong {
        font-size: 13px;
    }

}


/* =========================================
   ACCESSIBILITY
========================================= */

@media (prefers-reduced-motion: reduce) {

    .footer-socials a,
    .footer-column a,
    .footer-reservation-btn,
    .footer-reservation-btn span,
    .developer-brand strong {

        transition: none;
    }

}
