/* ==========================================
   PROFESSIONAL BARN CAFE DESIGN
   ========================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-brown: #5D4037;
    --medium-brown: #8D6E63;
    --light-brown: #A1887F;
    --cream: #F5F5DC;
    --off-white: #FDFBF7;
    --dark-text: #2C1810;
    --medium-text: #555;
    --accent-red: #C62828;
    --gold: #D4AF37;
    --shadow: rgba(93, 64, 55, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
    line-height: 1.7;
    color: var(--dark-text);
    background: var(--off-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================
   NAVIGATION
   ========================================== */

.main-nav {
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--medium-brown) 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--cream);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('../images/HeroBackground.png') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 20px;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    color: white;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.7);
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--cream);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-red), #B71C1C);
    color: white;
    box-shadow: 0 8px 25px rgba(198, 40, 40, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(198, 40, 40, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-brown);
    transform: translateY(-3px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator span {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ==========================================
   FEATURES BAR
   ========================================== */

.features-bar {
    background: linear-gradient(135deg, var(--primary-brown), var(--medium-brown));
    padding: 30px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: white;
}

.feature-icon {
    font-size: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.feature-item:nth-child(2) .feature-icon {
    animation-delay: 0.2s;
}

.feature-item:nth-child(3) .feature-icon {
    animation-delay: 0.4s;
}

.feature-item:nth-child(4) .feature-icon {
    animation-delay: 0.6s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.feature-text {
    font-size: 1.1rem;
    font-weight: 600;
}

/* ==========================================
   SECTION HEADERS
   ========================================== */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-red);
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary-brown);
    margin-bottom: 20px;
    font-weight: 800;
}

.section-intro {
    font-size: 1.2rem;
    color: var(--medium-text);
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================
   WELCOME SECTION
   ========================================== */

.welcome-section {
    padding: 100px 20px;
    background: var(--off-white);
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.welcome-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--medium-text);
    margin-bottom: 25px;
}

.welcome-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.welcome-feature {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease;
}

.welcome-feature:hover {
    transform: translateY(-5px);
}

.feature-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-brown);
    margin-bottom: 10px;
}

.feature-label {
    font-size: 0.9rem;
    color: var(--medium-text);
    font-weight: 500;
}

.welcome-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.welcome-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.welcome-image:hover img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-red);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 5px 20px rgba(198, 40, 40, 0.4);
}

/* ==========================================
   MENU PREVIEW
   ========================================== */

.menu-preview {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--cream) 0%, #E8DCC4 100%);
}

.menu-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.menu-preview-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
}

.menu-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(93, 64, 55, 0.25);
}

.card-image {
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-preview-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 1.6rem;
    color: var(--primary-brown);
    margin-bottom: 12px;
}

.card-content p {
    color: var(--medium-text);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.card-time {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-red);
    background: rgba(198, 40, 40, 0.1);
    padding: 6px 15px;
    border-radius: 20px;
}

.section-cta {
    text-align: center;
}

/* ==========================================
   EVENTS SECTION
   ========================================== */

.events-section {
    padding: 100px 20px;
    background: var(--off-white);
}

.events-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.events-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.events-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.events-content h2 {
    font-size: 2.8rem;
    color: var(--primary-brown);
    margin-bottom: 25px;
}

.events-content p {
    font-size: 1.1rem;
    color: var(--medium-text);
    line-height: 1.8;
    margin-bottom: 30px;
}

.events-list {
    list-style: none;
    margin: 30px 0;
}

.events-list li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    font-size: 1.05rem;
    color: var(--medium-text);
}

.events-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.4rem;
}

.events-info {
    background: rgba(93, 64, 55, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
}

.info-item {
    font-size: 1.1rem;
    color: var(--dark-text);
}

/* ==========================================
   REVIEWS SECTION
   ========================================== */

.reviews-section {
    padding: 100px 20px;
    background: white;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.review-card {
    background: linear-gradient(135deg, #FFFEFA, #FAF8F3);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(93, 64, 55, 0.2);
    border-color: var(--light-brown);
}

.review-stars {
    color: #f39c12;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.review-text {
    font-style: italic;
    color: var(--medium-text);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-name {
    font-weight: 700;
    color: var(--primary-brown);
    font-size: 1.1rem;
}

.author-via {
    font-size: 0.9rem;
    color: var(--medium-text);
}

.google-rating-box {
    background: linear-gradient(135deg, var(--primary-brown), var(--medium-brown));
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 15px 40px rgba(93, 64, 55, 0.3);
}

.rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.rating-stars {
    font-size: 2.5rem;
    color: #f39c12;
}

.rating-score {
    font-size: 3rem;
    font-weight: 800;
}

.google-rating-box p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.google-link {
    display: inline-block;
    padding: 12px 30px;
    background: white;
    color: var(--primary-brown);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.google-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #2C1810, var(--primary-brown));
    color: white;
}

.contact-section .section-label {
    color: var(--gold);
}

.contact-section h2 {
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--gold);
}

.info-card p {
    line-height: 1.8;
    font-size: 1.05rem;
}

.info-card a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: var(--gold);
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 700;
}

.info-note {
    font-size: 0.95rem;
    color: var(--gold);
    margin-top: 10px;
}

.info-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--gold);
    font-weight: 600;
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    height: 500px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================
   FOOTER
   ========================================== */

.main-footer {
    background: #1a1410;
    color: var(--cream);
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--cream);
    opacity: 0.8;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
    color: var(--cream);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    opacity: 1;
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    max-width: 1200px;
    margin: 0 auto;
}

/* ==========================================
   MENU PAGE SPECIFIC
   ========================================== */

.menu-page-header {
    background: linear-gradient(135deg, var(--primary-brown), var(--medium-brown));
    padding: 100px 20px 80px;
    text-align: center;
    color: white;
}

.menu-page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
}

.menu-page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.menu-content {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.menu-category {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.menu-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(93, 64, 55, 0.2);
    border-color: var(--light-brown);
}

.menu-category h3 {
    font-size: 2rem;
    color: var(--primary-brown);
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent-red);
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-servetime {
    background: rgba(198, 40, 40, 0.1);
    padding: 12px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    text-align: center;
}

.menu-servetime h4 {
    font-size: 0.95rem;
    color: var(--accent-red);
    font-weight: 600;
}

.menu-subtopics h4 {
    font-size: 1.3rem;
    color: var(--primary-brown);
    margin: 25px 0 15px;
    font-weight: 700;
}

.menu-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    transition: all 0.3s ease;
}

.menu-item:hover {
    background: rgba(245, 245, 220, 0.3);
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 10px;
}

.menu-item:last-child {
    border-bottom: none;
}

.item-details {
    flex: 1;
}

.item-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark-text);
    margin-bottom: 8px;
    display: block;
}

.item-description {
    color: var(--medium-text);
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

.item-price {
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--accent-red);
    white-space: nowrap;
}

/* ==========================================
   GALLERY PAGE
   ========================================== */

.gallery-page-header {
    background: linear-gradient(135deg, var(--primary-brown), var(--medium-brown));
    padding: 100px 20px 80px;
    text-align: center;
    color: white;
}

.gallery-page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
}

.gallery-page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.gallery-content {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(93, 64, 55, 0.25);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f5f5f5;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 1024px) {
    .welcome-content,
    .events-wrapper,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .welcome-image img {
        height: 400px;
    }
    
    .events-image {
        order: -1;
    }
    
    .events-image img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, var(--primary-brown), var(--medium-brown));
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        gap: 0;
        transition: left 0.3s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links a {
        display: block;
        padding: 20px 10px;
        font-size: 1.2rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .welcome-features {
        grid-template-columns: 1fr;
    }
    
    .menu-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .photo-gallery {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 80vh;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .btn {
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        flex-direction: column;
        gap: 8px;
    }
    
    .menu-category {
        padding: 25px 20px;
    }
    
    .contact-map {
        height: 300px;
    }
}

/* MOBILE RESPONSIVENESS IMPROVEMENTS */

@media (max-width: 768px) {
    /* Hero section */
    .hero {
        height: 85vh;
        padding: 20px 15px;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
        margin-bottom: 2rem;
    }
    
    /* Stack buttons vertically on mobile */
    .hero-cta {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .hero-cta .btn {
        width: 100%;
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    /* Features bar */
    .features-bar {
        padding: 20px 15px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .feature-icon {
        font-size: 1.8rem;
    }
    
    .feature-text {
        font-size: 0.95rem;
    }
    
    /* Section headers */
    .section-header h2 {
        font-size: 2rem !important;
    }
    
    .section-intro {
        font-size: 1rem;
    }
    
    .section-label {
        font-size: 0.8rem;
    }
    
    /* Welcome section */
    .welcome-section {
        padding: 60px 15px;
    }
    
    .welcome-text p {
        font-size: 1rem;
    }
    
    .welcome-image img {
        height: 300px;
    }
    
    .feature-number {
        font-size: 2rem;
    }
    
    .feature-label {
        font-size: 0.85rem;
    }
    
    /* Menu preview cards */
    .menu-preview {
        padding: 60px 15px;
    }
    
    .menu-preview-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .card-content h3 {
        font-size: 1.4rem;
    }
    
    .card-content p {
        font-size: 0.95rem;
    }
    
    /* Events section */
    .events-section {
        padding: 60px 15px;
    }
    
    .events-content h2 {
        font-size: 2rem;
    }
    
    .events-content p {
        font-size: 1rem;
    }
    
    .events-list li {
        font-size: 0.95rem;
        padding-left: 30px;
    }
    
    .events-image img {
        height: 280px;
    }
    
    /* Reviews */
    .reviews-section {
        padding: 60px 15px;
    }
    
    .review-card {
        padding: 25px 20px;
    }
    
    .review-text {
        font-size: 0.95rem;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    /* Contact section */
    .contact-section {
        padding: 60px 15px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .info-card h3 {
        font-size: 1.2rem;
    }
    
    .info-card p {
        font-size: 0.95rem;
    }
    
    .phone-number {
        font-size: 1.2rem;
    }
    
    .contact-map {
        height: 350px;
    }
    
    /* Footer */
    .main-footer {
        padding: 40px 15px 20px;
    }
    
    .footer-brand h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    /* Even smaller phones */
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 1.8rem !important;
    }
    
    .welcome-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .card-image {
        height: 180px;
    }
    
    .events-image img {
        height: 220px;
    }
    
    .contact-map {
        height: 280px;
    }
    
    .btn {
        font-size: 0.95rem;
        padding: 12px 24px;
    }
}

/* Landscape phones - prevent content from being cut off */
@media (max-width: 896px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 20px 60px;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
}

/* ==========================================
   ANIMATIONS
   ========================================== */

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Intersection Observer Classes */
.observe {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.observe.visible {
    opacity: 1;
    transform: translateY(0);
}