/* Base & Reset */
:root {
    --primary-color: #FF0080;
    /* Neon Pink */
    --primary-hover: #D4006A;
    --bg-color: #121212;
    --bg-secondary: #1E1E1E;
    --text-color: #FFFFFF;
    --text-secondary: #AAAAAA;
    --font-main: 'Outfit', sans-serif;
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --shadow-neon: 0 0 10px rgba(255, 0, 128, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--border-radius);
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.section-padding {
    padding: 80px 0;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 0, 128, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 128, 0.6);
}

.btn-secondary {
    background-color: transparent;
    border-color: white;
    color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: black;
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.big-btn {
    padding: 18px 40px;
    font-size: 1.2rem;
    width: 100%;
    justify-content: center;
    max-width: 400px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s;
}

.nav a:not(.btn-nav):hover {
    color: var(--primary-color);
}

.nav .btn-nav {
    background-color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: black url('../assets/images/hero_new.jpg') no-repeat center center/contain;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #121212 0%, rgba(18, 18, 18, 0.7) 50%, rgba(18, 18, 18, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.badge {
    display: inline-block;
    background-color: rgba(255, 0, 128, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 0, 128, 0.3);
}

.hero p {
    font-size: 1.2rem;
    color: #DDDDDD;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.accent-box {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    z-index: 1;
}

.features-list {
    margin-top: 30px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.features-list i {
    color: var(--primary-color);
}

/* Gallery Preview */
.gallery-preview {
    margin: 40px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-grid img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.02);
}

/* Menu Section */
.menu {
    background-color: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.menu-table-wrapper {
    background: #181818;
    border-radius: 20px;
    padding: 4px;
    /* for gradient border effect equivalent */
    width: 100%;
    max-width: 900px;
    margin: 0 auto 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.menu-table {
    width: 100%;
    border-collapse: collapse;
    background: #181818;
    border-radius: 18px;
    /* inner radius */
    overflow: hidden;
}

.menu-table th,
.menu-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-table th {
    background-color: #252525;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.menu-table tr:last-child td {
    border-bottom: none;
}

.day-badge {
    color: var(--primary-color);
    font-weight: 700;
}

.menu-cta {
    text-align: center;
}

/* Steps Section */
.steps {
    text-align: center;
}

.center-title {
    text-align: center;
    margin-bottom: 50px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.step-card {
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.step-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.center-btn {
    display: flex;
    justify-content: center;
}

/* Location */
.location {
    position: relative;
    height: 450px;
}

.map-container {
    width: 100%;
    height: 100%;
}

.map-container iframe {
    filter: invert(90%) hue-rotate(180deg);
    /* Dark mode map effect */
}

.location-info {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 5;
}

.info-card {
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-width: 350px;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.info-card p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    color: white;
}

.info-card i {
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: black;
    padding: 50px 0 20px;
    text-align: center;
    border-top: 1px solid #222;
}

.footer-logo h2 {
    font-family: 'Great Vibes', cursive;
    /* Optional fancy font, sticking to sans for now or importing later if needed, but per design instructions, modern clear typography is better */
    /* Let's stick to the main font but make it stylish */
    font-size: 2rem;
    margin-bottom: 5px;
    color: white;
    text-transform: none;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    color: white;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 20px;
    font-size: 0.85rem;
    color: #666;
}

/* Floating Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
        /* simple mobile hide for MVP or use js toggle */
    }

    h1 {
        font-size: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .location-info {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        padding: 20px;
        margin-top: -50px;
        /* negative margin overlap */
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .info-card {
        width: 90%;
        max-width: none;
    }
}