/* ------------------------------------------------------
   Global Styles - OxyNN Premium Neon Theme
------------------------------------------------------- */

body {
    background: #0A0A1A;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

a {
    text-decoration: none !important;
}

/* ------------------------------------------------------
   Navbar
------------------------------------------------------- */

.oxynn-nav {
    background: rgba(10, 10, 26, 0.6);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: 0.4s;
}

.oxynn-nav.scrolled {
    background: linear-gradient(45deg, #F04C4C, #9553F0);
}

.nav-link {
    color: #ffffff !important;
    font-weight: 500;
    margin-left: 15px;
    transition: 0.3s;
}

.nav-link:hover {
    color: #F04C4C !important;
}

.contact-btn {
    background: linear-gradient(45deg, #F04C4C, #9553F0);
    padding: 8px 18px;
    border-radius: 30px;
    color: white !important;
    margin-left: 20px;
    font-weight: 600;
}

/* ------------------------------------------------------
   Preloader
------------------------------------------------------- */

#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #0A0A1A;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    transition: 0.6s ease;
}

.preloader-logo {
    height: 90px;
    animation: fadePulse 1.5s infinite;
}

@keyframes fadePulse {
    0% { opacity: 0.3; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1); }
    100% { opacity: 0.3; transform: scale(0.95); }
}

/* ------------------------------------------------------
   Hero Section
------------------------------------------------------- */

.hero-section {
    height: 85vh;
    background: url('../assets/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.55);
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #F04C4C, #9553F0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    margin-top: 10px;
    font-size: 1.2rem;
    font-weight: 400;
    color: #e0e0e0;
}

/* ------------------------------------------------------
   Feature Cards (Morning, Afternoon, Evening)
------------------------------------------------------- */

.ox-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: 0.4s;
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.ox-card:hover {
    transform: translateY(-8px);
    border-color: #F04C4C;
    box-shadow: 0 0 20px rgba(240, 76, 76, 0.4);
}

.ox-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
}

/* ------------------------------------------------------
   Section Titles
------------------------------------------------------- */

.section-title {
    font-size: 2.7rem;
    font-weight: 800;
    background: linear-gradient(45deg, #F04C4C, #9553F0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 15px;
    margin-top: 85px;
}

/* ------------------------------------------------------
   Menu Page
------------------------------------------------------- */

.menu-card {
    background: rgba(255, 255, 255, 0.06);
    padding: 20px;
    border-radius: 15px;
    transition: 0.4s;
    border: 1px solid rgba(255,255,255,0.1);
}

.menu-card:hover {
    transform: translateY(-8px);
    border-color: #9553F0;
    box-shadow: 0px 0px 20px rgba(149,83,240, 0.4);
}

.menu-price {
    font-size: 1.3rem;
    color: #F04C4C;
    font-weight: 700;
}

/* ------------------------------------------------------
   Gallery Page
------------------------------------------------------- */

.gallery-img {
    width: 100%;
    max-height: 460px;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: 0.3s;
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(149, 83, 240, 0.5);
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-box {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-box img {
    width: 100%;
    height: auto;        /* 🔥 KEY FIX */
    display: block;
    object-fit: contain;
}


/* ------------------------------------------------------
   FAQs (Accordion)
------------------------------------------------------- */

.accordion-button {
    background: rgba(255, 255, 255, 0.08) !important;
    color: white !important;
}

.accordion-body {
    background: rgba(255, 255, 255, 0.03) !important;
    color: #e0e0e0;
}

/* ------------------------------------------------------
   Footer
------------------------------------------------------- */

.footer {
    background: #0d0d0d;
    color: #bbbbbb;
}

.footer-social .social-icon {
    font-size: 1.8rem;
    color: #ffffff;
    transition: 0.3s ease;
}

.footer-social .social-icon:hover {
    color: #F04C4C; /* neon theme color */
    text-shadow: 0 0 12px rgba(240, 76, 76, 0.8);
}


.footer-title {
    font-weight: 800;
    background: linear-gradient(45deg, #F04C4C, #9553F0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-copy {
    margin-top: 20px;
    opacity: 0.7;
}

/* Google Rating Box */
.google-rating-box {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    max-width: 480px;
    margin: auto;
    transition: 0.4s;
}

.google-rating-box:hover {
    box-shadow: 0 0 20px rgba(240, 76, 76, 0.4);
    transform: translateY(-6px);
}

.google-title {
    font-size: 1.8rem;
    font-weight: 700;
}

.google-rating {
    color: #F5C542; /* Gold color */
}

.google-stars i {
    color: #F5C542;
    font-size: 1.6rem;
    margin: 0 2px;
}

.google-review-count {
    color: #ccc;
    font-size: 0.95rem;
}

.google-btn {
    background: linear-gradient(45deg, #F04C4C, #9553F0);
    padding: 10px 25px;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
}

.google-btn:hover {
    opacity: 0.85;
    text-shadow: 0 0 10px rgba(255,255,255,0.8);
}



.oxynn-what-we-offer {
    background: #0d0f1a;
    color: #fff;
}

.ox-card-mini {
    background: rgba(255,255,255,0.06);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    transition: 0.3s;
}

.ox-card-mini:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-6px);
}

.section-title {
    font-size: 32px;
    font-weight: 700;
}

.res-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 600px;
    margin: auto;
}

.form-label {
    font-weight: 600;
    color: #000;
    font-size: 14px;
}

.form-control-sm, .form-select-sm {
    font-size: 14px;
    padding: 6px 10px;
    border-radius: 6px;
}
