/* Korean Talk Show Custom Styles */
:root {
    --primary: #ce1126; /* Korean red */
    --primary-dark: #a40000;
    --secondary: #003478; /* Korean blue */
    --accent: #f5d300; /* Korean yellow accent */
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    
    /* Restaurant Colors */
    --korean-bbq-color: #ce1126; /* Korean Red */
    --ghatey-chiya-color: #f5d300; /* Korean Yellow */
    --chhimeki-chulo-color: #003478; /* Korean Blue */
    
    /* New typography variables */
    --font-heading: 'Montserrat', 'Segoe UI', system-ui, sans-serif;
    --font-body: 'Open Sans', 'Segoe UI', system-ui, sans-serif;
    --font-accent: 'Poppins', 'Segoe UI', system-ui, sans-serif;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;500;600&family=Poppins:wght@400;500;600;700&display=swap');

body {
    font-family: var(--font-body);
    color: var(--dark);
    line-height: 1.7;
    background-color: #fff;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Top Button - Bottom Left */
.top-button {
    position: fixed;
    left: 25px;
    bottom: 25px;
    z-index: 1001;
    background-color: var(--primary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(206, 17, 38, 0.4);
    transition: all 0.3s ease;
    border: 2px solid white;
    opacity: 0;
    visibility: hidden;
}

.top-button.visible {
    opacity: 1;
    visibility: visible;
}

.top-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(206, 17, 38, 0.5);
    background-color: var(--primary-dark);
}

/* Header & Navigation */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    padding: 0.8rem 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo - PNG (Much Bigger and Prominent) */
.logo {
    display: flex;
    align-items: center;
    height: 100px; /* Increased significantly */
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 100%;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.03);
}

/* PNG Logo - Much Bigger Size with Shadow */
.logo-png {
    height: 100px; /* Significantly increased */
    width: auto;
    max-width: 350px; /* Much wider */
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    transition: all 0.3s ease;
}

.logo-png:hover {
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.2));
}

/* Remove text logo styling */
.logo-text {
    display: none;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 2.5rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.5px;
}

nav ul li a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

/* Active navigation indicator */
nav ul li a.active {
    color: var(--primary);
    font-weight: 700;
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to right, var(--primary) 0%, var(--accent) 100%);
    border-radius: 3px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    border-radius: 3px;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.6rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark);
    padding: 8px;
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
    color: var(--primary);
}

/* News Ticker - Adjusted for much bigger logo */
.news-ticker {
    background: linear-gradient(90deg, var(--secondary) 0%, #001f4d 100%);
    color: white;
    padding: 18px 0;
    overflow: hidden;
    position: relative;
    margin-top: 120px; /* Increased significantly for bigger logo */
    border-bottom: 4px solid var(--accent);
    box-shadow: 0 8px 25px rgba(0, 52, 120, 0.3);
}

.ticker-container {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.ticker-label {
    background: linear-gradient(135deg, var(--primary) 0%, #d1001a 100%);
    color: white;
    padding: 10px 24px;
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 2;
    flex-shrink: 0;
    margin-right: 35px;
    border-radius: 35px;
    box-shadow: 0 6px 15px rgba(206, 17, 38, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 6px 15px rgba(206, 17, 38, 0.4);
    }
    50% {
        box-shadow: 0 6px 20px rgba(206, 17, 38, 0.6);
    }
    100% {
        box-shadow: 0 6px 15px rgba(206, 17, 38, 0.4);
    }
}

.ticker-content {
    display: flex;
    animation: ticker 30s linear infinite;
}

.ticker-content:hover {
    animation-play-state: paused;
}

.ticker-item {
    padding: 0 35px;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    font-weight: 500;
    position: relative;
    font-family: var(--font-body);
}

.ticker-item i {
    color: var(--accent);
    margin-right: 12px;
    font-size: 1.2rem;
}

.ticker-item::after {
    content: "•";
    position: absolute;
    right: 0;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.8rem;
}

.ticker-item:last-child::after {
    content: "";
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Hero Section - Improved Typography */
.hero {
    padding: 220px 0 140px;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1565958011703-44f9829ba187?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(206, 17, 38, 0.15) 0%, rgba(0, 52, 120, 0.15) 100%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.hero h1 span {
    background: linear-gradient(to right, #ff6b6b 0%, #f5d300 50%, #4d96ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    font-weight: 900;
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 2.5rem;
    font-weight: 600;
    animation: fadeInUp 1s ease 0.2s both;
    letter-spacing: 0.5px;
}

.hero p {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 300;
    max-width: 850px;
    margin: 0 auto 3.5rem;
    color: rgba(255, 255, 255, 0.95);
    animation: fadeInUp 1s ease 0.4s both;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 18px 50px;
    border-radius: 35px;
    text-decoration: none;
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.4s ease;
    border: 3px solid transparent;
    animation: fadeInUp 1s ease 0.6s both;
    box-shadow: 0 12px 30px rgba(206, 17, 38, 0.4);
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(206, 17, 38, 0.5);
    border-color: white;
    background: transparent;
    color: white;
}

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

/* Section Styling */
section {
    padding: 100px 0;
    scroll-margin-top: 120px;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--dark);
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary) 0%, var(--accent) 50%, var(--secondary) 100%);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title p {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 700px;
    margin: 2rem auto 0;
    font-weight: 300;
    line-height: 1.8;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-img {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.about-img:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}

.about-img:hover img {
    transform: scale(1.08);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--secondary);
    letter-spacing: -0.3px;
}

.about-text p {
    font-family: var(--font-body);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: var(--gray);
    line-height: 1.8;
    font-weight: 400;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 3rem;
}

.feature {
    flex: 1;
    min-width: 220px;
    background: linear-gradient(145deg, #ffffff, #f0f2f5);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.feature:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    background: linear-gradient(145deg, #ffffff, #e8ebf0);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature:hover i {
    transform: scale(1.1);
}

.feature h4 {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--secondary);
}

.feature p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
}

/* Restaurants Section - UPDATED FOR THREE RESTAURANTS */
.restaurants {
    background-color: var(--light-gray);
    padding: 120px 0;
}

.restaurant-hero {
    margin-bottom: 70px;
    text-align: center;
}

.restaurant-hero h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.restaurant-hero p {
    font-family: var(--font-body);
    font-size: 1.3rem;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
}

.restaurant-large {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 60px;
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.restaurant-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.restaurant-large:nth-child(even) {
    flex-direction: row-reverse;
}

.restaurant-large-img {
    flex: 1;
    min-height: 450px;
    overflow: hidden;
}

.restaurant-large-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.restaurant-large:hover .restaurant-large-img img {
    transform: scale(1.08);
}

.restaurant-large-content {
    flex: 1;
    padding: 50px;
}

/* Korean BBQ specific styles */
.restaurant-large:nth-child(1) .restaurant-large-content h3 {
    color: var(--korean-bbq-color);
}

.restaurant-large:nth-child(1) .restaurant-feature:hover {
    background: linear-gradient(135deg, var(--korean-bbq-color) 0%, #a40000 100%);
}

/* Ghatey Chiya specific styles */
.restaurant-large:nth-child(2) .restaurant-large-content h3 {
    color: var(--ghatey-chiya-color);
}

.restaurant-large:nth-child(2) .restaurant-feature:hover {
    background: linear-gradient(135deg, var(--ghatey-chiya-color) 0%, #d4b800 100%);
}

/* Chhimeki Chulo specific styles */
.restaurant-large:nth-child(3) .restaurant-large-content h3 {
    color: var(--chhimeki-chulo-color);
}

.restaurant-large:nth-child(3) .restaurant-feature:hover {
    background: linear-gradient(135deg, var(--chhimeki-chulo-color) 0%, #00255a 100%);
}

.restaurant-large-content h3 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.restaurant-large-content p {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.9;
    font-weight: 400;
}

.restaurant-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.restaurant-feature {
    background: linear-gradient(135deg, var(--light-gray) 0%, #e8ecef 100%);
    padding: 14px 25px;
    border-radius: 35px;
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--secondary);
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.restaurant-feature:hover {
    color: white;
    transform: translateY(-3px);
}

/* YouTube Section */
.youtube-container {
    max-width: 1200px;
    margin: 0 auto;
}

.channel-info {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.channel-logo {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.channel-details h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--dark);
    letter-spacing: -0.3px;
}

.channel-details p {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
    font-weight: 400;
}

.subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
    padding: 14px 30px;
    border-radius: 35px;
    text-decoration: none;
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}

.subscribe-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.4);
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.video-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.video-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.9);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.video-card:hover .video-play-icon {
    background-color: var(--primary);
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 200px);
}

.video-info h4 {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
    flex-grow: 1;
    line-height: 1.5;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    color: var(--gray);
    font-family: var(--font-body);
    font-size: 0.9rem;
    margin-top: auto;
    font-weight: 500;
}

.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    color: var(--gray);
}

.loading-spinner i {
    font-size: 2.5rem;
    margin-right: 15px;
    color: var(--primary);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error-message {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border-radius: 12px;
    margin: 25px 0;
    font-family: var(--font-body);
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(114, 28, 36, 0.1);
}

.video-description {
    color: var(--gray);
    font-family: var(--font-body);
    font-size: 0.95rem;
    margin: 10px 0 15px;
    line-height: 1.6;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.video-date {
    color: var(--gray);
    font-family: var(--font-body);
    font-size: 0.85rem;
    margin-top: 8px;
    font-weight: 500;
}

/* Video Filters */
.video-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: linear-gradient(135deg, var(--light-gray) 0%, #e9ecef 100%);
    color: var(--dark);
    border: none;
    padding: 12px 28px;
    border-radius: 35px;
    cursor: pointer;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.filter-btn.active, .filter-btn:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(206, 17, 38, 0.3);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, var(--primary) 0%, var(--accent) 50%, var(--secondary) 100%);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
    align-items: start;
}

.contact-info {
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
   
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-gray);
    letter-spacing: -0.3px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    margin-right: 25px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(206, 17, 38, 0.2);
}

.contact-details h4 {
    font-family: var(--font-accent);
    color: var(--dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-details p {
    font-family: var(--font-body);
    color: var(--gray);
    line-height: 1.7;
    font-size: 1.05rem;
}

.contact-form {
    padding: 50px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -0.3px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--dark);
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 1.05rem;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(206, 17, 38, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 12px;
    font-family: var(--font-accent);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 10px 25px rgba(206, 17, 38, 0.3);
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(206, 17, 38, 0.4);
    background: linear-gradient(135deg, var(--primary-dark) 0%, #00255a 100%);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1e23 0%, #0d1117 100%);
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column {
    flex: 1;
    min-width: 280px;
}

.footer-column h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: -0.2px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--accent);
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.footer-column p {
    font-family: var(--font-body);
    color: #b0b7c3;
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1.05rem;
    font-weight: 300;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.3rem;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(206, 17, 38, 0.3);
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    font-family: var(--font-body);
    color: #b0b7c3;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0b7c3;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
}

/* YouTube View All Button */
.youtube-view-all-btn {
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 35px;
    cursor: pointer;
    font-family: var(--font-accent);
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(206, 17, 38, 0.3);
}

.youtube-view-all-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(206, 17, 38, 0.4);
    background: linear-gradient(135deg, var(--primary-dark) 0%, #a40000 100%);
}

/* Responsive Design - UPDATED FOR THREE RESTAURANTS */
@media (max-width: 1200px) {
    .logo {
        height: 90px;
    }
    
    .logo-png {
        height: 90px;
        max-width: 300px;
    }
    
    .news-ticker {
        margin-top: 110px;
    }
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-img, .about-text {
        width: 100%;
    }
    
    .hero h1 {
        font-size: 3.8rem;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .restaurant-large {
        flex-direction: column !important;
        margin-bottom: 70px;
    }
    
    .restaurant-large-img {
        min-height: 350px;
        width: 100%;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .logo {
        height: 80px;
    }
    
    .logo-png {
        height: 80px;
        max-width: 250px;
    }
    
    .news-ticker {
        margin-top: 100px;
    }
    
    .restaurant-large-content h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav ul {
        position: fixed;
        top: 110px; /* Adjusted for bigger logo */
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 25px 0;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        z-index: 999;
        border-top: 2px solid var(--light-gray);
    }
    
    nav ul.active {
        transform: translateY(0);
    }
    
    nav ul li {
        margin: 20px 0;
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
    
    nav ul li a {
        font-size: 1.3rem;
        padding: 10px 0;
    }
    
    .channel-info {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .hero {
        padding: 200px 0 100px;
        background-attachment: scroll;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .restaurant-large-content h3 {
        font-size: 2.2rem;
    }
    
    .top-button {
        left: 20px;
        bottom: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .video-filters {
        gap: 12px;
    }
    
    .contact-info, .contact-form {
        padding: 30px;
    }
    
    /* Adjust logo for mobile */
    .logo {
        height: 70px;
    }
    
    .logo-png {
        height: 70px;
        max-width: 200px;
    }
    
    .news-ticker {
        margin-top: 90px;
        padding: 15px 0;
    }
    
    .ticker-label {
        margin-right: 20px;
        padding: 8px 18px;
        font-size: 0.85rem;
    }
    
    .ticker-item {
        padding: 0 20px;
        font-size: 1.05rem;
    }
    
    .restaurant-large-content {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .news-ticker {
        margin-top: 85px;
    }
    
    .restaurant-hero h2 {
        font-size: 2.8rem;
    }
    
    .restaurant-large-content h3 {
        font-size: 2rem;
    }
    
    .ticker-label {
        margin-right: 15px;
        padding: 6px 14px;
        font-size: 0.8rem;
    }
    
    .ticker-item {
        padding: 0 15px;
        font-size: 1rem;
    }
    
    /* Adjust logo for very small screens */
    .logo {
        height: 60px;
    }
    
    .logo-png {
        height: 60px;
        max-width: 180px;
    }
    
    nav ul {
        top: 90px;
    }
    
    .hero {
        padding: 180px 0 80px;
    }
    
    section {
        padding: 80px 0;
    }
}