/* =========================
   GLOBAL
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #0b0a09;
    color: #f4efe7;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    width: 100%;
    display: block;
}

.section {
    padding: 120px 7%;
}

.section-label {
    color: #b9854c;
    font-size: 11px;
    letter-spacing: 4px;
    font-weight: 500;
    margin-bottom: 20px;
}


/* =========================
   NAVBAR
========================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;

    background: rgba(8, 7, 6, 0.55);
    backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo {
    width: 150px;
}

.logo img {
    height: 65px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 34px;
    align-items: center;
}

.nav-links a {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ddd5ca;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #c18b51;
}

.nav-button {
    border: 1px solid #b9854c;
    padding: 13px 20px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: 0.3s;
}

.nav-button:hover {
    background: #b9854c;
    color: #0b0a09;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
}


/* =========================
   HERO
========================= */

.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    overflow: hidden;
}

html {
    scroll-behavior: smooth;
}

/* HERO IMAGE */

.hero-image {
    position: absolute;
    inset: 0;

    background-image:
        url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=2200&q=90");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    transform: scale(1.03);

    transition:
        opacity 1.2s ease,
        transform 6s ease;

    z-index: 0;
}

.hero-image {
    animation: heroZoom 8s ease-in-out infinite alternate;
}

@keyframes heroZoom {

    from {
        transform: scale(1.03);
    }

    to {
        transform: scale(1.08);
    }

}


/* DARK OVERLAY */

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.68),
            rgba(0,0,0,0.25),
            rgba(0,0,0,0.78)
        );

    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;

    animation: heroReveal 1.5s ease forwards;
}

.hero-location {
    font-size: 10px;
    letter-spacing: 5px;
    color: #c18b51;
    margin-bottom: 25px;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(70px, 10vw, 145px);
    font-weight: 500;
    line-height: 0.85;
    text-transform: uppercase;
}

.hero-line {
    width: 70px;
    height: 1px;
    background: #b9854c;
    margin: 35px auto 25px;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 23px;
    font-style: italic;
    color: #e6ddd2;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 40px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 220px;
    height: 55px;

    box-sizing: border-box;

    text-decoration: none;

    font-size: 11px;
    letter-spacing: 2px;

    transition: all 0.3s ease;
}

.hero-btn-primary {
    background: #b9823b;
    border: 1px solid #b9823b;
    color: #111;
}

.hero-btn-primary:hover {
    background: transparent;
    color: #b9823b;
}

.hero-btn-outline {
    background: transparent;
    border: 1px solid #f4efe7;
    color: #f4efe7;
}

.hero-btn-outline:hover {
    background: #f4efe7;
    color: #111;
}

.scroll-indicator {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;

    color: #aaa;
    font-size: 8px;
    letter-spacing: 3px;
}

.scroll-line {
    width: 1px;
    height: 45px;
    background: #b9854c;
}


/* =========================
   ABOUT
========================= */

.about {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: center;
}

.about-image {
    height: 650px;
    overflow: hidden;
}

.about-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.about-image:hover img {
    transform: scale(1.04);
}

.about-content h2,
.menu-heading h2,
.reservation-heading h2,
.contact h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(50px, 5vw, 80px);
    font-weight: 500;
    line-height: 0.95;
    margin-bottom: 30px;
}

.gold-line {
    width: 55px;
    height: 1px;
    background: #b9854c;
    margin-bottom: 30px;
}

.about-content p {
    color: #aaa29a;
    line-height: 1.9;
    font-size: 14px;
    margin-bottom: 20px;
    max-width: 500px;
}

.text-link {
    display: inline-flex;
    gap: 20px;
    margin-top: 20px;

    color: #c18b51;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 2px;
}

.text-link span {
    transition: 0.3s;
}

.text-link:hover span {
    transform: translateX(7px);
}

/* =====================================================
   MENU SECTION
===================================================== */

.menu {
    width: 100%;
    padding: 140px 6% 160px;
    box-sizing: border-box;
    background: #0b0b0b;
}


/* =========================
   MENU HEADING
========================= */

.menu-heading {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 80px;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
}

.menu-heading .section-label {
    margin-bottom: 20px;
}

.menu-heading h2 {
    margin: 0 auto 30px;

    max-width: 950px;

    font-size: clamp(52px, 7vw, 105px);
    line-height: 0.95;
    font-weight: 400;

    letter-spacing: -2px;
}

.menu-heading > p:last-child {
    max-width: 650px;
    margin: 0 auto;

    font-size: 16px;
    line-height: 1.8;

    color: #8f8b87;
}


/* =========================
   MENU CARDS
========================= */

.menu-cards {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}


/* =========================
   INDIVIDUAL CARD
========================= */

.menu-card {
    width: 100%;
    background: #151412;

    overflow: hidden;

    box-sizing: border-box;

    opacity: 1;
    transform: none;
}


/* =========================
   CARD IMAGE
========================= */

.menu-card-image {
    width: 100%;
    height: 420px;

    overflow: hidden;
}

.menu-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.8s ease;
}


/* Image zoom on hover */

.menu-card:hover .menu-card-image img {
    transform: scale(1.05);
}


/* =========================
   CARD CONTENT
========================= */

.menu-card-content {
    padding: 35px 32px 40px;
}

.menu-card-content span {
    display: block;

    margin-bottom: 18px;

    font-size: 12px;
    letter-spacing: 3px;

    color: #b9823b;
}

.menu-card-content h3 {
    margin: 0 0 18px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 38px;
    font-weight: 400;

    color: #f4efe7;
}

.menu-card-content p {
    margin: 0 0 30px;

    max-width: 420px;

    font-size: 15px;
    line-height: 1.8;

    color: #8f8b87;
}

.menu-card-content a {
    display: inline-block;

    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;

    color: #b9823b;

    text-decoration: none;

    transition: letter-spacing 0.3s ease,
                color 0.3s ease;
}

.menu-card-content a:hover {
    letter-spacing: 3.5px;
    color: #d3a15f;
}


/* =========================
   MENU CARD HOVER
========================= */

.menu-card {
    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
}

.menu-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.35);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

    .menu {
        padding: 110px 5% 130px;
    }

    .menu-heading {
        margin-bottom: 60px;
    }

    .menu-heading h2 {
        font-size: clamp(48px, 7vw, 80px);
    }

    .menu-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    .menu {
        padding: 90px 20px 110px;
    }

    .menu-heading {
        padding: 0;
        margin-bottom: 50px;
    }

    .menu-heading h2 {
        font-size: clamp(44px, 13vw, 65px);
        line-height: 0.98;
        letter-spacing: -1px;
    }

    .menu-heading > p:last-child {
        font-size: 14px;
        line-height: 1.7;
    }

    .menu-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .menu-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .menu-card-image {
        height: 350px;
    }

    .menu-card-content {
        padding: 28px 25px 35px;
    }

    .menu-card-content h3 {
        font-size: 32px;
    }

}


/* =====================================================
   SMALL PHONES
===================================================== */

@media (max-width: 450px) {

    .menu {
        padding: 75px 16px 90px;
    }

    .menu-heading h2 {
        font-size: 42px;
    }

    .menu-card-image {
        height: 300px;
    }

}

/* =========================
   EXPERIENCE
========================= */

.experience {
    height: 700px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    position: relative;

    background:
        url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=2200&q=90")
        center/cover fixed;
}

.experience-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.experience-content {
    position: relative;
    z-index: 2;
}

.experience h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(60px, 8vw, 110px);
    font-weight: 500;
    line-height: 0.85;
}

.experience p:last-child {
    margin-top: 30px;
    color: #ddd;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-style: italic;
}


/* =========================
   RESERVATIONS
========================= */

.reservations {
    background: #0e0d0b;
}

.reservation-heading {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.reservation-heading p:last-child {
    color: #9e9890;
    font-size: 14px;
    line-height: 1.8;
}

.booking-form {
    max-width: 950px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.form-group,
.form-full {
    display: flex;
    flex-direction: column;
}

.form-full {
    grid-column: span 3;
}

.booking-form label {
    color: #b9854c;
    text-transform: uppercase;
    font-size: 9px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid #49443e;

    padding: 14px 0;

    color: white;
    font-family: inherit;
    outline: none;

    transition: 0.3s;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: #b9854c;
}

.booking-form select option {
    background: #151310;
}

.booking-form textarea {
    height: 100px;
    resize: none;
}

.booking-button {
    grid-column: span 3;

    margin-top: 20px;
    padding: 18px;

    background: #b9854c;
    color: #0b0a09;

    border: none;

    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 10px;

    cursor: pointer;

    transition: 0.3s;
}

.booking-button:hover {
    background: #d2a66d;
}


/* =========================
   CONTACT
========================= */

.contact {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    padding: 0;
}

.contact-content {
    padding: 120px 10%;
}

.contact-content > p {
    color: #aaa29a;
    line-height: 1.9;
    font-size: 14px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 30px 0;
}

.contact-details a {
    color: #c18b51;
    font-size: 13px;
}

.opening-hours h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 27px;
    font-weight: 500;
    margin-bottom: 15px;
}

.opening-hours p {
    color: #aaa29a;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.map {
    min-height: 650px;
    background:
        linear-gradient(rgba(20,18,15,0.8), rgba(20,18,15,0.8)),
        url("https://images.unsplash.com/photo-1506157786151-b8491531f063?auto=format&fit=crop&w=1600&q=80")
        center/cover;
}

.map-placeholder {
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.map-placeholder i {
    font-size: 30px;
    color: #b9854c;
    margin-bottom: 15px;
}

.map-placeholder p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
}

.map-placeholder span {
    color: #999;
    font-size: 11px;
    letter-spacing: 2px;
    margin-top: 8px;
}


/* =========================
   FOOTER
========================= */

footer {
    padding: 70px 7%;
    text-align: center;
    background: #080706;
    border-top: 1px solid #28231e;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    letter-spacing: 4px;
}

footer > p {
    color: #777;
    font-size: 11px;
    margin-top: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.social-links a {
    width: 40px;
    height: 40px;

    border: 1px solid #40382f;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #b9854c;

    transition: 0.3s;
}

.social-links a:hover {
    background: #b9854c;
    color: #080706;
}

.copyright {
    font-size: 9px;
    letter-spacing: 1px;
}


/* =========================
   ANIMATION
========================= */

@keyframes heroReveal {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

    .nav-links,
    .nav-button {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .about {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .menu-cards {
        grid-template-columns: 1fr;
    }

    .menu-card-image {
        height: 500px;
    }

    .contact {
        grid-template-columns: 1fr;
    }

    .map {
        min-height: 450px;
    }

}


@media (max-width: 650px) {

    .navbar {
        height: 75px;
    }

    .logo {
        width: 120px;
    }

    .hero {
        min-height: 650px;
    }

    .hero h1 {
        font-size: 65px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 220px;
        margin: 35px auto 0;
    }

    .section {
        padding: 80px 6%;
    }

    .about-image {
        height: 450px;
    }

    .menu-card-image {
        height: 400px;
    }

    .booking-form {
        grid-template-columns: 1fr;
    }

    .form-full,
    .booking-button {
        grid-column: span 1;
    }

    .contact-content {
        padding: 80px 8%;
    }

}

/* =========================
   SCROLL REVEAL ANIMATIONS
========================= */

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition:
        opacity 1s ease,
        transform 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* Image reveal */

.reveal-image {
    opacity: 0;
    transform: scale(1.08);
    transition:
        opacity 1.2s ease,
        transform 1.2s ease;
}

.reveal-image.active {
    opacity: 1;
    transform: scale(1);
}


/* Slight delays */

.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.45s;
}

@media (max-width: 900px) {

    .menu-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .menu-card img {
        height: 320px;
    }

}

/* =====================================================
   RESERVATIONS
===================================================== */

.reservation {
    background: #11100f;
    padding: 150px 6%;
    position: relative;
}


.reservation-inner {
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 100px;

    align-items: start;
}


/* INTRO */

.reservation-intro {
    position: sticky;
    top: 140px;
}


.reservation-intro h2 {
    margin: 20px 0 30px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(55px, 6vw, 90px);
    line-height: 0.95;

    font-weight: 400;

    color: #f4efe7;
}


.reservation-intro > p:last-child {
    max-width: 400px;

    color: #8f8b87;

    line-height: 1.8;
}


/* FORM */

.reservation-form-wrapper {
    background: #181614;

    border: 1px solid rgba(185, 130, 59, 0.25);

    padding: 50px;
}


.booking-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}


.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}


.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.form-group.full {
    width: 100%;
}


.form-group label {
    font-size: 10px;

    letter-spacing: 2.5px;

    color: #b9823b;
}


.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    box-sizing: border-box;

    padding: 16px 0;

    border: none;
    border-bottom: 1px solid #3a3734;

    background: transparent;

    color: #f4efe7;

    font-family: inherit;

    font-size: 15px;

    outline: none;

    transition:
        border-color 0.3s ease;
}


.form-group textarea {
    resize: vertical;
    min-height: 100px;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #68635e;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #b9823b;
}


.form-group select option {
    background: #181614;
    color: #f4efe7;
}


/* BUTTON */

.booking-submit {
    margin-top: 10px;

    width: 100%;

    padding: 20px 25px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    border: 1px solid #b9823b;

    background: #b9823b;

    color: #11100f;

    font-family: inherit;

    font-size: 11px;

    letter-spacing: 2.5px;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}


.booking-submit span {
    font-size: 20px;
}


.booking-submit:hover {
    background: transparent;
    color: #b9823b;
}


.booking-note {
    margin: 0;

    text-align: center;

    font-size: 11px;

    color: #68635e;
}


/* SUCCESS */

.booking-success {
    display: none;

    text-align: center;

    padding: 50px 20px;
}


.booking-success.show {
    display: block;

    animation: successReveal 0.7s ease forwards;
}


@keyframes successReveal {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


.success-number {
    display: block;

    margin-bottom: 25px;

    font-size: 11px;

    letter-spacing: 4px;

    color: #b9823b;
}


.booking-success h3 {
    margin: 0 auto 25px;

    max-width: 600px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 42px;

    font-weight: 400;

    color: #f4efe7;
}


.booking-success p {
    max-width: 500px;

    margin: 0 auto 35px;

    color: #8f8b87;

    line-height: 1.8;
}


.booking-success button {
    background: transparent;

    border: none;

    color: #b9823b;

    font-family: inherit;

    font-size: 10px;

    letter-spacing: 2px;

    cursor: pointer;
}


/* =====================================================
   RESERVATION MOBILE
===================================================== */

@media (max-width: 900px) {

    .reservation {
        padding: 100px 5%;
    }

    .reservation-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .reservation-intro {
        position: static;
    }

}


@media (max-width: 600px) {

    .reservation {
        padding: 80px 20px;
    }

    .reservation-form-wrapper {
        padding: 30px 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .reservation-intro h2 {
        font-size: 52px;
    }

    .booking-success h3 {
        font-size: 34px;
    }

}

/* =====================================================
   MOBILE HERO 
===================================================== */

@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden;
    }

    .hero {
        position: relative;
        width: 100%;
        height: 100svh;
        min-height: 680px;
        overflow: hidden;
    }

    .hero-image {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    /* ---------------- HERO CONTENT ---------------- */

    .hero-content {
        position: absolute;
        top: 48%;
        left: 0;

        width: 100%;
        max-width: 100%;

        padding: 0 22px;
        margin: 0;

        box-sizing: border-box;

        transform: translateY(-50%);

        text-align: center;

        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Location */

    .hero-location {
        font-size: 9px;
        letter-spacing: 3px;

        margin: 0 0 16px;

        white-space: nowrap;
    }

    /* ---------------- TITLE ---------------- */

    .hero h1 {
        width: 100%;
        max-width: 100%;

        margin: 0;

        font-size: clamp(52px, 16vw, 72px);
        line-height: 0.82;

        letter-spacing: -1px;

        text-align: center;

        word-break: normal;
        overflow-wrap: normal;
    }

    /* ---------------- LINE ---------------- */

    .hero-line {
        width: 70px;
        height: 1px;

        margin: 20px auto 18px;
    }

    /* ---------------- SUBTITLE ---------------- */

    .hero-subtitle {
        width: 100%;
        max-width: 285px;

        margin: 0 auto;

        font-size: 15px;
        line-height: 1.45;

        text-align: center;
    }

    /* ---------------- BUTTONS ---------------- */

    .hero-buttons {
        width: 100%;

        margin-top: 26px;

        display: flex;
        flex-direction: column;

        align-items: center;

        gap: 10px;
    }

    .hero-btn {
        width: 100%;
        max-width: 250px;

        height: 52px;

        display: flex;
        align-items: center;
        justify-content: center;

        box-sizing: border-box;

        font-size: 10px;
        letter-spacing: 2px;

        white-space: nowrap;
    }

    /* ---------------- SCROLL INDICATOR ---------------- */

    .scroll-indicator {
        position: absolute;

        left: 0;
        bottom: 25px;

        width: 100%;

        text-align: center;
    }

    .scroll-indicator span {
        font-size: 7px;
        letter-spacing: 3px;
    }

    .scroll-line {
        width: 1px;
        height: 28px;

        margin: 9px auto 0;
    }
}

/* =========================
   MOBILE MENU
   ========================= */

.menu-toggle {
    display: none;

    background: none;
    border: none;

    color: #ffffff;

    font-size: 24px;

    cursor: pointer;

    z-index: 1001;
}


@media (max-width: 900px) {

    .nav-links {
        position: fixed;

        top: 0;
        right: -100%;

        width: 75%;
        height: 100vh;

        display: flex;
        flex-direction: column;

        align-items: center;
        justify-content: center;

        gap: 30px;

        background: #17130f;

        transition: right 0.35s ease;

        z-index: 1000;
    }


    .nav-links.active {
        right: 0;
    }


    .nav-links a {
        font-size: 18px;
    }


    .nav-button {
        display: none;
    }


    .menu-toggle {
        display: block;
    }

}
