/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #a02d2d;
    --primary-yellow: #e6b521;
    --dark-red: #7a2222;
    --dark-yellow: #c99a1c;
    --black: #000000;
    --black-light: #1a1a1a;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray-dark: #333333;
    --text-dark: #2C2C2C;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: var(--black);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo {
    height: 60px;
    width: auto;
    max-width: 200px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-yellow);
    transition: all 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
}

.nav-menu a.cta-button {
    color: var(--black) !important;
    background-color: var(--primary-yellow);
}

.nav-menu a.cta-button:hover {
    color: var(--black) !important;
    background-color: var(--dark-yellow);
}

.cta-button {
    background-color: var(--primary-yellow);
    color: var(--black);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
}

.cta-button:hover {
    background-color: var(--dark-yellow);
    color: var(--black);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-yellow);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-yellow);
    color: var(--primary-red);
}

.btn-primary:hover {
    background-color: var(--dark-yellow);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--primary-yellow);
}

.btn-secondary:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-red);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-outline:hover {
    background-color: var(--primary-red);
    color: var(--white);
}

/* Featured Food Section */
.featured-food {
    padding: 4rem 0;
    background-color: var(--white);
}

.featured-food-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-food-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--primary-yellow);
}

.food-hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.featured-food-image:hover .food-hero-image {
    transform: scale(1.05);
}

.featured-food-text h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.featured-tagline {
    font-size: 1.3rem;
    color: var(--primary-yellow);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.featured-food-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.featured-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 2px solid var(--gray-light);
    border-bottom: 2px solid var(--gray-light);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    color: var(--primary-red);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-dark);
    font-weight: 600;
}

/* Event Types Section */
.event-types {
    padding: 4rem 0;
    background-color: var(--black);
    color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.event-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.event-item {
    background-color: var(--black-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-yellow);
    transition: all 0.3s;
}

.event-item:hover {
    background-color: var(--primary-red);
    color: var(--white);
    transform: translateX(5px);
}

.event-item h3 {
    color: var(--primary-yellow);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.event-item:hover h3 {
    color: var(--primary-yellow);
}

.event-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
    transition: color 0.3s;
}

.event-item:hover p {
    color: var(--white);
}

/* Offerings Section */
.offerings-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.offering-item {
    background-color: var(--black);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid var(--primary-yellow);
}

.offering-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.offering-item h3 {
    color: var(--primary-yellow);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.offering-price {
    color: var(--primary-yellow);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.offering-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.offering-link {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
    display: inline-block;
}

.offering-link:hover {
    color: var(--white);
}

/* Pricing Highlight */
.pricing-highlight {
    padding: 4rem 0;
    background-color: var(--black);
    color: var(--white);
}

.pricing-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-box h2 {
    font-size: 2.5rem;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price-currency {
    font-size: 3rem;
    color: var(--primary-yellow);
    font-weight: 700;
}

.price-main {
    font-size: 5rem;
    color: var(--primary-yellow);
    font-weight: 700;
    line-height: 1;
}

.price-unit {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.pricing-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.pricing-includes {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Footer */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-logo {
    height: 120px;
    width: auto;
    max-width: 300px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-yellow);
}

.social-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary-red);
    border-radius: 5px;
    margin-top: 0.5rem;
}

.facebook-link {
    background-color: #1877F2;
    color: var(--white);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.3s;
}

.facebook-link:hover {
    background-color: #166FE5;
    transform: translateY(-2px);
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.powered-by {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.powered-by a {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.powered-by a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 1rem 0;
    }

    .nav-menu a {
        display: block;
        width: 100%;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-logo {
        max-width: 300px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .event-list {
        grid-template-columns: 1fr;
    }

    .offerings-grid {
        grid-template-columns: 1fr;
    }

    .pricing-box h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .featured-food-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .featured-food-text h2 {
        font-size: 2rem;
    }

    .featured-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .price-main {
        font-size: 4rem;
    }

    .price-currency {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1.5rem 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-logo {
        max-width: 250px;
    }

    .featured-food-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .featured-food-text h2 {
        font-size: 2rem;
    }

    .featured-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .price-main {
        font-size: 3.5rem;
    }

    .price-currency {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Menu Page Styles */
.menu-section {
    padding: 4rem 0;
    background-color: var(--black);
    color: var(--white);
}

.menu-section-alt {
    background-color: var(--black);
    color: var(--white);
}

.menu-category {
    max-width: 900px;
    margin: 0 auto;
}

.menu-category-title {
    font-size: 2.5rem;
    color: var(--primary-yellow);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.menu-category-price {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary-yellow);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.menu-category-description {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.menu-group {
    background-color: var(--black-light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary-yellow);
}

.menu-group-title {
    color: var(--primary-yellow);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    border-bottom: 2px solid var(--primary-yellow);
    padding-bottom: 0.5rem;
}

.menu-list {
    list-style: none;
}

.menu-list li {
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-list li:last-child {
    border-bottom: none;
}

.drinks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.drink-item {
    background-color: var(--black);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary-yellow);
    color: var(--white);
}

.drink-item h3 {
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.drink-item p {
    color: rgba(255, 255, 255, 0.9);
}

.drink-price {
    color: var(--primary-yellow);
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

/* Pricing Page Styles */
.pricing-main {
    padding: 4rem 0;
    background-color: var(--black);
    color: var(--white);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background-color: var(--black-light);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    transition: transform 0.3s;
    border: 2px solid var(--primary-yellow);
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 3px solid var(--primary-yellow);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--primary-yellow);
    color: var(--primary-red);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.pricing-card h2 {
    color: var(--primary-yellow);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    color: var(--primary-yellow);
    font-weight: 700;
    margin: 1rem 0 0.5rem;
}

.price-unit {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.price-minimum {
    color: var(--primary-yellow);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-note {
    background-color: var(--primary-yellow);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    max-width: 800px;
    margin: 2rem auto 0;
}

.pricing-note p {
    color: var(--black);
    font-weight: 600;
    margin: 0;
}

.included-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.included-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--gray-light);
    border-radius: 10px;
    border-top: 3px solid var(--primary-yellow);
}

.included-item h3 {
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.addons-section {
    padding: 4rem 0;
    background-color: var(--black);
    color: var(--white);
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.addon-card {
    background-color: var(--black-light);
    color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary-yellow);
}

.addon-card h3 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.addon-list {
    list-style: none;
}

.addon-list li {
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.addon-card p {
    color: rgba(255, 255, 255, 0.9);
}

.addon-list li:last-child {
    border-bottom: none;
}

.deposit-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.deposit-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.deposit-card {
    background-color: var(--gray-light);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-yellow);
}

.deposit-card h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.deposit-card p {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Services Page Styles */
.services-section {
    padding: 4rem 0;
    background-color: var(--black);
    color: var(--white);
}

.services-section .section-title {
    color: var(--primary-yellow);
}

.services-section-alt {
    background-color: var(--white);
    color: var(--text-dark);
}

.services-section-alt .section-title {
    color: var(--primary-red);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    background-color: var(--black-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-yellow);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    border: 2px solid var(--primary-yellow);
    border-left-width: 4px;
}

.service-item:hover {
    background-color: var(--primary-red);
    color: var(--white);
    transform: translateX(5px);
}

.service-item h3 {
    color: var(--primary-yellow);
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
    font-weight: 700;
    transition: color 0.3s;
}

.service-item:hover h3 {
    color: var(--primary-yellow);
}

.service-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    transition: color 0.3s;
}

.service-item:hover p {
    color: var(--white);
}

.provide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.provide-item {
    background-color: var(--gray-light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
}

.provide-item h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.provide-item p {
    color: var(--text-dark);
}

.service-area-section {
    padding: 4rem 0;
    background-color: var(--black);
    color: var(--white);
}

.service-area-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-area-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.service-area-section .section-title {
    color: var(--primary-yellow);
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 0;
    background-color: var(--black);
    color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-container {
    background-color: var(--black-light);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid var(--primary-yellow);
}

.contact-form-container h2 {
    color: var(--primary-yellow);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--primary-yellow);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
    background-color: var(--black);
    color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
    background-color: var(--black-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-note {
    background-color: var(--primary-yellow);
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
}

.form-note p {
    color: var(--black);
    font-size: 0.9rem;
    margin: 0;
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
    cursor: pointer;
    font-size: 1.1rem;
}

.contact-info-container {
    background-color: var(--black-light);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    height: fit-content;
    border: 2px solid var(--primary-yellow);
}

.contact-info-container h2 {
    color: var(--primary-yellow);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h3 {
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--primary-yellow);
}

.social-info {
    margin-bottom: 2rem;
}

.social-info h3 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.booking-note {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
}

.booking-note h3 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.booking-note ul {
    list-style: none;
    padding-left: 0;
}

.booking-note ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.booking-note ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
}

/* About Page Styles - Tio Joe Hero */
.tio-joe-hero {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    padding: 4rem 0;
    text-align: center;
    color: var(--white);
}

.tio-joe-logo-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tio-joe-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(230, 181, 33, 0.3));
}

.tio-joe-title {
    font-size: 3rem;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tio-joe-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Story Section */
.story-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 3rem;
    font-weight: 700;
}

.story-quote {
    background-color: var(--black);
    padding: 2.5rem;
    border-radius: 15px;
    margin: 3rem 0;
    border: 3px solid var(--primary-yellow);
    text-align: center;
}

.quote-text {
    font-size: 1.8rem;
    color: var(--primary-yellow);
    font-weight: 700;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.quote-author {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.story-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-dark);
}

.story-text p {
    margin-bottom: 1.5rem;
}

.story-dialogue {
    background-color: var(--gray-light);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-yellow);
}

.dialogue-line {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.dialogue-line:last-child {
    margin-bottom: 0;
}

.dialogue-line strong {
    color: var(--primary-red);
    font-weight: 700;
}

.dialogue-line em {
    color: var(--primary-red);
    font-style: italic;
    font-weight: 700;
}

.tribute {
    background-color: var(--black);
    color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    font-size: 1.2rem;
    line-height: 1.9;
    border: 2px solid var(--primary-yellow);
}

.tribute strong {
    color: var(--primary-yellow);
}

/* Mission Section */
.mission-section {
    padding: 4rem 0;
    background-color: var(--black);
    color: var(--white);
}

.mission-section .section-title {
    color: var(--primary-yellow);
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-content p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.mission-content strong {
    color: var(--primary-yellow);
}

/* Gallery Page Styles */
.gallery-section {
    padding: 4rem 0;
    background-color: var(--black);
    color: var(--white);
}

.gallery-section .section-title {
    color: var(--primary-yellow);
}

.gallery-intro {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary-yellow);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(230, 181, 33, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem 1.5rem 1.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: var(--primary-yellow);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

.gallery-footer-note {
    background-color: var(--black-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    border: 2px solid var(--primary-yellow);
}

.gallery-footer-note p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.gallery-footer-note a {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.gallery-footer-note a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Mobile Responsive Additions */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .menu-category-title {
        font-size: 2rem;
    }

    .menu-items-grid {
        grid-template-columns: 1fr;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .provide-grid {
        grid-template-columns: 1fr;
    }

    .deposit-info {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 2rem 0;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .menu-category-title {
        font-size: 1.75rem;
    }

    .drinks-grid {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .tio-joe-logo {
        max-width: 300px;
    }

    .tio-joe-title {
        font-size: 2rem;
    }

    .tio-joe-subtitle {
        font-size: 1.2rem;
    }

    .quote-text {
        font-size: 1.4rem;
    }

    .story-title {
        font-size: 2rem;
    }
}