@import url(https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&display=swap);

.hero,
.navbar-landing {
    display: flex;
    width: 100%
}

.hero,
.hero-bg,
.nav-menu-landing a:hover::after,
body,
html {
    width: 100%
}

.btn-landing,
.nav-menu-landing a,
a {
    text-decoration: none
}

.btn-landing,
.nav-brand,
.section-title {
    letter-spacing: 2px;
    text-transform: uppercase
}

.date-badge,
.product-card {
    backdrop-filter: blur(5px);
    text-align: center
}

.area-title,
.btn-landing,
.date-month,
.hero h1,
.nav-brand,
.nav-menu-landing a,
.section-title {
    text-transform: uppercase
}

.date-badge,
.dj-text-area,
.hero-content,
.main-footer,
.product-card,
.section-header {
    text-align: center
}

.area-desc,
.back-to-top-btn {
    opacity: 0;
    transform: translateY(20px)
}

.area-desc,
.area-overlay,
.back-to-top-btn {
    transform: translateY(20px)
}

:root {
    --primary: #50C1D5;
    --accent: #F8A61E;
    --secondary: #F3C871;
    --bg-body: #07274A;
    --bg-dark: #07274A;
    --text-main: #ffffff;
    --text-muted: #BDEFE7;
    --border-glass: rgba(80, 193, 213, 0.2);
    --success: #00d26a
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none
}

body,
html {
    font-family: Outfit, sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none
}

body.landing-page {
    display: block;
    height: auto;
    overflow-y: auto
}

a {
    color: inherit;
    transition: .3s
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: 0
}

.navbar-landing {
    position: fixed;
    top: 0;
    left: 0;
    padding: 20px 40px;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .8), transparent);
    transition: .3s
}

.navbar-landing.scrolled {
    background: rgba(7, 18, 30, .95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .3)
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff
}

.nav-menu-landing a {
    margin-left: 30px;
    color: #fff;
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color .3s;
    position: relative
}

.nav-menu-landing a:hover,
.social-links i:hover {
    color: var(--primary)
}

.nav-menu-landing a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: width .3s
}

.btn-nav-reserve {
    border: 1px solid var(--primary);
    padding: 8px 24px;
    border-radius: 20px;
    color: var(--primary) !important;
    transition: .3s !important
}

.btn-nav-reserve:hover {
    background: var(--primary);
    color: #ffffff !important
}

.btn-nav-reserve::after {
    display: none !important
}

.hero {
    height: 95vh;
    position: relative;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1544551763-46a8723ba3f9?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    filter: brightness(.5);
    z-index: 0
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 900px
}

.hero-logo {
    width: 140px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(0, 229, 255, .4));
    animation: 6s ease-in-out infinite float
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #bdeffe);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(0, 229, 255, .3);
    letter-spacing: 4px
}

.hero p {
    font-size: clamp(1rem, 3vw, 1.4rem);
    margin-bottom: 2.5rem;
    color: #e0e0e0;
    font-weight: 300;
    letter-spacing: .5px
}

section {
    padding: 100px 20px;
    max-width: 1400px;
    margin: 0 auto
}

.section-header {
    margin-bottom: 110px
}

.section-header h2 {
    text-transform: uppercase;
}

.section-title {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 15px
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6
}

.areas-grid,
.events-grid-landing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 0 20px
}

.area-card {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .5)
}

.area-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.25, .46, .45, .94)
}

.area-card:hover .area-bg,
.event-card-landing:hover .event-img {
    transform: scale(1.1)
}

.area-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, .95), rgba(0, 0, 0, .6), transparent);
    padding: 40px 30px;
    z-index: 2;
    transition: transform .4s
}

.area-card:hover .area-overlay {
    transform: translateY(0)
}

.area-title {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600
}

.area-desc {
    font-size: 1rem;
    color: #ccc;
    transition: .4s .1s
}

.area-card:hover .area-desc {
    opacity: 1;
    transform: translateY(0)
}

.menu-section {
    background: radial-gradient(circle at center, rgba(80, 193, 213, .05) 0, transparent 70%);
    padding-top: 50px;
    padding-bottom: 50px
}

.product-carousel {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
    cursor: grab;
    -ms-overflow-style: none;
    scrollbar-width: none
}

.product-carousel:active {
    cursor: grabbing
}

.product-carousel::-webkit-scrollbar {
    display: none
}

.product-wrapper {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 10px;
    width: max-content;
    min-width: 100%
}

.product-card {
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(80, 193, 213, .2);
    border-radius: 24px;
    padding: 20px;
    transition: .4s;
    width: 200px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.product-card:hover {
    border-color: var(--primary);
    background: rgba(0, 229, 255, .05);
    box-shadow: 0 15px 40px rgba(0, 229, 255, .1)
}

.prod-img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    background-color: #fff;
    border-radius: 12px;
    margin-bottom: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
    transition: transform .4s;
    padding: 10px
}

.product-card:hover .prod-img {
    transform: scale(1.05)
}

.prod-name {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 5px;
    font-weight: 600;
    flex-grow: 1
}

.prod-price {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0
}

.main-footer {
    background-color: #050505;
    padding: 60px 20px;
    border-top: 1px solid rgba(255, 255, 255, .05);
    color: var(--text-muted)
}

.social-links i {
    font-size: 1.5rem;
    margin: 0 15px;
    transition: color .3s;
    cursor: pointer
}

.btn-landing {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: .3s
}

.btn-primary-landing {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #ffffff;
    border: none;
    box-shadow: 0 0 25px rgba(0, 229, 255, .3)
}

.btn-primary-landing:hover {
    box-shadow: 0 0 20px rgba(0, 229, 255, .6)
}

.btn-outline-landing {
    border: 2px solid #fff;
    color: #fff;
    background: 0 0;
    margin-left: 20px
}

.btn-outline-landing:hover {
    background: #fff;
    color: #000
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-15px)
    }
}

@media (max-width:992px) {
    .product-wrapper {
        grid-template-rows: repeat(2, minmax(0, 1fr));
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 15px
    }

    .product-card {
        width: 180px;
        padding: 15px
    }

    .prod-img {
        height: 100px;
        padding: 8px
    }

    .prod-name {
        font-size: 1rem
    }

    .prod-price {
        font-size: .9rem
    }
}

@media (max-width:768px) {
    .navbar-landing {
        padding: 15px 20px
    }

    .nav-menu-landing {
        display: none
    }

    .hero h1 {
        font-size: 3rem
    }

    .btn-outline-landing {
        margin-left: 0;
        margin-top: 15px;
        display: block;
        text-align: center
    }

    .areas-grid {
        grid-template-columns: 1fr
    }

    .footer-cta {
        background-attachment: scroll
    }

    .product-wrapper {
        grid-template-rows: repeat(1, minmax(0, 1fr));
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px
    }

    .product-card {
        width: 150px;
        padding: 10px
    }

    .prod-img {
        height: 80px;
        padding: 5px
    }

    .prod-name {
        font-size: .9rem
    }

    .prod-price {
        font-size: .8rem
    }
}

.event-card-landing {
    background: rgba(18, 25, 38, .6);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    display: flex;
    flex-direction: column
}

.event-card-landing:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
    border-color: var(--primary)
}

.event-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden
}

.event-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.date-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(7, 39, 74, .9);
    border: 1px solid var(--primary);
    color: #fff;
    padding: 10px 15px;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .3)
}

.dj-video-area,
.map-container {
    border-radius: 20px;
    overflow: hidden
}

.date-day {
    font-size: 1.5rem;
    line-height: 1;
    color: var(--primary)
}

.date-month {
    font-size: .8rem;
    letter-spacing: 1px
}

.event-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.event-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700
}

.event-meta {
    color: var(--text-muted);
    font-size: .95rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px
}

.btn-event-link {
    display: none
}

.dj-section-split {
    padding: 100px 20px;
    max-width: 1400px;
    margin: 0 auto;
    background-color: var(--bg-body)
}

.dj-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center
}

.dj-video-area {
    flex: 1;
    width: 100%;
    max-width: 700px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .5)
}

.gallery-grid img,
.map-container {
    box-shadow: 0 8px 20px rgba(0, 0, 0, .3)
}

.dj-video {
    width: 100%;
    height: auto;
    display: block
}

.dj-text-area {
    flex: 1;
    width: 100%;
    max-width: 600px
}

.dj-text-area .section-title {
    font-size: 2.2rem;
    margin-bottom: 10px
}

.dj-text-area .section-subtitle {
    font-size: 1.05rem;
    margin-bottom: 30px
}

.dj-bio-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0 auto
}

@media (min-width:992px) {

    .dj-text-area,
    .dj-video-area {
        max-width: 50%
    }

    .dj-content-wrapper {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 80px
    }

    .dj-text-area {
        text-align: left
    }

    .dj-bio-text {
        margin: 0
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px
}

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform .3s
}

.gallery-grid img:hover {
    transform: scale(1.03)
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px
}

.contact-info h4 {
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 1.1rem
}

.contact-info p {
    font-size: 1rem;
    color: var(--text-main)
}

.map-container {
    height: 350px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, .1)
}

.map-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img/map-2.png') center/cover
}

.footer-cta {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .9)) center/cover fixed, url('../img/footer.png') center/cover fixed;
    text-align: center;
    padding: 250px 20px;
    margin: 0;
    max-width: 100%;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px
}

.footer-cta p {
    font-size: 1.3rem;
    color: #ddd;
    font-weight: 300;
    margin: 0
}

.footer-cta .btn-landing {
    margin: 0
}

body::-webkit-scrollbar,
html::-webkit-scrollbar {
    display: none
}

.contact-info .discord-link {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 500
}

.contact-info .discord-link:hover {
    color: var(--accent)
}

.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 229, 255, .4);
    visibility: hidden;
    transition: .3s;
    z-index: 900
}

.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

@media (max-width:768px) {
    .back-to-top-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        bottom: 20px;
        right: 20px
    }

    .footer-cta {
        padding: 80px 20px;
        gap: 15px
    }

    .footer-cta p {
        font-size: 1.2rem
    }

    .footer-cta .btn-landing {
        font-size: 1rem;
        padding: 15px 40px
    }

    .main-footer {
        padding: 30px 15px;
        font-size: .85rem
    }

    .main-footer .social-links i {
        font-size: 1.5rem
    }
}