:root {
    --primary-black: #111111;
    --primary-yellow: #FFD100;
    --secondary-yellow: #FFDC3C;
    --text-light: #ffffff;
    --text-muted: #e0e0e0;
    --background-dark: #0A0A0A;
    --glass-bg: rgba(10, 10, 10, 0.85);
    --card-bg: rgba(25, 25, 25, 0.9);
    --border-glow: 0 0 0 2px var(--primary-yellow);
    --shadow: 0 8px 32px 0 rgba(0,0,0,0.25);
    --main-gradient: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    --section-padding: 5rem 2rem;
    --content-width: 1200px;
    --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--background-dark);
    color: var(--text-light);
    min-height: 100vh;
    line-height: 1.7;
    overflow-x: hidden;
}

/* Header Styles */
header.header {
    background: var(--glass-bg);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 209, 0, 0.3);
    transition: all var(--transition);
    padding: 0.5rem 0;
}

.header-container {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.header-scrolled {
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid var(--primary-yellow);
    padding: 0.3rem 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 1rem;
    position: relative;
}

.logo-img {
    height: 52px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 209, 0, 0.6));
    transition: transform var(--transition), filter var(--transition);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    padding: 3px;
    border: 1px solid rgba(255, 209, 0, 0.3);
}

.logo:hover .logo-img {
    transform: scale(1.05) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(255, 209, 0, 0.8));
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-title {
    color: var(--primary-yellow);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-tagline {
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.8;
}

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

.nav-link {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    position: relative;
    text-decoration: none;
    transition: color var(--transition);
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    display: block;
    height: 2px;
    width: 0;
    background: var(--primary-yellow);
    border-radius: 2px;
    transition: width var(--transition);
    position: absolute;
    left: 0;
    bottom: 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-yellow);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    background: rgba(255, 209, 0, 0.1);
    border: 1px solid rgba(255, 209, 0, 0.3);
    transition: all var(--transition);
}

.header-phone i {
    color: var(--primary-yellow);
    font-size: 1rem;
}

.header-phone:hover {
    background: rgba(255, 209, 0, 0.2);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary-yellow);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color var(--transition);
    padding: 0.5rem;
}

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

/* Mobile menu */
.mobile-menu {
    display: none;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mobile-logo img {
    height: 60px;
    width: auto;
    border-radius: 50%;
    filter: drop-shadow(0 0 10px rgba(255, 209, 0, 0.6));
    background: rgba(0, 0, 0, 0.2);
    padding: 3px;
    border: 1px solid rgba(255, 209, 0, 0.3);
}

.mobile-logo-text {
    display: flex;
    flex-direction: column;
}

.mobile-logo-text span:first-child {
    color: var(--primary-yellow);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.mobile-logo-text span:last-child {
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.8;
}

@media (max-width: 1100px) {
    .header-phone span {
        display: none;
    }
    
    .header-phone {
        padding: 0.5rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
}

@media (max-width: 900px) {
    .navbar {
        padding: 0;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .header-phone {
        font-size: 1.2rem;
        padding: 0.5rem;
    }
    
    .mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        right: -100vw;
        width: 80vw;
        height: 100vh;
        background: rgba(25, 25, 25, 0.2);
        box-shadow: -8px 0 32px 0 rgba(0,0,0,0.15);
        z-index: 200;
        transition: right var(--transition);
        padding: 2rem 1.5rem;
        backdrop-filter: blur(8px);
    }
    
    .mobile-menu.active {
        right: 0;
    }
    
    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .mobile-menu-close {
        background: none;
        border: none;
        color: var(--primary-yellow);
        font-size: 1.5rem;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        cursor: pointer;
        padding: 0.5rem;
    }
}

.main-content {
    margin-top: 0;
    min-height: calc(100vh - 90px);
    background: none;
}

.section {
    padding: var(--section-padding);
    max-width: var(--content-width);
    margin: 0 auto 4rem auto;
    background: rgba(25, 25, 25, 0.15);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 209, 0, 0.1);
    backdrop-filter: blur(3px);
    transition: transform var(--transition), box-shadow var(--transition), border var(--transition);
}

.section:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px 0 rgba(255, 209, 0, 0.08);
    border: 1px solid rgba(255, 209, 0, 0.3);
}

.card {
    background: rgba(30, 30, 30, 0.1);
    border-radius: 0.8rem;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.10);
    border: 1px solid rgba(255, 209, 0, 0.1);
    padding: 1.8rem;
    margin-bottom: 2rem;
    transition: transform var(--transition), box-shadow var(--transition), border var(--transition);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px 0 rgba(255, 209, 0, 0.1);
    border: 1px solid rgba(255, 209, 0, 0.3);
    background: rgba(30, 30, 30, 0.2);
}

.btn {
    background: var(--primary-yellow);
    color: var(--primary-black);
    border: none;
    border-radius: 0.5rem;
    padding: 0.8rem 2.2rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 2px 8px 0 rgba(255, 209, 0, 0.2);
    transition: all var(--transition);
    outline: none;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn:hover {
    background: var(--secondary-yellow);
    transform: translateY(-3px);
    box-shadow: 0 4px 16px 0 rgba(255, 209, 0, 0.3);
}

.btn:active {
    transform: translateY(-1px);
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn:hover::after {
    transform: translateX(0);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 60px;
    height: 3px;
    background: var(--primary-yellow);
    border-radius: 3px;
}

::-webkit-scrollbar {
    width: 8px;
    background: #222;
}
::-webkit-scrollbar-thumb {
    background: var(--primary-yellow);
    border-radius: 8px;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 2.5rem 1rem;
        border-radius: 0.8rem;
        margin-bottom: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .card {
        padding: 1.5rem;
    }
}

/* Hero section specific styles */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.3), rgba(10, 10, 10, 0.5));
    background-size: cover;
    background-position: center;
    margin-bottom: 4rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 209, 0, 0.15) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

/* Feature cards */
.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(30, 30, 30, 0.1);
    backdrop-filter: blur(3px);
}

.feature-card i {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--primary-yellow);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Specialty items */
.specialty-item {
    text-align: center;
    background: rgba(30, 30, 30, 0.1);
    backdrop-filter: blur(3px);
    padding: 2rem;
}

.specialty-item h3 {
    color: var(--primary-yellow);
    font-size: 1.2rem;
}

/* Additional styles for the updated templates */

/* Hero section styles */
.hero-logo {
    height: 100px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(255, 209, 0, 0.4));
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.highlight {
    color: var(--primary-yellow);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-yellow);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.hero-content:hover .highlight::after {
    transform: scaleX(1);
    transform-origin: left;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin: 1.2rem 0 2rem 0;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Outline button style */
.btn-outline {
    background: transparent;
    color: var(--primary-yellow);
    border: 2px solid var(--primary-yellow);
}

.btn-outline:hover {
    background: rgba(255, 209, 0, 0.1);
    color: var(--primary-yellow);
}

/* Section divider */
.divider {
    width: 60px;
    height: 3px;
    background: var(--primary-yellow);
    margin: 0.5rem 0 2rem 0;
    border-radius: 3px;
}

/* Welcome section */
.welcome-section {
    text-align: center;
}

.welcome-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 1.2rem auto 0 auto;
    line-height: 1.8;
}

/* Features section */
.features-section {
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

/* Specialty items */
.specialties-section {
    text-align: center;
}

.specialty-items {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.specialty-item {
    min-width: 250px;
    text-align: center;
    flex: 1;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.specialty-icon {
    font-size: 2.5rem;
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
}

.specialty-item h3 {
    margin-bottom: 0.8rem;
}

.specialty-item p {
    color: var(--text-muted);
}

/* CTA Section */
.cta-section {
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-text {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

/* Mobile social links */
.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.mobile-social-links a {
    color: var(--text-light);
    font-size: 1.5rem;
    transition: color var(--transition);
}

.mobile-social-links a:hover {
    color: var(--primary-yellow);
}

/* Footer improvements */
.footer {
    background: rgba(25, 25, 25, 0.15);
    padding: 4rem 2rem 1rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 209, 0, 0.2);
    backdrop-filter: blur(3px);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: var(--content-width);
    margin: 0 auto;
    gap: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: var(--primary-yellow);
}

.footer-section p {
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--text-light);
    font-size: 1.3rem;
    transition: color var(--transition), transform var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .specialty-items {
        flex-direction: column;
        align-items: center;
    }
    
    .specialty-item {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-logo {
        height: 80px;
    }
}

/* Container for sections */
.container {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

/* Modern Hero Section */
.hero-fullwidth {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    background: url('../images/poster2.jpeg') no-repeat center center;
    background-size: cover;
    margin-bottom: 4rem;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

/* About Section with Grid */
.about-section {
    padding: 6rem 0;
    background: rgba(20, 20, 20, 0.1);
    backdrop-filter: blur(10px);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content {
    padding-right: 2rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 1.5rem 0;
    line-height: 1.8;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

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

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

.rounded-image {
    border-radius: 10px;
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

/* Specialty Cards with Images */
.specialties-section {
    padding: 6rem 0;
    background: rgba(25, 25, 25, 0.05);
    backdrop-filter: blur(5px);
}

.specialty-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.specialty-card {
    background: rgba(20, 20, 20, 0.15);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 209, 0, 0.1);
    backdrop-filter: blur(5px);
}

.specialty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 209, 0, 0.3);
}

.specialty-image {
    height: 200px;
    overflow: hidden;
}

.specialty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.specialty-card:hover .specialty-image img {
    transform: scale(1.1);
}

.specialty-content {
    padding: 1.5rem;
    text-align: center;
}

.specialty-content h3 {
    color: var(--primary-yellow);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.specialty-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: rgba(20, 20, 20, 0.05);
    backdrop-filter: blur(5px);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(20, 20, 20, 0.15);
    border-radius: 10px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 209, 0, 0.1);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(25, 25, 25, 0.2);
    border-color: rgba(255, 209, 0, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 209, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-yellow);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: rgba(255, 209, 0, 0.2);
    transform: rotateY(180deg);
}

.feature-card:hover .feature-icon i {
    transform: rotateY(180deg);
}

.feature-card h3 {
    color: var(--primary-yellow);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Parallax CTA Section */
.parallax-section {
    position: relative;
    background: rgba(20, 20, 20, 0.05);
    backdrop-filter: blur(5px);
    padding: 6rem 0;
    text-align: center;
    margin: 4rem 0;
    border-radius: 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 209, 0, 0.1);
    border-bottom: 1px solid rgba(255, 209, 0, 0.1);
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.parallax-section .container {
    position: relative;
    z-index: 2;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.parallax-section .section-title {
    color: var(--primary-yellow);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-text {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

/* Instagram Gallery */
.gallery-section {
    padding: 6rem 0;
    background: rgba(20, 20, 20, 0.05);
    backdrop-filter: blur(5px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 250px;
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Center divider */
.center-divider {
    margin: 0.5rem auto 2rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-grid,
    .specialty-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        padding-right: 0;
        order: 2;
    }
    
    .about-image {
        order: 1;
        margin-bottom: 2rem;
    }
    
    .specialty-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-fullwidth {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-section,
    .specialties-section,
    .features-section,
    .gallery-section,
    .parallax-section {
        padding: 4rem 0;
    }
    
    .specialty-image {
        height: 180px;
    }
    
    .cta-text {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .specialty-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        gap: 1rem;
    }
    
    .hero-logo {
        height: 80px;
    }
    
    .cta-text {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Popular Menu Items Section */
.menu-preview-section {
    padding: 6rem 0;
    background: rgba(25, 25, 25, 0.05);
    backdrop-filter: blur(5px);
}

.menu-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.menu-preview-card {
    background: rgba(20, 20, 20, 0.15);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 209, 0, 0.1);
    backdrop-filter: blur(5px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.menu-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 209, 0, 0.3);
}

.menu-preview-image {
    height: 200px;
    overflow: hidden;
}

.menu-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-preview-card:hover .menu-preview-image img {
    transform: scale(1.1);
}

.menu-preview-content {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-preview-content h3 {
    color: var(--primary-yellow);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.menu-preview-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Interior Gallery Section */
.interior-section {
    padding: 6rem 0;
    background: rgba(20, 20, 20, 0.05);
    backdrop-filter: blur(5px);
}

.interior-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.interior-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 350px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.interior-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.interior-item:hover img {
    transform: scale(1.05);
}

.interior-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 80%, rgba(0, 0, 0, 0.5));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.interior-item:hover::after {
    opacity: 1;
}

/* Responsive adjustments for new sections */
@media (max-width: 992px) {
    .menu-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-preview-section,
    .interior-section {
        padding: 4rem 0;
    }
    
    .interior-grid {
        grid-template-columns: 1fr;
    }
    
    .interior-item {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .menu-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-preview-image,
    .interior-item {
        height: 250px;
    }
} 