:root {
    --primary-color: #E53935;
    /* Brand Red */
    --secondary-color: #121212;
    /* Dark Background */
    --text-color: #FFFFFF;
    --text-muted: #B0B0B0;
    --accent-color: #FFCA28;
    /* Cheese Gold */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --transition: all 0.3s ease;
}

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

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

/* Share Button */
.share-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--primary-color);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    transition: transform 0.3s;
}

.share-btn:hover {
    transform: scale(1.1) rotate(15deg);
}

/* Check-In Button */
.checkin-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background-color: var(--accent-color);
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    transition: transform 0.3s;
}

.checkin-btn:hover {
    transform: scale(1.1);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    border-radius: 8px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: rgba(18, 18, 18, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-color);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary-color);
}

.logo span {
    color: var(--text-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 1.1rem;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../assets/images/hero-cheesesteak.png') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
}

.hero h1 {
    font-size: 4rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 800px;
}

.btn {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 700;
    border-radius: 5px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    display: inline-block;
    border: 2px solid var(--primary-color);
}



.btn-transparent {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    margin-top: 1rem;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-transparent:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Leaderboard Ranks */
.review-card.rank-1 {
    border: 2px solid #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    order: -3;
}

.review-card.rank-2 {
    border: 2px solid #c0c0c0;
    order: -2;
}

.review-card.rank-3 {
    border: 2px solid #cd7f32;
    order: -1;
}

.rank-badge {
    position: absolute;
    top: -15px;
    right: -10px;
    background: var(--primary-color);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.review-card.rank-1 .rank-badge {
    background: #ffd700;
    color: #000;
}

.review-card.rank-2 .rank-badge {
    background: #c0c0c0;
    color: #000;
}

.review-card.rank-3 .rank-badge {
    background: #cd7f32;
    color: #000;
}

/* Engagement Stats */
.engagement-stats {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    color: #888;
    font-size: 0.9rem;
}

.engagement-stats i {
    margin-right: 5px;
    color: var(--text-color);
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

/* Sections */
.section {
    padding: 4rem 5%;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid #333;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ranking-section {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
}

.bg-dark {
    background-color: #1a1a1a;
}

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

/* Footer */
footer {
    background-color: #000;
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid #333;
}

/* Social Links */
.social-links {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.8rem;
    transition: color 0.3s;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.social-links .fa-facebook {
    color: #1877F2;
}

.social-links .fa-instagram {
    color: #E4405F;
}

.social-links .fa-tiktok {
    color: #000000;
    background: #fff;
    border-radius: 4px;
    padding: 0 2px;
    height: 1em;
    width: 1em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Menu Scans */
.menu-images-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.menu-scan {
    max-width: 48%;
    /* Side by side on desktop */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
}

@media (max-width: 768px) {
    .menu-scan {
        max-width: 100%;
        /* Stack on mobile */
    }
}


.contact-info p {
    margin: 0.5rem 0;
    color: var(--text-muted);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        order: -1;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--secondary-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem 0;
        transition: transform 0.3s ease-in-out, visibility 0.3s;
        
        transform: translateX(100%);
        visibility: hidden;
        border-bottom: 1px solid #333;
    }

    .nav-links.active {
        transform: translateX(0);
        visibility: visible;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }
}