:root {
    --primary: #00d2ff;
    --secondary: #3a7bd5;
    --accent: #ff007f;
    --accent-light: rgba(255, 0, 127, 0.2);
    --dark: #121212;
    --light: #ffffff;
    --text-primary: #1a1a24;
    --text-secondary: #4a4a5e;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #f8f9fa;
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
}

/* Dynamic Background */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
    opacity: 0.5;
}

.background-animation::before,
.background-animation::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
    animation: moveOrbs 20s infinite alternate linear;
}

.background-animation::before {
    background: var(--primary);
    top: -100px;
    left: -100px;
}

.background-animation::after {
    background: var(--accent);
    bottom: -100px;
    right: -100px;
    animation-delay: -10s;
}

@keyframes moveOrbs {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20vw, 20vh) scale(1.2);
    }

    100% {
        transform: translate(-10vw, 40vh) scale(0.8);
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    z-index: 1000;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    top: 10px;
    width: 95%;
    background: rgba(255, 255, 255, 0.85);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    height: 90px;
}

.nav-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
    margin-top: 0;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Common Layout */
section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    justify-content: center;
    padding-top: 160px;
    padding-bottom: 80px;
}

.hero-logo-large-wrapper {
    margin-bottom: 0;
    padding-bottom: 0;
    animation: float 6s ease-in-out infinite;
}

.hero-logo {
    height: 320px;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.1));
    transition: height 0.3s ease;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-top: -15px;
    /* Pull header text closer to the floating logo */
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.highlight {
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}

.primary-btn {
    background: linear-gradient(135deg, var(--accent), #ff4d94);
    color: white;
    box-shadow: 0 10px 20px var(--accent-light);
}

.primary-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 25px rgba(255, 0, 127, 0.3);
}

.secondary-btn {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.secondary-btn:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.05);
}

/* Section Styling */
.section-badge {
    background: var(--accent-light);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

section h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

/* Info Section (Cards) */
.cards-container {
    display: flex;
    gap: 40px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 50px 40px;
    width: 100%;
    max-width: 450px;
    box-shadow: var(--glass-shadow);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.glass-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.1), rgba(255, 0, 127, 0.1));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.glass-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.glass-card p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.address {
    font-weight: 600;
    color: var(--text-primary);
}

.text-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.text-link:hover {
    color: var(--accent);
}

.map-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    width: 100%;
}

.map-links .text-link {
    background: rgba(255, 255, 255, 0.5);
    padding: 10px 15px;
    border-radius: 12px;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.map-links .text-link:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    color: var(--primary);
}

.hours-display {
    background: rgba(255, 255, 255, 0.5);
    padding: 15px 25px;
    border-radius: 15px;
    margin-bottom: 1rem;
    width: 100%;
}

.day-range {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.time-range {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.open-status {
    color: #10b981;
    /* Green */
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0px !important;
}

/* Instagram Carousel Section */
.social-section p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.carousel-wrapper {
    width: 100vw;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollTrack 30s linear infinite;
}

.carousel-wrapper:hover .carousel-track {
    animation-play-state: paused;
}

.insta-post {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.insta-post:hover {
    transform: scale(1.05);
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.insta-post:hover .insta-overlay {
    opacity: 1;
}

.insta-overlay i {
    color: white;
    font-size: 2.5rem;
}

@keyframes scrollTrack {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-300px * 6 - 20px * 6));
    }
}

.carousel-track.single-post {
    animation: none;
    width: 100%;
    justify-content: center;
}

.gallery-section {
    padding-bottom: 20px;
}

.gallery-post {
    width: 400px;
    height: 250px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-post:hover {
    transform: scale(1.02);
}

.mt-4 {
    margin-top: 2rem;
}

/* About Us Page Styles */
.about-hero {
    min-height: 60vh;
    padding-top: 180px;
    padding-bottom: 60px;
}

.about-section {
    padding: 80px 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    box-shadow: var(--glass-shadow);
}

.about-story {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.35rem;
    font-weight: 300;
    color: var(--text-primary);
    line-height: 2;
    letter-spacing: 0.01em;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
    text-align: left;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.owner-image-wrapper {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4/5;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.owner-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--text-secondary);
    opacity: 0.6;
}

.owner-placeholder i {
    font-size: 4rem;
    color: var(--primary);
}

/* Map Section Styles */
.map-section {
    padding: 100px 20px;
    position: relative;
}

.map-container {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto 0;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.map-overlay-card {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    max-width: 350px;
    text-align: left;
}

.map-overlay-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.map-overlay-card p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.map-overlay-card i {
    color: var(--accent);
    width: 20px;
    text-align: center;
}

/* Footer */
.glass-footer {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--glass-border);
    padding: 60px 20px 20px;
    margin-top: 50px;
    position: relative;
    z-index: 10;
}

.glass-footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    height: 100px;
    margin-bottom: 15px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 300px;
}

.footer-info {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-info h4 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 5px;
    font-weight: 800;
}

.footer-info p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 1.1rem;
}

.footer-info i {
    color: var(--accent);
    margin-top: 4px;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.footer-info a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.footer-info a:hover {
    color: var(--accent);
}

.footer-map {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
}

.footer-map iframe {
    width: 100%;
    height: 150px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* ======================== 
   Loading Screen & Weather
======================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: transparent;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* Important for scaling on mobile */
    transition: opacity 1s ease;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    /* Ensures video always fills the screen without stretching, great for mobile */
    position: absolute;
    top: 0;
    left: 0;
    mix-blend-mode: multiply;
    /* CSS magic: turns pure white into complete transparency! */
    opacity: 0.9;
}

.weather-widget {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 100px; /* Fully rounded pill shape */
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;   /* Thinner top/bottom padding */
    gap: 12px;
    margin: 1.5rem auto 2.5rem;
    box-shadow: var(--glass-shadow);
}

.weather-widget i {
    font-size: 1.4rem;
    color: #f59e0b;
}

.weather-info {
    display: flex;
    flex-direction: row;  /* Align contents horizontally */
    align-items: center;
    gap: 12px;
}

.weather-temp {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: normal;
}

.weather-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0;
    border-left: 2px solid rgba(0, 0, 0, 0.1); /* Separator pipe */
    padding-left: 12px;
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-primary);
    cursor: pointer;
    z-index: 1001;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .navbar {
        width: 95%;
        border-radius: 20px;
    }

    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        height: auto;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: 0 0 20px 20px;
        padding: 20px 0;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        gap: 15px;
        font-size: 1.1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        padding: 10px 0;
    }

    h1 {
        font-size: 3rem;
        margin-top: 0;
    }

    .hero {
        padding-top: 220px;
    }

    /* About Us Mobile Adjustments */
    .about-hero {
        padding-top: 180px;
        min-height: 40vh;
    }

    .about-content {
        flex-direction: column;
        gap: 40px;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .map-overlay-card {
        position: relative;
        bottom: 0;
        left: 0;
        border-radius: 0 0 20px 20px;
        max-width: 100%;
        box-shadow: none;
        border-top: none;
    }

    .hero-logo-large-wrapper {
        margin-bottom: 20px;
    }

    .nav-logo {
        height: 80px;
    }

    .hero-logo {
        height: 240px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .insta-post {
        width: 250px;
        height: 250px;
    }

    .gallery-post {
        width: 300px;
        height: 200px;
    }

    .cards-container {
        flex-direction: column;
        align-items: center;
    }

    .glass-footer .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-info p {
        justify-content: center;
        text-align: left;
    }

    .footer-brand p {
        margin: 0 auto;
    }
}

/* Skip Loading Screen */
html.skip-loading .loading-screen {
    display: none !important;
}