:root {
    --pink-primary: #FFB3D9;
    --red-primary: #C41E3A;
    --red-dark: #8B0020;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --gray: #666666;
    --cream: #FFF5F5;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
}

/* Typography */
.display-font {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.05em;
}

/* Hero Section - Full Photo */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    margin-top: 80px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://joysmashburger.com/asset/photo/cover.png') center center;
    background-size: cover;
    filter: brightness(0.7);
}

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

.hero-text {
    max-width: 800px;
    padding: 0 2rem;
}

.hero-text h1 {
    font-family: "Space Mono", monospace;
    font-size: 5.5rem;
    color: var(--white);
    line-height: 0.9;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.hero-text p {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    padding: 1.2rem 3rem;
    border: none;
    font-weight: 900;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-primary {
    background: var(--red-primary);
    color: var(--white);
    border-radius: 10px;
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: scale(1.05);
}

.btn-secondary {
    background: var(--white);
    color: var(--red-primary);
    border: 3px solid var(--white);
    border-radius: 10px;
}

.btn-secondary:hover {
    background: transparent;
    color: var(--white);
}

/* Trust Indicators */
.trust-bar {
    background: var(--pink-primary);
    padding: 2rem 0;
}

.trust-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4rem;
}

.trust-item {
    text-align: center;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--red-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Featured Menu */
.featured-menu {
    padding: 100px 3rem;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 5rem;
    font-family: "Space Mono", monospace;
    font-weight: bold;
    color: var(--red-dark);
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.menu-item {
    background: var(--cream);
    overflow: hidden;
    transition: transform 0.3s;
    border: 2px solid var(--pink-primary);
    border-radius: 10px;
}

.menu-item:hover {
    transform: translateY(-10px);
    border-color: var(--pink-primary);
}

.menu-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.menu-item-content {
    padding: 2rem;
    background: var(--white);
}

.menu-item h3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--red-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    min-height: 60px;
    height: 100px;
}

.menu-item .price {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--red-primary);
    margin-bottom: 0.5rem;
    font-family: 'Bebas Neue', sans-serif;
}

.menu-item p {
    color: var(--gray);
    font-weight: 600;
}

.view-menu-btn {
    text-align: center;
    margin-top: 4rem;
}

/* What Makes Us Different */
.difference {
    background: var(--cream);
    padding: 100px 3rem;
    border-radius: 100px;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.difference-item {
    text-align: center;
    padding: 2rem;
}

.difference-item h3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--red-dark);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.05em;
    line-height: 1.2;
    height: 30px;
}

.difference-item p {
    font-size: 1.1rem;
    color: var(--gray);
    font-weight: 600;
    line-height: 1.8;
}

/* Customer Reviews */
.reviews {
    padding: 100px 3rem;
    background: var(--white);
    position: relative;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s;
    border-radius: 30px;
}

.review-card:hover {
    transform: translateY(-5px);
}

.stars {
    color: var(--red-primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.review-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--black);
    font-weight: 600;
    min-height: 60px;
    height: 80px;
}

.reviewer-name {
    font-weight: 900;
    color: var(--red-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Visit Section */
.visit {
    background: var(--pink-primary);
    padding: 100px 3rem;
    border-radius: 20px 20px 0px 0px;
    position: relative;
}

.visit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.location-info h2 {
    font-size: 4rem;
    font-family: "Space Mono", monospace;
    color: var(--red-dark);
    margin-bottom: 2.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-item {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: var(--black);
}

.info-item strong {
    color: var(--red-dark);
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.map-container {
    height: 500px;
    background: #ddd;
    border: 5px solid var(--white);
    border-radius: 10px;
}

/* Responsive - Mobile Optimized Font Sizes */
@media (max-width: 768px) {
    /* Hero adjustments */
    .hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-text h1 {
        font-size: 3rem; /* Reduced from 4rem */
        line-height: 1;
    }
    
    .hero-text p {
        font-size: 1.1rem; /* Reduced from 1.5rem */
        margin-bottom: 2rem;
    }
    
    /* Buttons */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        padding: 1rem 2rem;
        font-size: 0.7rem;
        width: 100%;
        max-width: 200px;
    }
    
    /* Section titles */
    .section-title {
        font-size: 2.5rem; /* Reduced from 3rem */
        margin-bottom: 2rem;
    }
    
    /* Trust bar */
    .trust-bar {
        padding: 1.5rem 0;
    }
    
    .trust-items {
        gap: 2rem;
    }
    
    .trust-item {
        font-size: 0.9rem; /* Reduced from 1.2rem */
        width: 45%;
    }
    
    /* Menu items */
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .menu-item h3 {
        font-size: 1.5rem; /* Reduced from 2rem */
        min-height: auto;
    }
    
    .menu-item .price {
        font-size: 1.4rem; /* Reduced from 1.8rem */
    }
    
    .menu-item p {
        font-size: 0.9rem;
    }
    
    /* Difference section */
    .difference {
        border-radius: 50px;
    }
    
    .difference-item h3 {
        font-size: 1.8rem; /* Reduced from 2.5rem */
        min-height: auto;
    }
    
    .difference-item p {
        font-size: 0.95rem; /* Reduced from 1.1rem */
    }
    
    /* Reviews */
    .review-text {
        font-size: 0.95rem; /* Reduced from 1.1rem */
        min-height: auto;
    }
    
    .stars {
        font-size: 1.5rem; /* Reduced from 2rem */
    }
    
    /* Visit section */
    .visit-content {
        grid-template-columns: 1fr;
    }
    
    .location-info h2 {
        font-size: 2.5rem; /* Reduced from 4rem */
        margin-bottom: 2rem;
    }
    
    .info-item {
        font-size: 1rem; /* Reduced from 1.2rem */
    }
    
    .map-container {
        height: 300px;
    }
    
    /* Padding adjustments */
    .featured-menu,
    .difference,
    .reviews,
    .visit {
        padding: 60px 1.5rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .menu-item h3 {
        font-size: 1.3rem;
    }
    
    .difference-item h3 {
        font-size: 1.5rem;
    }
}

.difference-item img {
    width: 150px;
}

.reviews img {
    width: 250px;
    position: absolute;
    left: -57px;
    top: -111px;
    z-index: revert-layer;
}

.visit img {
    width: 150px;
    position: absolute;
    bottom: -72px;
    right: 0;
}

.marquee-container {
    overflow: hidden;
    width: 100%;
}

.marquee-track {
    display: flex;
    width: fit-content;
    animation: marquee 30s linear infinite;
    font-weight: bold;
}

.marquee-track span {
    white-space: nowrap;
    padding-right: 50px; /* Gap between repetitions */
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}



