/* ==========================================================================
   Reset Styles
   - Normalización de estilos por defecto
   - Box sizing global
   - Reset de elementos básicos
========================================================================== */
@charset "utf-8";

*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
    all: unset;
    display: revert;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

a,
button {
    cursor: revert;
}

ol,
ul,
menu {
    list-style: none;
}

img {
    max-inline-size: 100%;
    max-block-size: 100%;
}

table {
    border-collapse: collapse;
}

input,
textarea {
    -webkit-user-select: auto;
    user-select: auto;
}

textarea {
    white-space: revert;
}

meter {
    -webkit-appearance: revert;
    appearance: revert;
}

:where(pre) {
    all: revert;
}

::placeholder {
    color: unset;
}

::marker {
    content: initial;
}

:where([hidden]) {
    display: none;
}

:where([contenteditable]:not([contenteditable="false"])) {
    -moz-user-modify: read-write;
    -webkit-user-modify: read-write;
    overflow-wrap: break-word;
    -webkit-line-break: after-white-space;
    line-break: after-white-space;
    -webkit-user-select: auto;
    user-select: auto;
}

:where([draggable="true"]) {
    -webkit-user-drag: element;
}

:where(dialog:modal) {
    all: revert;
    display: none;
}

/* ==========================================================================
   Tipografía
   - Declaración de fuentes personalizadas
   - PP Neue Montreal Mono
   - Canela
   - PP Neue Montreal
   - Hiker TM
   - Suez One
========================================================================== */
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

/* ==========================================================================
   Variables Globales
   - Colores principales
   - Tipografía
========================================================================== */
:root {
    /* Colors */
    --color-primary: #2D425F;
    --color-secondary: #5EC0C3;
    --color-white: #ffffff;
    --color-light: #fafafa;
    --color-black: #000000;

    /* Typography */
    --font-gotham: 'Gotham', sans-serif;
    --font-alga-extralight: 'alga-extralight', serif;
    --font-great-vibes: 'great-vibes', sans-serif;
}

html {
    font-size: 10px;
    scroll-behavior: smooth;
}

body {
    font-size: 1.8rem;
    line-height: 1;
    color: var(--color-black);
    font-family: var(--font-gotham);
    font-weight: 400;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
}

a {
    color: var(--color-black);
    text-decoration: none;
    cursor: pointer;

    &:hover,
    &:focus {
        color: var(--color-black);
        text-decoration: none;
        outline: 0;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.1;
    font-family: var(--font-gotham);
    font-weight: normal;
}

strong,
b {
    font-weight: bold;
}

p:last-child {
    margin-bottom: 0 !important;
}

/* Header Styles */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
}

.header-container {
    max-width: 144rem;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 8rem;
}

.logo {
    width: 7.5rem;
    height: 12rem;
    object-fit: contain;
    cursor: pointer;
}

.nav {
    display: flex;
    gap: 3.5rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 3rem;
    height: 2.2rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
    margin-bottom: 1rem;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 0.2rem;
    background-color: var(--color-white);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(0.95rem) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-0.95rem) rotate(-45deg);
}

.nav a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 2rem;
    letter-spacing: 0.2rem;
    font-weight: 300;
    text-transform: uppercase;
    transition: color 0.3s ease;
    text-shadow: 0.1rem 0.1rem 0.3rem rgba(0, 0, 0, 0.6);
}

.nav a:hover {
    color: var(--color-light);
    font-weight: 400;
}

.nav a.active {
    color: var(--color-light);
    font-weight: 400;
}

.btn-reserva {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 1.5rem 3.5rem;
    text-decoration: none;
    font-size: 1.7rem;
    font-weight: 300;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 0.4rem 0.6rem rgba(0, 0, 0, 0.3);
}

.btn-reserva:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
    transform: translateY(-0.2rem);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.2rem;
    z-index: 2;
}

.hero-dot {
    width: 1.2rem;
    height: 1.2rem;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero-dot:hover {
    transform: scale(1.2);
}

.hero-dot.active {
    background-color: var(--color-white);
    transform: scale(1.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    margin-top: 5rem;
}

.hero-content h1 {
    font-size: 17rem;
    font-weight: 400;
    line-height: 1.1;
    text-shadow: 0.2rem 0.2rem 0.8rem rgba(0, 0, 0, 0.6);
}

.hero-content h1 span {
    display: block;
}

.hero-line-1 {
    font-family: var(--font-alga-extralight);
    font-weight: 300;
    letter-spacing: 0.6rem;
    text-transform: uppercase;
}

.hero-line-2 {
    font-family: var(--font-alga-extralight);
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.6rem;
    text-transform: uppercase;
}

.hero-line-3 {
    font-family: var(--font-great-vibes);
    text-transform: lowercase;
    letter-spacing: 0.2rem;
    margin-top: -3rem;
    font-size: 26.4rem;
    font-weight: 300;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    html {
        font-size: 9px;
    }

    .header-container {
        padding: 2rem 4rem;
    }

    .hero-content h1 {
        font-size: 7rem;
    }

    .hero-content h1 .hero-line-3 {
        font-size: 11rem;
    }
}

@media (max-width: 900px) {
    html {
        font-size: 8px;
    }

    .header {
        background: rgba(0, 0, 0, 0.8);
    }

    .header-container {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }

    .nav {
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 7rem;
    }

    .hero-content h1 .hero-line-3 {
        font-size: 10rem;
    }
}

@media (max-width: 600px) {
    html {
        font-size: 7.5px;
    }

    .hero-content h1 {
        font-size: 7rem;
        letter-spacing: 0.1rem;
    }

    .hero-content h1 .hero-line-3 {
        font-size: 10rem;
        margin-top: -0.5rem;
    }

    .btn-reserva {
        padding: 1.2rem 2.5rem;
    }
}

/* Nuestro Proposito Section */
.proposito {
    background-image: url('../images/fondo-nosotros.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--color-white);
    padding: 8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 85vh;
}

.proposito-container {
    width: 100%;
    text-align: center;
}

.icon-container {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.decoracion-nosotros {
    max-width: 9.6rem;
    height: auto;
}

.proposito-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}

.proposito-title .logo-img {
    height: 28rem;
    width: auto;
    object-fit: contain;
    margin-top: 0;
}

.proposito-title .title-text {
    font-family: var(--font-gotham);
    font-size: 6.5rem;
    font-weight: 400;
    color: var(--color-primary);
    letter-spacing: 0.08rem;
    text-transform: uppercase;
}

.proposito-content {
    max-width: 100rem;
    margin: 0 auto;
    text-align: left;
    color: var(--color-primary);
    font-size: 2.1rem;
    line-height: 1.4;
    font-weight: 300;
    margin-top: -5rem;
    margin-left: 43rem;
}

.proposito-content p {
    margin-bottom: 2.5rem;
}

.proposito-content p:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments for new section */
@media (max-width: 768px) {
    html {
        font-size: 7.5px;
    }

    .proposito {
        padding: 6rem 2rem;
    }

    .proposito-title {
        flex-direction: column;
        gap: 5px;
    }

    .proposito-title .logo-text {
        font-size: 6rem;
        margin-top: 0;
    }

    .proposito-title .title-text {
        font-size: 3.6rem;
    }

    .proposito-content {
        font-size: 2.1rem;
        text-align: left;
        margin-top: 3rem;
        margin-left: 0;
    }
}

/* Special Fine Dine Section */
.special-fine-dine {
    background-color: var(--color-white);
    padding: 7rem 2rem 8rem;
    text-align: center;
}

.special-title {
    font-family: var(--font-great-vibes);
    font-size: 10.8rem;
    color: var(--color-primary);
    font-weight: 400;
    margin-bottom: 4.5rem;
    letter-spacing: 0.1rem;
}

.carousel-container {
    max-width: 144rem;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.carousel-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 4rem;
}

.carousel-images {
    display: flex;
    gap: 2rem;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-img {
    flex: 0 0 calc(50% - 1rem);
    width: calc(50% - 1rem);
    height: 57.2rem;
    object-fit: cover;
    background-color: var(--color-light);
}

.carousel-indicators {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    align-items: center;
}

.dot {
    width: 1.2rem;
    height: 1.2rem;
    background-color: gainsboro;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.dot.active {
    background-color: var(--color-primary);
}

/* Menu Section */
.menu-section {
    background-color: var(--color-light);
    padding: 6rem 0 8rem;
    text-align: center;
    overflow: hidden;
}

/* Menu Carousel */
.menu-carousel-wrapper {
    overflow: hidden;
    width: 100%;
}

.menu-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.menu-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 0 2rem;
}

.menu-dots {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    align-items: center;
    margin-top: 5rem;
}

.menu-header {
    margin-bottom: 5rem;
}

.menu-main-title {
    font-family: var(--font-gotham), sans-serif;
    font-size: 6.8rem;
    font-weight: 400;
    color: var(--color-primary);
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.menu-curve-divider {
    margin: 0 auto 2rem;
}

.menu-curve-divider img {
    max-width: 100%;
    height: auto;
}

.menu-subtitle {
    font-family: var(--font-gotham), sans-serif;
    font-size: 2.1rem;
    font-weight: 400;
    color: var(--color-primary);
    letter-spacing: 0.2rem;
    margin-bottom: 0.5rem;
}

.menu-category {
    font-family: var(--font-gotham), serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--color-primary);
    letter-spacing: 0.1rem;
}

.menu-content {
    max-width: 144rem;
    margin: 0 auto 4rem;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    text-align: left;
    gap: 2rem;
}

.menu-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 2rem 0;
}

.left-column {
    padding-right: 2rem;
}

.right-column {
    padding-left: 2rem;
}

/* The central image divider */
.menu-divider-graphic {
    width: 34rem;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-divider-graphic img {
    width: 34rem;
    height: 96rem;
    object-fit: contain;
}

.menu-item {
    display: flex;
    flex-direction: column;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.menu-item-title {
    font-family: var(--font-alga-extralight), serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    flex: 1;
    padding-right: 1.5rem;
}

.menu-item-title.light {
    font-family: var(--font-gotham), sans-serif;
    font-weight: 300;
    font-size: 2.1rem;
    color: var(--color-primary);
}

.menu-item-price {
    font-family: var(--font-gotham), sans-serif;
    font-weight: 300;
    font-size: 2.1rem;
    color: var(--color-primary);
    white-space: nowrap;
    line-height: 1.5;
}

.menu-item-desc {
    font-family: var(--font-gotham), sans-serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--color-primary);
    line-height: 1.6;
}

.menu-item-desc strong {
    font-weight: 500;
    color: var(--color-primary);
}

.menu-legend {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-family: var(--font-gotham), serif;
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--color-primary);
    padding-top: 4rem;
}

/* Column title for slide 3 */
.menu-col-title {
    font-family: var(--font-alga-extralight), serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

/* Food safety note */
.menu-food-note {
    font-family: var(--font-gotham), sans-serif;
    font-size: 1.1rem;
    color: var(--color-primary);
    line-height: 1.5;
    margin-top: 2rem;
    opacity: 0.8;
}

/* Custom Icons */
.icon-v::after {
    content: "V";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.6rem;
    height: 1.6rem;
    border: 1.5px solid var(--color-primary);
    border-radius: 50%;
    font-family: var(--font-gotham), sans-serif;
    font-size: 1rem;
    font-weight: bold;
    color: var(--color-primary);
    margin-right: 0.5rem;
    vertical-align: text-bottom;
}

.icon-gf::after {
    content: "GF";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.6rem;
    height: 1.6rem;
    border: 1.5px solid var(--color-primary);
    border-radius: 50%;
    font-family: var(--font-gotham), sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-right: 0.5rem;
    vertical-align: text-bottom;
}

@media (max-width: 900px) {
    html {
        font-size: 8px;
    }

    .menu-content {
        flex-direction: column;
    }

    .menu-divider-graphic {
        width: 100%;
        height: 80px;
        background-repeat: repeat-x;
        background-size: auto 100%;
        margin: 20px 0;
    }

    .left-column,
    .right-column {
        padding: 0;
    }
}

/* Reservation Section */
.reservation-section {
    background-color: var(--color-primary);
    padding: 0 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.res-header {
    margin-bottom: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.res-capsule-title {
    font-family: var(--font-gotham), sans-serif;
    font-size: 3.6rem;
    font-style: italic;
    font-weight: 300;
    color: var(--color-white);
    border: 1px solid var(--color-white);
    border-radius: 30px;
    padding: 1rem 3.5rem;
    margin-bottom: 2.5rem;
    letter-spacing: 0.2rem;
}

.res-main-title {
    font-family: var(--font-alga-extralight), sans-serif;
    font-size: 6.8rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
    letter-spacing: 0.1rem;
}

.res-curve-divider {
    margin-top: -0.5rem;
}

.res-form {
    max-width: 120rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.res-form-row {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

/* Base input styling */
.res-input-full::placeholder,
.res-input::placeholder {
    color: var(--color-primary);
    opacity: 1;
}

.res-input-full {
    flex: 1;
    border: none;
    border-radius: 4rem;
    padding: 2.2rem 3.5rem;
    font-family: var(--font-alga-extralight), sans-serif;
    font-weight: 700;
    font-size: 2.4rem;
    color: var(--color-primary);
    background: var(--color-white);
    outline: none;
    text-align: left;
}

.res-input-group {
    flex: 1;
    display: flex;
    background-color: var(--color-white);
    border-radius: 4rem;
    overflow: hidden;
    align-items: stretch;
}

.res-input-label {
    display: flex;
    align-items: center;
    padding: 2rem 2rem 2rem 3rem;
    font-family: var(--font-alga-extralight), sans-serif;
    font-weight: 700;
    font-size: 2.4rem;
    color: var(--color-primary);
    border-right: 1px solid var(--color-primary);
    background-color: var(--color-white);
    flex-shrink: 0;
    min-width: 11rem;
    justify-content: flex-start;
}

.res-input {
    flex: 1;
    border: none;
    padding: 2rem;
    font-family: var(--font-alga-extralight), sans-serif;
    font-weight: 700;
    font-size: 2.4rem;
    color: var(--color-primary);
    outline: none;
    background: transparent;
    text-align: center;
}

.res-submit-row {
    margin-top: 3rem;
}

.res-submit-btn {
    background-color: var(--color-secondary);
    color: var(--color-white);
    border: none;
    padding: 2rem 4.5rem;
    font-family: var(--font-gotham), sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    letter-spacing: 0.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.res-submit-btn:hover {
    background-color: #3d968f;
}

@media (max-width: 768px) {
    html {
        font-size: 7.5px;
    }

    .res-form-row {
        flex-direction: column;
    }

    .res-input-label {
        min-width: 10rem;
    }

    .res-capsule-title {
        font-size: 2.1rem;
        padding: 0.8rem 2.5rem;
    }

    .res-main-title {
        font-size: 3.6rem;
    }
}

/* Find Us Section */
.find-us-section {
    background-color: var(--color-white);
    width: 100%;
    height: 100vh;
}

.find-us-container {
    display: flex;
    width: 100%;
    height: 100%;
}

.find-us-image-col {
    flex: 1;
    display: flex;
    min-height: 0;
}

.find-us-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.find-us-content-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 6rem 6rem 0;
}

.find-us-header {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.find-us-title {
    font-family: var(--font-alga-extralight), sans-serif;
    font-size: 6.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
}

.find-us-hours {
    font-family: var(--font-gotham), sans-serif;
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--color-primary);
    line-height: 1.6;
    letter-spacing: 0.1rem;
}

.find-us-map {
    flex: 1;
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    min-height: 35rem;
}

@media (max-width: 900px) {
    html {
        font-size: 8.5px;
    }

    .find-us-container {
        flex-direction: column;
    }

    .find-us-img {
        min-height: 30rem;
    }

    .find-us-content-col {
        padding: 4rem 2rem 0;
    }

    .find-us-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}

/* Footer Section */
.footer {
    background-color: var(--color-light);
    padding: 16rem 0 2rem 2rem;
    border-top: 1px solid var(--color-light);
}

.footer-container {
    max-width: 160rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    padding: 0 4rem;
}

.logo-col {
    flex: 0.8;
    display: flex;
    justify-content: flex-start;
}

/* Footer logo image */
.footer-logo-img {
    max-height: 32rem;
    width: auto;
    object-fit: contain;
}

.contact-col {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: flex-start;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-col .contact-item:nth-child(3) {
    align-items: center !important;
}

.contact-icon {
    width: 5.8rem;
    height: auto;
    flex-shrink: 0;
    margin-top: 0.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-text {
    font-family: var(--font-gotham), sans-serif;
    font-size: 2.1rem;
    font-weight: 300;
    color: var(--color-primary);
    line-height: 1;
}

.social-col {
    flex: 1.8;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    text-align: left;
    gap: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 6.2rem;
    height: 6.2rem;
    border-radius: 50%;
    text-decoration: none;
    overflow: hidden;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.social-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-text {
    font-family: var(--font-gotham), sans-serif;
    font-size: 2.1rem;
    font-weight: 300;
    color: var(--color-primary);
    line-height: 1.4;
}

@media (max-width: 900px) {
    html {
        font-size: 8px;
    }

    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo-col,
    .social-col {
        justify-content: flex-start;
        width: 100%;
    }

    .footer-logo {
        margin: 0 auto;
    }
}

/* Fade-in Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    html {
        font-size: 8.5px;
    }

    .header-container {
        padding: 0 4rem;
    }

    .hero-content h1 {
        font-size: 8rem;
    }

    .carousel-container {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 7.5px;
    }

    /* Header & Mobile Menu */
    .header-container {
        padding: 1.5rem 2.5rem;
        justify-content: space-between;
    }

    .logo {
        width: 6rem;
        height: 10rem;
    }

    .hamburger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(45, 66, 95, 0.98);
        /* Sufi Blue Overlay */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4rem;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 1000;
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
    }

    .nav a {
        font-size: 2.4rem;
        text-shadow: none;
    }

    .btn-reserva {
        display: none;
    }

    /* Hero */
    .hero-content h1 {
        font-size: 7rem;
    }

    .hero-line-3 {
        font-size: 7rem;
    }

    /* Proposito */
    .proposito-container {
        flex-direction: column;
        padding: 40px 20px;
    }

    .proposito-content {
        padding-left: 0;
        text-align: center;
    }

    /* Fine Dine */
    .special-title {
        font-size: 6rem;
        margin-bottom: 3rem;
    }

    .carousel-img {
        flex: 0 0 100%;
        width: 100%;
        height: 35rem;
    }

    .carousel-images {
        gap: 0;
    }

    /* Menu */
    .menu-content {
        flex-direction: column;
        padding: 2rem;
    }

    .menu-divider-graphic {
        display: none;
    }

    .menu-column {
        width: 100%;
        padding: 0;
    }

    .menu-main-title {
        font-size: 6rem;
    }

    /* Reservation */
    .reservation-section {
        height: auto;
        padding: 6rem 2rem;
    }

    .res-form-row {
        flex-direction: column;
    }

    /* Find Us */
    .find-us-container {
        flex-direction: column;
        height: auto;
    }

    .find-us-image-col {
        width: 100%;
        height: 30rem;
    }


    .find-us-map {
        width: 100%;
        height: 50rem;
        min-height: 50rem;
        flex: unset;
    }

    .find-us-map iframe {
        width: 100%;
        height: 100%;
        min-height: 100%;
        border: 0;
        display: block;
    }

    .find-us-header {
        padding: 4rem 2rem;
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        gap: 4rem;
        text-align: center;
        padding: 16rem 2rem;
    }

    .logo-col,
    .social-col {
        width: 100%;
        align-items: center;
        justify-content: center;
        flex: none;
    }

    .contact-col {
        width: 100%;
        align-items: flex-start;
        justify-content: flex-start;
        flex: none;
    }

    .contact-text {
        text-align: left;
    }

    .contact-item {
        align-items: center;
    }

    .social-col {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 7.5px;
    }

    .hero-line-3 {
        font-size: 5.5rem;
    }

    .menu-main-title {
        font-size: 4rem;
    }
}

/* ===============================
   SweetAlert2 Custom Styles
=============================== */
.swal2-popup {
    font-family: var(--font-gotham) !important;
    border-radius: 1.5rem !important;
    background: var(--color-light) !important;
    color: var(--color-primary) !important;
    box-shadow: 0 0.8rem 2.4rem rgba(45, 66, 95, 0.15) !important;
}

.swal2-title {
    font-family: var(--font-gotham) !important;
    font-size: 2.8rem !important;
    color: var(--color-primary) !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em;
    margin-bottom: 1.2rem !important;
}

.swal2-html-container {
    font-size: 1.8rem !important;
    color: var(--color-primary) !important;
    font-family: var(--font-gotham) !important;
}

.swal2-confirm,
.swal2-cancel,
.swal2-deny {
    font-family: var(--font-gotham) !important;
    font-size: 1.7rem !important;
    border-radius: 0.8rem !important;
    padding: 1.2rem 3.5rem !important;
    text-transform: uppercase;
    font-weight: 500;
    background: var(--color-primary) !important;
    color: var(--color-white) !important;
    box-shadow: 0 0.4rem 0.6rem rgba(0, 0, 0, 0.10);
    transition: background 0.3s;
}

.swal2-confirm:hover,
.swal2-cancel:hover,
.swal2-deny:hover {
    background: var(--color-secondary) !important;
    color: var(--color-white) !important;
}

.swal2-icon {
    border-radius: 1rem !important;
}

.swal2-popup.swal2-toast {
    border-radius: 1rem !important;
    font-size: 1.6rem !important;
}

.swal2-loader {
    border-top-color: var(--color-primary) !important;
    border-right-color: var(--color-secondary) !important;
}