:root {
    /* Social & Bright Palette */
    --color-bg-main: #101820;
    /* Deep Teal/Blue-Grey Base */
    --color-bg-card: #18232e;
    /* Lighter teal for dark cards */
    --color-bg-alt: #F06572;
    /* Warm Coral for sections */

    --color-text-primary: #FFF9F0;
    /* Off-white/Cream */
    --color-text-dark: #101820;
    /* Dark for light backgrounds */
    --color-text-muted: #d1d5db;
    /* Soft grey */

    --color-coral: #FF477E;
    /* Vibrant Brand Pink/Coral */
    --color-gold: #F5C564;
    /* Soft Friendly Gold */
    --color-teal: #1F5C4A;
    /* Emerald/Teal Accent */

    /* Variable Mapping */
    --bg-body: var(--color-bg-main);
    --bg-alt: var(--color-bg-alt);
    --bg-mint: var(--color-bg-main);

    --text-main: var(--color-text-primary);

    /* Accents */
    --pink-hot: var(--color-coral);
    --orange-pop: var(--color-gold);
    --yellow-sun: var(--color-gold);

    /* Styles */
    --border-thick: 2px solid var(--color-gold);
    --shadow-soft: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    --shadow-lift: 0 20px 40px -5px rgba(0, 0, 0, 0.4);

    /* Layout */
    --max-width: 1300px;
    --header-height: 90px;
    --radius-pill: 50px;
    --radius-card: 24px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: 'Sora', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    margin: 0 0 1rem;
    line-height: 1.1;
    color: white;
    /* Default to white for dark theme */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    /* Global contrast lift */
}

h1 {
    font-size: clamp(4rem, 12vw, 8rem);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 0.85;
    color: white;
    text-shadow: 4px 4px 0px var(--color-coral);
    transform: rotate(0deg);
    margin: 0;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    transform: rotate(0deg);
    color: white;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Utility Classes */
.container {
    width: min(100% - 2rem, var(--max-width));
    margin-inline: auto;
    position: relative;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.8rem;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
}

.btn--primary {
    background-color: var(--color-coral);
    color: white;
    /* Sharper shadow */
    box-shadow: 0 4px 0px #d6336c;
}

.btn--primary:hover {
    transform: translateY(-2px);
    background-color: #ff2d66;
    box-shadow: 0 6px 0px #d6336c;
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--outline {
    background-color: transparent;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    box-shadow: none;
}

.btn--outline:hover {
    transform: translateY(-2px);
    background-color: rgba(245, 197, 100, 0.1);
    box-shadow: 0 4px 15px rgba(245, 197, 100, 0.2);
}

.eyebrow {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: var(--pink-hot);
    color: white;
    border: none;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    transform: rotate(-2deg);
}

/* Header */
.site-header {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 20px;
    transition: all 0.4s ease;
}

.site-header .container {
    background: rgba(16, 24, 32, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(245, 197, 100, 0.3);
    border-radius: 100px;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

/* Header Text / Link Contrast */
.site-nav a {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand__mark {
    height: 45px;
    width: auto;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.site-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav a {
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    position: relative;
    color: var(--text-main);
    transition: color 0.3s;
}

.site-nav a:hover {
    color: var(--color-gold);
    text-decoration: none;
    border-bottom: 1px solid var(--color-gold);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-main);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top right, var(--color-bg-card), var(--color-bg-main));
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(255, 71, 126, 0.15) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 3rem;
    transform: rotate(0deg);
}

/* Our Story Hero Fix - Scalable Text */
.story-hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 1.1;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.hero__title .highlight {
    color: white;
    display: block;
    font-size: 0.45em;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
    text-shadow: none;
    transform: rotate(0deg);
}

.hero__bg {
    position: absolute;
    top: 10%;
    right: -5%;
    width: 50%;
    height: 80%;
    z-index: 1;
    transform: rotate(5deg);
    opacity: 0.8;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 200px 200px 20px 20px;
    border: 4px solid var(--color-gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

/* Sections */
.section {
    padding: 6rem 0;
    position: relative;
}

.section--alt {
    background-color: var(--bg-alt);
    /* Coral */
    color: white;
    border: none;
}

.section--alt h1,
.section--alt h2,
.section--alt h3,
.section--alt p,
.section--alt li {
    color: white !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
    /* Contrast Fix */
}

.section--alt .eyebrow {
    background: white;
    color: var(--color-coral);
}

/* Cards */
.card-tilt {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-card);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    transform: translateY(0);
}

.card-tilt:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lift);
    border-color: var(--color-coral);
    z-index: 10;
}

.card-tilt img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 2px solid var(--text-main);
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
    background: var(--color-bg-card);
}

.zone__badge {
    background: var(--color-coral);
    color: white;
    border: none;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    box-shadow: none;
}

/* Menu Slider */
.menu-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.menu-card {
    text-align: center;
}

.menu-card h3 {
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.menu-card span {
    display: block;
    font-weight: 800;
    color: var(--pink-hot);
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

/* Gallery */
.gallery__rail {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem 1rem;
    justify-content: center;
}

.gallery__rail figure {
    min-width: 300px;
    max-width: 350px;
    flex: 1 1 300px;
    z-index: 2;
    transition: all 0.3s ease;

    transform: rotate(-2deg);
}

.gallery__rail figure:nth-child(2) {
    transform: rotate(2deg);

    margin-top: 1rem;
    z-index: 3;
}

.gallery__rail figure:nth-child(3) {
    transform: rotate(-3deg);

    margin-top: -1rem;
}

.gallery__rail figure:hover {
    transform: scale(1.05) rotate(0deg);
    z-index: 10;
}

.gallery__rail figure img {
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-card);
}

.gallery__rail figure:hover img {
    border-color: var(--color-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.site-footer .brand {
    margin-bottom: 2rem;
}

.site-footer .brand__mark {
    height: 60px;
    filter: drop-shadow(3px 3px 0px rgba(0, 0, 0, 0.3));
}

.site-footer h4 {
    font-family: 'Fraunces', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
}

.site-footer p {
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 600;
}

.site-footer a {
    color: white;
    transition: all 0.2s ease;
    display: inline-block;
    position: relative;
}

.site-footer a:hover {
    color: var(--color-gold);
    transform: translateX(5px);
}


/* Footer Gallery - Desktop */
.footer-gallery {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-gallery figure {
    margin: 0;
    width: 180px;
    height: 180px;
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    transform: rotate(-2deg);
}

.footer-gallery figure:nth-child(2) {
    transform: rotate(2deg);

    margin-top: -10px;
}

.footer-gallery figure:nth-child(3) {
    transform: rotate(-1deg);
}

.footer-gallery figure:hover {
    transform: scale(1.05) rotate(0deg);
    z-index: 5;
    border-color: var(--color-gold);
    box-shadow: 0 10px 25px rgba(245, 197, 100, 0.3);
}

.footer-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.site-footer>.container>p {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-gold);
    text-align: center;
    font-size: 1rem;
}

.back-to-top {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    border-radius: var(--radius-pill);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: none;
    transition: all 0.2s ease;
}

.back-to-top:hover {
    background: var(--color-gold);
    color: var(--color-text-dark);
}

/* Popup */
.event-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.6);
}

.event-popup.is-visible {
    opacity: 1;
    pointer-events: all;
}

.event-popup__content {
    position: relative;
    background: #FFF9F0;
    border: 3px solid var(--color-coral);
    border-radius: var(--radius-card);
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: var(--color-text-dark);
}

.event-popup__content h2,
.event-popup__content h3,
.event-popup__content p {
    color: var(--color-text-dark);
}

.event-popup.is-visible .event-popup__content {
    transform: scale(1);
}

.event-popup__close {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--color-coral);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.event-popup__close:hover {
    transform: scale(1.1);
    background: #ff2d66;
}

/* Lightbox */
#lightbox {
    position: fixed;
    z-index: 5000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
}

#lightbox.active {
    display: flex;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 4px;
}

#lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    z-index: 5001;
}

/* Booking Widget */
.booking-container {
    background: var(--color-coral);
    border: 2px solid white;
    border-radius: var(--radius-card);
    padding: 1rem;
    box-shadow: var(--shadow-lift);
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto 4rem;
}

.booking-header {
    margin-bottom: 1rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
    padding-bottom: 1rem;
    color: white;
}

.booking-header h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.booking-header p {
    color: rgba(255, 255, 255, 0.9);
}

/* Booking Frame - Transparent background fix */
.booking-frame {
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    padding: 2px;
}

/* Helper for map */
.map-container {
    margin-top: 2rem;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

/* Mobile Media Queries */
@media (max-width: 768px) {

    /* Mobile Header - Floating Pill Style */
    .site-header {
        top: 15px;
        padding: 0 15px;
        height: auto;
    }

    .site-header .container {
        border-radius: 100px;
        border: 1px solid rgba(245, 197, 100, 0.4);
        background: rgba(16, 24, 32, 0.95);
        padding: 0.8rem 1.5rem;
        min-height: 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .brand__mark {
        height: 35px;
    }

    /* Nav Toggle - Clean Simple Icon */
    .nav-toggle {
        display: block !important;
        /* Force visible */
        background: none;
        border: none;
        color: var(--color-gold);
        font-size: 2rem;
        padding: 0;
        margin: 0;
        cursor: pointer;
        width: auto;
        height: auto;
        border-radius: 0;
    }

    .nav-toggle:hover {
        background: none;
        transform: scale(1.1);
        color: white;
    }

    /* Mobile Nav Overlay */
    .site-nav ul {
        position: fixed;
        top: 85px;
        right: 15px;
        left: 15px;
        background: var(--color-bg-main);
        border: 1px solid var(--color-gold);
        border-radius: var(--radius-card);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        display: none;
        /* Hidden by default */
        height: auto;
        max-height: 80vh;
        align-items: center;
        overflow-y: auto;
        z-index: 999;
        margin-top: 0;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }

    .site-nav[data-open="true"] ul {
        display: flex;
    }

    /* Mobile Hero Fixes */
    .hero {
        padding-top: 100px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        height: auto;
        min-height: 100vh;
        padding-bottom: 300px;
        margin-bottom: 0;
        position: relative;
        z-index: 1;
        overflow: visible;
    }

    .hero__content {
        padding: 0 1.5rem;
        text-align: center;
        background: transparent;
        margin-top: 0;
        max-width: 100%;
        order: 1;
        position: relative;
        z-index: 2;
        /* Text on top */
    }

    .hero__content p {
        font-size: 1rem;
        line-height: 1.5;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    }

    .hero__bg {
        position: sticky;
        top: 140px;
        width: 100%;
        max-width: 350px;
        height: 350px;
        transform: rotate(0deg);
        margin: 0 auto;
        order: 2;
        padding: 0 1rem;
        z-index: 1;
        /* Visible layer */
        opacity: 1;
    }

    .hero__bg img {
        border-radius: var(--radius-card);
        border: 2px solid var(--color-gold);
    }

    /* Overlap Section (Homepage Only) */
    .overlap-hero {
        margin-top: -150px;
        position: relative;
        z-index: 10;
        box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.3);
        padding-top: 4rem;
    }

}

#lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    z-index: 5001;
}

/* Booking Widget */
.booking-container {
    background: var(--color-coral);
    border: 2px solid white;
    border-radius: var(--radius-card);
    padding: 1rem;
    box-shadow: var(--shadow-lift);
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto 4rem;
}

.booking-header {
    margin-bottom: 1rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
    padding-bottom: 1rem;
    color: white;
}

.booking-header h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.booking-header p {
    color: rgba(255, 255, 255, 0.9);
}

/* Booking Frame - Transparent background fix */
.booking-frame {
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    padding: 2px;
}

/* Helper for map */
.map-container {
    margin-top: 2rem;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

/* Mobile Media Queries */
@media (max-width: 768px) {

    /* Mobile Header - Floating Pill Style */
    .site-header {
        top: 15px;
        padding: 0 15px;
        height: auto;
    }

    .site-header .container {
        border-radius: 100px;
        border: 1px solid rgba(245, 197, 100, 0.4);
        background: rgba(16, 24, 32, 0.95);
        padding: 0.8rem 1.5rem;
        min-height: 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .brand__mark {
        height: 35px;
    }

    /* Nav Toggle - Clean Simple Icon */
    .nav-toggle {
        display: block !important;
        /* Force visible */
        background: none;
        border: none;
        color: var(--color-gold);
        font-size: 2rem;
        padding: 0;
        margin: 0;
        cursor: pointer;
        width: auto;
        height: auto;
        border-radius: 0;
    }

    .nav-toggle:hover {
        background: none;
        transform: scale(1.1);
        color: white;
    }

    /* Mobile Nav Overlay */
    .site-nav ul {
        position: fixed;
        top: 85px;
        right: 15px;
        left: 15px;
        background: var(--color-bg-main);
        border: 1px solid var(--color-gold);
        border-radius: var(--radius-card);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        display: none;
        /* Hidden by default */
        height: auto;
        max-height: 80vh;
        align-items: center;
        overflow-y: auto;
        z-index: 999;
        margin-top: 0;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }

    .site-nav[data-open="true"] ul {
        display: flex;
    }

    /* Mobile Hero Fixes */
    .hero {
        padding-top: 100px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        height: auto;
        min-height: 100vh;
        padding-bottom: 300px;
        margin-bottom: 0;
        position: relative;
        z-index: 1;
        overflow: visible;
    }

    .hero__content {
        padding: 0 1.5rem;
        text-align: center;
        background: transparent;
        margin-top: 0;
        max-width: 100%;
        order: 1;
        position: relative;
        z-index: 2;
        /* Text on top */
    }

    .hero__content p {
        font-size: 1rem;
        line-height: 1.5;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    }

    .hero__bg {
        position: sticky;
        top: 140px;
        width: 100%;
        max-width: 350px;
        height: 350px;
        transform: rotate(0deg);
        margin: 0 auto;
        order: 2;
        padding: 0 1rem;
        z-index: 1;
        /* Visible layer */
        opacity: 1;
    }

    .hero__bg img {
        border-radius: var(--radius-card);
        border: 2px solid var(--color-gold);
    }

    /* Overlap Section */
    .section--alt {
        margin-top: -150px;
        position: relative;
        z-index: 10;
        box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.3);
        padding-top: 4rem;
    }

    /* Footer Mobile */
    .site-footer>.container>p {
        margin-top: 2rem;
    }

    /* Footer Gallery - HIDE ON MOBILE */
    .footer-gallery {
        display: none !important;
    }

    /* Mobile Hero Spacing Fixes */
    .mobile-hero-fix {
        margin-top: 0 !important;
        padding-top: 170px !important;
        scroll-margin-top: 100px;
    }

    .mobile-unstack-fix {
        margin-top: 0 !important;
        scroll-margin-top: 100px;
    }
}