/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.7s ease;
}

.header.visible {
    transform: translateY(0);
    opacity: 1;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #fbbf24, #f97316);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #000;
    font-size: 1.25rem;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #fbbf24, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text p {
    font-size: 0.75rem;
    color: #9ca3af;
}

.nav-desktop {
    display: flex;
    gap: 2rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(249, 115, 22, 0.2));
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.mobile-menu-btn:hover {
    background-color: #374151;
}

.mobile-menu {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
}

.mobile-menu.open {
    max-height: 24rem;
    opacity: 1;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: #fff;
    border-radius: 0.5rem;
    margin: 0.25rem 0;
    transition: all 0.3s ease;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(249, 115, 22, 0.2));
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #000 0%, #1f2937 50%, #000 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1574629810360-7efbbe195018?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #000 0%, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
}

.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
}

.floating-1 {
    top: 5rem;
    left: 2.5rem;
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #fbbf24, #f97316);
    animation: bounce 2s infinite;
}

.floating-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    animation: pulse 2s infinite;
}

.floating-3 {
    top: 50%;
    left: 1.25rem;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    animation: ping 2s infinite;
}

.floating-4 {
    top: 8rem;
    right: 5rem;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #10b981, #14b8a6);
    animation: bounce 2s infinite;
    animation-delay: 1s;
}

.floating-5 {
    bottom: 8rem;
    left: 5rem;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #f472b6, #ef4444);
    animation: pulse 2s infinite;
    animation-delay: 2s;
}

.floating-6 {
    top: 33%;
    right: 1.25rem;
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(135deg, #f97316, #fbbf24);
    animation: ping 2s infinite;
    animation-delay: 0.5s;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 1rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 1s ease;
}

.hero-content.visible {
    transform: translateY(0);
    opacity: 1;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fbbf24, #f97316, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s infinite;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 3rem);
    color: #d1d5db;
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.badge {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

.badge-featured {
    background: linear-gradient(135deg, #f97316, #ef4444);
    color: #fff;
    padding: 1rem 2rem;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.badge-purple {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    color: #fff;
}

.badge-blue {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: #fff;
}

.badge-green {
    background: linear-gradient(135deg, #10b981, #14b8a6);
    color: #fff;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #fbbf24, #f97316);
    color: #000;
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.4);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
    transform: scale(1.05);
}

/* Products Section */
.products {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #000, #1f2937);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 6rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fbbf24, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sports-title {
    background: linear-gradient(135deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-title {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 48rem;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    border-radius: 1rem;
    padding: 1px;
    transition: all 0.7s ease;
    opacity: 0;
    transform: translateY(50px);
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.product-card.featured {
    grid-column: span 2;
    transform: scale(1.05);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.5);
}

.product-card.featured:hover {
    transform: scale(1.15) rotate(1deg);
}

.product-card-inner {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.indian-special {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(239, 68, 68, 0.1), rgba(236, 72, 153, 0.1));
}

.food {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(249, 115, 22, 0.1));
}

.cocktails {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.1));
}

.desserts {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.1));
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #fbbf24, #f97316);
    color: #000;
    padding: 0.5rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.product-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.featured .product-icon {
    width: 5rem;
    height: 5rem;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #fff;
}

.featured .product-title {
    font-size: 2rem;
}

.product-items {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-items li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #d1d5db;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.product-items li:hover {
    color: #fff;
}

.product-items i {
    color: #fbbf24;
    font-size: 0.875rem;
}

.product-btn {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.featured .product-btn {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(239, 68, 68, 0.2));
    border-color: rgba(249, 115, 22, 0.3);
}

.product-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Sports Section */
.sports {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #1f2937, #000);
}

.sports-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.sports-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.games-schedule {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(59, 130, 246, 0.2));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.games-schedule h3 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.games-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.game-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0.75rem;
    transition: background-color 0.3s ease;
}

.game-item:hover {
    background: rgba(0, 0, 0, 0.7);
}

.teams {
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.league {
    font-size: 0.875rem;
    color: #9ca3af;
}

.time {
    color: #10b981;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.live-badge {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
}

.sports-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature-item {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(249, 115, 22, 0.2));
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
}

.feature-item:nth-child(2) {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
    border-color: rgba(168, 85, 247, 0.3);
}

.feature-item i {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: #fbbf24;
}

.feature-item:nth-child(2) i {
    color: #a855f7;
}

.feature-item h4 {
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.feature-item p {
    font-size: 0.875rem;
    color: #9ca3af;
}

.sports-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    padding: 1px;
    border-radius: 1rem;
}

.sports-image img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    border-radius: 1rem;
}

.play-button {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #fbbf24, #f97316);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(to top, #000, #1f2937);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item i {
    color: #a855f7;
    font-size: 1.5rem;
    width: 1.5rem;
}

.info-label {
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
}

.info-value {
    color: #9ca3af;
}

.social-buttons {
    display: flex;
    gap: 1rem;
}

.social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border: none;
    border-radius: 9999px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.instagram {
    background: linear-gradient(135deg, #3b82f6, #a855f7);
}

.facebook {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.reservation-form {
    background: linear-gradient(135deg, #374151, #1f2937);
    border: 1px solid #4b5563;
    border-radius: 1rem;
    padding: 2rem;
}

.reservation-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.reservation-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.reservation-form input,
.reservation-form textarea {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #4b5563;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.reservation-form input::placeholder,
.reservation-form textarea::placeholder {
    color: #9ca3af;
}

.reservation-form input:focus,
.reservation-form textarea:focus {
    outline: none;
    border-color: #a855f7;
}

.submit-btn {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
}

/* Footer */
.footer {
    background: #000;
    border-top: 1px solid #374151;
    padding: 3rem 0;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fbbf24, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo .logo-text p {
    font-size: 0.75rem;
    color: #9ca3af;
}

.footer-description {
    color: #9ca3af;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-social a {
    color: #9ca3af;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #fff;
}

.footer-copyright {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card.featured {
        grid-column: span 1;
    }
    
    .sports-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .social-buttons {
        flex-direction: column;
    }
    
    .sports-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .badge {
        width: 100%;
        text-align: center;
    }
}

/* AOS Animation Classes */
[data-aos] {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}