@charset "utf-8";

/* =========================================================
   TemplateMo 603 Nexaverse
   MASTER CSS - ERROR FIXED
   ONLY FIXES:
   ✔ Removed top spacing
   ✔ Fixed broken .logo img block
   ✔ Fixed media query structure
   ✔ Fixed stray closing braces
   ✔ Preserved original design
========================================================= */

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
}

/* VARIABLES */
:root {
    --primary: #00f0ff;
    --secondary: #ff00d4;
    --accent: #9d4edd;

    --dark-1: #0a0a12;
    --dark-2: #12121f;
    --dark-3: #1a1a2e;

    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);

    --glow-cyan: rgba(0, 240, 255, 0.4);
    --glow-magenta: rgba(255, 0, 212, 0.4);
}

/* BODY */
body {
    font-family: 'Outfit', sans-serif;
    background: var(--dark-1);
    color: #ffffff;
    min-height: 100vh;
}

/* REMOVE TOP SPACING */
.container,
.content-section,
.section-header,
.section-header-small,
.small-logo,
.logo,
.content-section {
    display: none;
}

.content-section.active {
    display: block;
}
#contact {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* MAIN CONTAINER */
.container {
    position: relative;
    z-index: 10;

    /* FIXED TOP GAP */
    padding: 0 20px 40px;

    max-width: 1200px;
    margin: 0 auto;

    min-height: 100vh;

    display: flex;
    flex-direction: column;
}

/* CONTENT SECTION */
.content-section {
    margin: 0 !important;
    padding: 0 20px 40px 20px !important;
    top: 0 !important;
}

/* BACKGROUND */
.ambient-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--glow-cyan) 0%, transparent 70%);
    top: -200px;
    left: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--glow-magenta) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes float {
    0%,100% {
        transform: translate(0,0) scale(1);
    }

    25% {
        transform: translate(50px,-30px) scale(1.05);
    }

    50% {
        transform: translate(-30px,50px) scale(0.95);
    }

    75% {
        transform: translate(-50px,-20px) scale(1.02);
    }
}

/* GRID OVERLAY */
.grid-overlay {
    position: fixed;
    inset: 0;

    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);

    background-size: 80px 80px;

    pointer-events: none;
    z-index: 1;
}

/* HEADER */
.header {
    text-align: center;
    margin-bottom: 60px;

    opacity: 0;
    animation: fadeUp 0.8s ease-out 1s forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* LOGO */
.logo {
    position: relative;

    width: 220px;
    height: auto;

    margin: 0 auto;

    display: flex;
    justify-content: center;
    align-items: center;

    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    overflow: hidden;
}

/* FIXED BROKEN BLOCK */
.logo img,
.small-logo img {
    display: block;
    max-width: 120px;

    margin: 0;
    padding: 0;

    mix-blend-mode: screen;

    filter: drop-shadow(0 0 8px rgba(0,255,255,0.2));

    transition: transform 0.3s ease;
}

.small-logo img:hover {
    transform: scale(1.02);
}

/* CORNER BRACKETS */
.logo::before,
.logo::after {
    content: "";

    position: absolute;

    width: 25px;
    height: 25px;

    border: 2px solid #444;
}

.logo::before {
    top: -2px;
    left: -2px;

    border-right: none;
    border-bottom: none;
}

.logo::after {
    bottom: -2px;
    right: -2px;

    border-left: none;
    border-top: none;
}

.logo span::before,
.logo span::after {
    content: "";

    position: absolute;

    width: 25px;
    height: 25px;

    border: 2px solid #444;
}

.logo span::before {
    top: -2px;
    right: -2px;

    border-left: none;
    border-bottom: none;
}

.logo span::after {
    bottom: -2px;
    left: -2px;

    border-right: none;
    border-top: none;
}

/* BRAND */
.brand-name {
    font-family: 'Syne', sans-serif;

    font-size: 52px;
    font-weight: 600;

    letter-spacing: 6px;

    margin-bottom: 12px;

    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        #ffffff 50%,
        var(--secondary) 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;

    text-transform: uppercase;
}

.tagline {
    font-size: 13px;
    letter-spacing: 5px;

    color: rgba(255,255,255,0.5);

    text-transform: uppercase;
    font-weight: 300;
}

/* SECTION HEADER */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Syne', sans-serif;

    font-size: 42px;
    font-weight: 600;

    margin-bottom: 15px;

    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        #ffffff 50%,
        var(--secondary) 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
}

.section-subtitle {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 2px;
}

/* MENU GRID */
.menu-grid {
    display: grid;

    grid-template-columns: repeat(3, 204px);

    gap: 25px;

    margin: 0 auto 40px;

    justify-content: center;
}

.menu-item {
    height: 170px;

    background: var(--glass-bg);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid var(--glass-border);
    border-radius: 24px;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    cursor: pointer;

    position: relative;
    overflow: hidden;

    opacity: 0;

    transform: translateY(30px) scale(0.9);

    transition: all 0.5s cubic-bezier(0.175,0.885,0.32,1.275);
}

.menu-item:hover {
    transform: translateY(-10px) scale(1.02);

    background: rgba(0,240,255,0.08);

    border-color: var(--primary);

    box-shadow:
        0 20px 40px rgba(0,0,0,0.4),
        0 0 30px rgba(0,200,220,0.2);
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* GLASS CARD */
.glass-card {
    background: var(--glass-bg);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid var(--glass-border);
    border-radius: 20px;

    padding: 30px;

    position: relative;
    overflow: hidden;

    transition: all 0.4s ease;
}

.glass-card:hover {
    background: rgba(255,255,255,0.05);

    transform: translateY(-5px);

    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .menu-grid {
        grid-template-columns: repeat(3,170px);
    }

    .menu-item {
        height: 145px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .brand-name {
        font-size: 36px;
        letter-spacing: 4px;
    }

    .menu-grid {
        grid-template-columns: repeat(2,155px);
        gap: 15px;
    }

    .menu-item {
        height: 135px;
    }

    .section-title {
        font-size: 28px;
    }

    .back-btn {
        position: relative;
        margin: 0 auto 30px;
    }
}

@media (max-width: 480px) {

    .container {
        padding: 0 15px 30px;
    }

    .brand-name {
        font-size: 28px;
        letter-spacing: 3px;
    }

    .tagline {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .menu-grid {
        grid-template-columns: repeat(2,130px);
        gap: 12px;
    }

    .menu-item {
        height: 120px;
    }
}
.frest-style-8{
    font-size:72px;
    font-family:'Outfit',sans-serif;
    font-weight:600;

    color:#ffffff;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.15),
            rgba(255,255,255,.02)
        );

    padding:20px 40px;

    border-radius:20px;

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    box-shadow:
        0 0 25px rgba(0,240,255,.08);

    display:inline-block;

    letter-spacing:6px;
}