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

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.hero h1 {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    margin-bottom: 10px;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-btn {
    padding: 18px 45px;
    background: var(--primary);
    color: var(--secondary);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    animation: fadeInUp 1s ease 0.6s both;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* About Section */
.about {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.about-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.about-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.about-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

.about-card p {
    color: #666;
    line-height: 1.6;
}

/* Menu Preview */
.menu-preview {
    padding: 80px 20px;
    background: #f9f9f9;
}

.menu-preview .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.dish-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.dish-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.dish-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.dish-info {
    padding: 25px;
}

.dish-name {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.dish-desc {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.dish-price {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: var(--secondary);
    color: white;
}

.contact .container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

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

.contact-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-item h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.contact-item p, .contact-item a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.8;
}

.contact-item a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 15px;
}

.social-links a {
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

/* Footer */
footer {
    background: #000;
    color: #888;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to   { opacity: 1; transform: translateY(0); }
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero h1      { font-size: 2.5rem; }
    .hero p       { font-size: 1rem; }
    .section-title { font-size: 2rem; }
    .dishes-grid  { grid-template-columns: 1fr; }
}
