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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #1a1a1a;
}

.hero {
    height: 100vh;
    background: linear-gradient(135deg, #2c1810 0%, #4a2c1a 50%, #4b2300 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(218,165,32,0.1)"/><circle cx="80" cy="40" r="0.5" fill="rgba(218,165,32,0.05)"/><circle cx="40" cy="70" r="1.5" fill="rgba(218,165,32,0.08)"/><circle cx="70" cy="80" r="0.8" fill="rgba(218,165,32,0.06)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.hero-content {
    z-index: 2;
    position: relative;
}

.logo-container {
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

.logo-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #daa520;
    box-shadow: 0 8px 32px rgba(218, 165, 32, 0.3), 
                inset 0 2px 4px rgba(255, 255, 255, 0.1);
    object-fit: cover;
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(218, 165, 32, 0.4), 
                inset 0 2px 4px rgba(255, 255, 255, 0.2);
}

.logo-text {
    font-size: 3.5rem;
    font-weight: bold;
    color: #daa520;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.tagline {
    font-size: 1.5rem;
    color: rgba(218, 165, 32, 0.9);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid rgba(218, 165, 32, 0.3);
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.6s both;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #b8860b 0%, #daa520 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about {
    text-align: center;
    background: linear-gradient(135deg, #2d2d2d 0%, #1e1e1e 100%);
}

.about h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #daa520;
    position: relative;
}

.about h2::after {
    content: '';
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.about p {
    font-size: 1.3rem;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.menu-preview {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    text-align: center;
}

.menu-preview h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #daa520;
    position: relative;
}

.menu-preview h2::after {
    content: '';
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.menu-item {
    background: linear-gradient(135deg, #4b2300 0%, #2c1810 100%);
    padding: 40px 30px;
    border-radius: 20px;
    color: #f5f5f5;
    transform: translateY(0);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(218, 165, 32, 0.2);
}

.menu-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.3s ease;
    opacity: 0;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(218, 165, 32, 0.2);
    border-color: rgba(218, 165, 32, 0.4);
}

.menu-item:hover::before {
    opacity: 1;
}

.menu-item h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #daa520;
}

.menu-item p {
    font-size: 1.1rem;
    opacity: 0.9;
    color: #cccccc;
}

.menu-gallery {
    background: linear-gradient(135deg, #2d2d2d 0%, #1e1e1e 100%);
    text-align: center;
}

.menu-gallery h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #daa520;
    position: relative;
}

.menu-gallery h2::after {
    content: '';
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.menu-gallery p {
    font-size: 1.3rem;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto 50px auto;
    line-height: 1.8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gallery-item {
    background: linear-gradient(135deg, #4b2300 0%, #2c1810 100%);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(218, 165, 32, 0.2);
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(218, 165, 32, 0.2);
    border-color: rgba(218, 165, 32, 0.4);
}

.gallery-item-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.gallery-item-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="food-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(26,26,26,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23food-pattern)"/></svg>');
}

.gallery-item-content {
    padding: 30px;
    text-align: left;
}

.gallery-item h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #daa520;
}

.gallery-item p {
    font-size: 1.1rem;
    color: #cccccc;
    opacity: 0.9;
    line-height: 1.6;
}

.order-online {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    text-align: center;
}

.order-online h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #daa520;
    position: relative;
}

.order-online h2::after {
    content: '';
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.order-online > p {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 50px;
}

.platform-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.platform-link {
    display: block;
    background: linear-gradient(135deg, #4b2300 0%, #2c1810 100%);
    color: #f5f5f5;
    text-decoration: none;
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(218, 165, 32, 0.2);
}

.platform-link::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.3s ease;
    opacity: 0;
}

.platform-link:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(218, 165, 32, 0.2);
    border-color: rgba(218, 165, 32, 0.4);
}

.platform-link:hover::before {
    opacity: 1;
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.platform-link h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #daa520;
}

.rating {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: bold;
    color: #daa520;
}

.platform-link p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
    color: #cccccc;
}

.contact {
    background: linear-gradient(135deg, #2d2d2d 0%, #1e1e1e 100%);
    color: #f5f5f5;
    text-align: center;
}

.contact h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #daa520;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.contact-item {
    padding: 40px 30px;
    background: linear-gradient(135deg, #4b2300 0%, #2c1810 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(218, 165, 32, 0.2);
}

.contact-item:hover {
    background: linear-gradient(135deg, #2c1810 0%, #4b2300 100%);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(218, 165, 32, 0.2);
    border-color: rgba(218, 165, 32, 0.4);
}

.contact-item .emoji {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.contact-item h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #daa520;
}

.contact-item p {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.6;
}

.contact-item .highlight {
    color: #daa520;
    font-weight: bold;
}

.footer {
    background: #0d0d0d;
    color: #cccccc;
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid rgba(218, 165, 32, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(218, 165, 32, 0.8);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Accessibility: Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 100;
  background: #fff;
  color: #000;
}
.skip-link:focus {
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  padding: 1em;
}

/* Explicit heading font sizes (fixes h1 warning) */
h1, .logo-text { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; }

/* Responsive logo image */
.logo-image {
  width: 92px;
  height: 92px;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

/* Responsive menu grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

/* Contact info lists */
.hours, .contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .logo-image {
        width: 100px;
        height: 100px;
    }
    
    .logo-text {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
        padding: 0 20px;
    }
    
    .about h2, .contact h2, .menu-preview h2, .order-online h2, .menu-gallery h2 {
        font-size: 2.2rem;
    }
    
    .about p, .order-online > p, .menu-gallery p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .menu-grid, .platform-links, .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .content-section {
        padding: 60px 15px;
    }
    
    .menu-item, .platform-link, .contact-item, .gallery-item {
        padding: 30px 20px;
    }
    
    .gallery-item-content {
        padding: 20px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 20px;
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .about h2, .contact h2, .menu-preview h2, .order-online h2, .menu-gallery h2 {
        font-size: 1.8rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .contact-item .emoji {
        font-size: 2.5rem;
    }
    
    .contact-item h3 {
        font-size: 1.5rem;
    }
    
    .contact-item p {
        font-size: 1rem;
    }
    
    .gallery-item-image {
        height: 200px;
        font-size: 3rem;
    }
}