@import url('https://fonts.googleapis.com/css2?family=Limelight&display=swap');

/* Base Styles */
:root {
    --sidebar-width: 250px;
    --dark-bg: #1A1A1A;
    --gold: #9e6c32;
    --text-color: #CCCCCC;
    --heading-font: 'Georgia', serif;
    --body-font: 'Arial', sans-serif;
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 1rem;
    --space-4: 2rem;
    --space-5: 4rem;
}

/* Accessibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--gold);
    color: white;
    padding: 8px;
    z-index: 100;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--space-4);
}

body {
    font-family: var(--body-font);
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: white;
    margin-bottom: var(--space-3);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    letter-spacing: 2px;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: var(--space-3);
    max-width: 70ch;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover,
a:focus {
    color: var(--gold);
    outline: none;
}

a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-3);
}

/* Sidebar Navigation */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background-color: rgba(26, 26, 26, 0.95);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

.logo {
    margin-bottom: 3rem;
    text-align: center;
}

.logo img {
    width: 100px;
    height: auto;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin-bottom: 1.5rem;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--gold);
}

.social-links {
    margin-top: auto;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 24px;
    height: 24px;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.social-icon:hover {
    background-color: var(--gold);
    transform: translateY(-2px);
}

.social-icon:hover svg {
    color: white;
}

.social-icon:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Main Content */
.main-content {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background-color: var(--dark-bg);
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    padding: 2rem;
}

.hero-logo {
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo img {
    width: 100%;
    height: auto;
}

.subtitle {
    color: var(--gold);
    letter-spacing: 3px;
    margin-top: 1rem;
    font-size: 1.2rem;
}

/* Description Section */
.description {
    padding: 4rem 2rem;
    text-align: center;
}

.tag {
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}



.description-content {
    max-width: 800px;
    margin: 0 auto;
}

.description-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.description-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.description-text {
    margin-bottom: 2rem;
    line-height: 1.8;
    text-align: center;
    margin: 0 auto;
}

.btn-learn {
    display: inline-block;
    padding: 1rem 2rem;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn-learn:hover {
    background-color: var(--text-color);
    color: var(--dark-bg);
}

/* Reservations Section */
.reservations {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 4rem 2rem;
    text-align: center;
}

.reservations h2 {
    color: white;
    margin-bottom: 2rem;
    letter-spacing: 3px;
}

.reservation-text {
    max-width: 800px;
    margin: 0 auto;
    letter-spacing: 1px;
    line-height: 1.8;
}

/* Menu Section */
.menu-section {
    padding: 4rem 2rem;
    margin-bottom: 4rem;
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    text-align: center;
}

.category h3 {
    color: white;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.category p {
    font-size: 0.9rem;
    margin: 0 auto;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.menu-item, .menu-item p {
    text-align: center;
    margin: 0 auto;
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.menu-item p {
    font-size: 0.8rem;
}

.menu-item .menu-item-title {
    color: var(--gold);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    font-size: 1.1rem;
    font-weight: 550;
}

/* Footer */
.footer {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-logo {
    margin: 0;
}

.footer-logo img {
    width: 100px;
    height: auto;
}

.footer-bottom {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .social-links {
    margin: 0;
}

.sponsors {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 2rem 4rem;
  }

  #sponsors h2{
    margin: 0 auto;
    text-align: center;
  }
  
  .sponsor-logo {
    width: 120px;
    height: 120px;
    background: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0.4rem;
    
  }
  
  #sponsors .sponsor-logo {
    border: 2px solid var(--gold) !important; /* thinner outline */
    transition: box-shadow .3s ease, transform .3s ease;
    background-color: rgb(255, 233, 209);
  }
  
  #sponsors .sponsor-logo:hover {
    box-shadow: 0 0 12px var(--gold);
    transform: translateY(-2px);
  }

  .sponsor-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .menu-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
    }

    .menu-categories {
        grid-template-columns: 1fr;
    }

    .menu-items {
        grid-template-columns: 1fr;
    }

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

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.description,
.reservations,
.menu-section {
    animation: fadeIn 1s ease-out forwards;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
}

.menu-toggle-label {
    display: none;
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1002;
    cursor: pointer;
    width: 30px;
    height: 30px;
    padding: 5px;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
    content: '';
    display: block;
    background: white;
    height: 2px;
    width: 100%;
    position: absolute;
    transition: transform 0.3s ease;
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    bottom: -8px;
}

@media (max-width: 768px) {
    .menu-toggle-label {
        display: block;
    }

    .menu-toggle:checked ~ .sidebar {
        transform: translateX(0);
    }

    .menu-toggle:checked ~ .menu-toggle-label .menu-icon {
        transform: rotate(45deg);
    }

    .menu-toggle:checked ~ .menu-toggle-label .menu-icon::before {
        opacity: 0;
    }

    .menu-toggle:checked ~ .menu-toggle-label .menu-icon::after {
        transform: translateY(-8px) rotate(-90deg);
    }

    /* Prevent scrolling when menu is open */
    .menu-toggle:checked ~ .main-content {
        position: fixed;
        width: 100%;
        height: 100%;
    }
}

/* Accessibility */
.menu-toggle-label:focus-within {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Form Styles */
.reservation-form {
    max-width: 600px;
    margin: var(--space-4) auto;
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.form-group {
    margin-bottom: var(--space-3);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-2);
    color: white;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: var(--space-2);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: white;
    font-size: 1rem;
}

.form-group select option{
    color: black
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(184, 134, 11, 0.25);
}

.btn-primary {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background-color: var(--gold);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #684e17;
}

.btn-primary:focus-visible {
    outline: 2px solid white;
    outline-offset: 2px;
}

/* Contact Section */
.contact-section {
    display: none;
}

/* Print Styles */
@media print {
    body {
        background: white;
        color: black;
    }

    .sidebar,
    .menu-toggle,
    .menu-toggle-label {
        display: none;
    }

    .main-content {
        margin-left: 0;
    }

    img {
        max-width: 100% !important;
    }

    a {
        text-decoration: none;
        color: black;
    }

    a[href^="http"]:after {
        content: " (" attr(href) ")";
    }

    a[href^="#"]:after {
        display: none;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High Contrast Mode */
@media (forced-colors: active) {
    .btn-primary,
    .social-icon,
    .menu-icon,
    .menu-icon::before,
    .menu-icon::after {
        forced-color-adjust: none;
    }
    .social-icon {
        border: 1px solid currentColor;
    }
    .social-icon svg {
        forced-color-adjust: auto;
    }
} 

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

.hero-icon {
    width: 192px;
    height: 192px;
    object-fit: contain;
}

.hero-title {
    font-family: 'Limelight', 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 5rem;
    color: var(--gold);
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 1.5rem;
    margin-top: 1rem;
    letter-spacing: 0.2em;
    color: #fff;
    text-align: center;
}

/* Update existing hero styles */
.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    padding: 2rem;
}

.hero-logo {
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo img {
    width: 100%;
    height: auto;
}

.subtitle {
    color: var(--gold);
    letter-spacing: 3px;
    margin-top: 1rem;
    font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-icon {
        width: 150px;
        height: 150px;
    }
} 

/* Footer styles */
.footer {
    background-color: var(--dark-bg);
    padding: 2rem 0;
    color: var(--light-text);
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: row;
}
@media (min-width: 1032px) {
    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }
}


.footer-logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-nav a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--gold);
}

.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icon {
    width: 24px;
    height: 24px;
    color: var(--light-text);
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--gold);
}

.footer-bottom, .footer-bottom p{
    text-align: center;
    margin-top: 1rem;
    padding-top: 0.2rem;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (max-width: 767px) {
    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .footer-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
} 