@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Great+Vibes&display=swap');

:root {
    --primary: #BC1823;
    /* Classic Red Rose */
    --primary-light: #E84D5D;
    --primary-dark: #8B0000;
    --secondary: #000000;
    /* Deep Black */
    --accent: #BC1823;
    --dark: #000000;
    --light: #FFFFFF;
    --white: #FFFFFF;
    --black: #000000;
    --gray: #666666;
    --light-gray: #f8fafc;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.03);
    --shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.08);
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4 {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    text-wrap: balance;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Global Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

.section {
    padding: clamp(4rem, 10vw, 8rem) 0;
}

.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.mobile-only-btn {
    display: none;
    width: 100%;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:hover::before {
    width: 300%;
    height: 300%;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(214, 69, 77, 0.2);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(214, 69, 77, 0.3);
}

.btn-outline {
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(214, 69, 77, 0.2);
}

/* Glassmorphism Classes */
.glass-panel {
    background: var(--glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition);
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 0.6rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border-bottom: 3px solid var(--primary);
}

.nav-btns {
    display: flex;
    align-items: center;
}

.nav-btn {
    padding: 0.8rem 1.8rem !important;
    font-size: 0.75rem !important;
    margin-right: 1rem;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--black);
    margin-left: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-toggle:hover {
    color: var(--primary);
    transform: scale(1.1);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

nav.scrolled .logo img {
    height: 55px;
}

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

.script-text {
    font-family: 'Great Vibes', cursive;
    text-transform: none;
    letter-spacing: normal;
    color: var(--primary);
}


.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links li a {
    font-size: 0.9rem;
    font-weight: 700;
    position: relative;
    padding: 0.5rem 0;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: var(--transition);
}

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

.menu-header,
.about-header,
.contact-header,
.page-header {
    padding: clamp(8rem, 15vw, 12rem) 0 3rem;
    background: #fdfdfd;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.menu-header .container,
.about-header .container,
.contact-header .container,
.page-header .container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 800px;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(188, 24, 35, 0.08)), url('assets/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, var(--white), transparent);
}

.hero-content {
    max-width: 1000px;
    z-index: 2;
    padding: 0 2rem;
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    margin-bottom: 1.5rem;
    line-height: 1;
    color: var(--black);
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero h1 span {
    display: block;
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-family: 'Great Vibes', cursive;
    text-transform: none;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

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

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

.hero p {
    font-size: 1.3rem;
    margin-bottom: 3.5rem;
    color: var(--secondary);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s backwards;
}

.hero-btns {
    display: flex;
    gap: 2rem;
    justify-content: center;
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s backwards;
}

/* Services / Features */
.services-section {
    background: var(--white);
    position: relative;
}

.section-tag {
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-tag::before,
.section-tag::after {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--primary);
    opacity: 0.3;
}

.section-title {
    font-size: clamp(2.2rem, 8vw, 4rem);
    text-align: center;
    margin-bottom: clamp(3rem, 10vw, 6rem);
    position: relative;
    padding-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.service-card {
    position: relative;
    padding: 4rem 3rem;
    overflow: hidden;
    z-index: 1;
    border: 1px solid #eeeeee;
    transition: var(--transition);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(188, 24, 35, 0.03), transparent);
    z-index: -1;
    transition: var(--transition);
}

.service-card:hover::before {
    opacity: 0.2;
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 2.5rem;
    background: linear-gradient(to bottom, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.service-card p {
    color: var(--gray);
    font-size: 1.1rem;
}

/* Special Section - Sports Bar */
.special-offer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    padding: 10rem 0;
}

.special-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.special-image img {
    width: 100%;
    height: clamp(300px, 60vw, 600px);
    object-fit: cover;
    transition: transform 1s ease;
}

.special-image:hover img {
    transform: scale(1.1);
}

.special-content h2 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: 2rem;
    line-height: 1;
}

/* Floating Elements */
.floating-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    padding: 20px;
    border-radius: 20px;
    font-weight: 800;
    color: white;
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 5;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

/* Categories & Menu */
.menu-categories {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 6rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    background: #ffffff;
    border: 1px solid var(--glass-border);
    color: var(--secondary);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.category-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.category-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(214, 69, 77, 0.2);
}

.menu-section-title {
    font-size: 2.5rem;
    margin: 6rem 0 3rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--secondary);
    display: inline-block;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
}

.menu-item {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.menu-item:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: scale(1.02);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.menu-item-title {
    font-size: 1.5rem;
    color: var(--black);
    font-weight: 700;
}

.menu-item-price {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.3rem;
}

.menu-item-desc {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.allergens-tag {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--secondary);
    display: block;
    margin-top: auto;
}

/* Contact Details */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
}

.contact-info-item {
    margin-bottom: 3rem;
}

.contact-info-item i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    display: block;
}

.contact-info-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    color: var(--gray);
    font-size: 1.1rem;
}

/* Menu Page Modernization */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.menu-item {
    padding: 2rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--glass-border);
}

.menu-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(188, 24, 35, 0.1);
}

.menu-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 0 4px 4px 0;
}

.menu-item:hover::before {
    height: 60%;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.menu-item-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
}

.menu-item-price {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: var(--primary);
    font-size: 1.2rem;
}

.menu-item-desc {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.allergens-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
}

/* Values Grid for About Page */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 5rem;
}

.value-card {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 24px;
    background: var(--white);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.value-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 2rem;
    display: inline-block;
}

/* Contact Page Modernization */
.contact-info-item {
    padding: 2.5rem;
    background: var(--white);
    border-radius: 24px;
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}

.contact-info-item:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.contact-form-container {
    padding: clamp(2.5rem, 5vw, 5rem) !important;
}

/* Footer Design */
footer {
    padding: 10rem 0 5rem;
    background: var(--black);
    color: var(--white);
    border-top: 8px solid var(--primary);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 6rem;
    margin-bottom: 8rem;
}

.footer-logo {
    margin-bottom: 2rem;
    display: inline-block;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 10px;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    opacity: 0;
}

.reveal {
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.services-grid .reveal:nth-child(2) {
    animation-delay: 0.15s;
}

.services-grid .reveal:nth-child(3) {
    animation-delay: 0.3s;
}

.menu-grid .reveal:nth-child(2n) {
    animation-delay: 0.1s;
}

.menu-grid .reveal:nth-child(3n) {
    animation-delay: 0.2s;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* Responsive Design System */
@media (max-width: 1200px) {
    .container {
        padding: 0 4rem;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: clamp(3rem, 8vw, 5rem);
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .special-offer, 
    .contact-grid,
    .values-grid {
        grid-template-columns: 1fr !important;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-btn {
        display: none !important;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.99);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1001;
        display: flex !important;
    }

    .nav-links.active {
        right: 0;
    }

    /* Addition: Show buttons inside mobile menu only when active */
    .nav-links.active .mobile-only-btn {
        display: block !important;
    }

    .mobile-toggle {
        display: block !important;
        position: relative;
        z-index: 1002;
        margin-left: 0;
    }

    .nav-btns {
        margin-left: auto;
    }

    /* Make all content centered on mobile */
    body {
        text-align: center;
    }

    .special-content,
    .contact-info-item,
    .service-card,
    .value-card,
    .menu-item,
    .menu-item-info {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    p {
        margin-left: auto;
        margin-right: auto;
    }

    .menu-item-header {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        width: 100%;
    }

    .allergens-tag {
        margin: 1rem auto 0 auto !important;
        text-align: center;
    }

    .special-content > div {
        align-items: center !important;
        justify-content: center !important;
        text-align: center;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .section-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-bottom-info {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-bottom-sep {
        display: none;
    }

    /* Modern Type Correction */
    .footer-bottom {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }
    
    .contact-form-container {
        padding: 2.5rem 1.5rem !important;
    }
}

/* Global Form Elements */
input,
textarea {
    width: 100%;
    padding: 1.25rem;
    border-radius: 12px;
    background: #fdfdfd;
    border: 1px solid #e2e8f0;
    color: var(--black);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(188, 24, 35, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}