:root {
    --coral: #FF6B4A;
    --deep-teal: #1A4D5C;
    --golden: #F4A261;
    --cream: #FFF8F0;
    --forest: #2D5C3F;
    --warm-white: #FFFBF7;
    --shadow: rgba(26, 77, 92, 0.15);
}

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

body {
    font-family: 'Raleway', sans-serif;
    background-color: var(--warm-white);
    color: var(--deep-teal);
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--coral);
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-img {
    max-height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--deep-teal);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--coral);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    height: 40vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--deep-teal) 0%, var(--forest) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(244, 162, 97, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 74, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.hero-content {
    text-align: center;
    color: var(--warm-white);
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-content img {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 3rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--coral);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 74, 0.3);
    animation: fadeInUp 1s ease-out 0.7s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 74, 0.4);
    background: #ff5533;
}

/* Decorative Elements */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--golden);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--coral);
    bottom: 15%;
    right: 8%;
    animation-delay: 1s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--cream);
    top: 60%;
    left: 15%;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

/* About Section */
.about {
    padding: 8rem 10%;
    background: var(--warm-white);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--coral), transparent);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--deep-teal);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--coral);
    margin-bottom: 4rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2rem;
    line-height: 2;
    color: var(--deep-teal);
    opacity: 0.9;
}

/* Menu Highlights */
.menu-highlights {
    padding: 8rem 5%;
    background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
}

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

.dish-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px var(--shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.dish-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--coral), var(--golden));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.dish-card:hover::before {
    transform: scaleX(1);
}

.dish-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(26, 77, 92, 0.2);
}

.dish-icon {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: block;
}

.dish-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--deep-teal);
    margin-bottom: 1rem;
    font-weight: 700;
}

.dish-card p {
    color: var(--deep-teal);
    line-height: 1.8;
    opacity: 0.8;
    font-size: 1.05rem;
}

.dish-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--coral);
    margin-bottom: 1rem !important;
    opacity: 1 !important;
}

/* Experience Section */
.experience {
    padding: 8rem 10%;
    background: var(--deep-teal);
    color: var(--warm-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.experience::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(244, 162, 97, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.experience-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.experience h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-weight: 900;
}

.experience p {
    font-size: 1.3rem;
    line-height: 2;
    opacity: 0.95;
    font-weight: 300;
}

/* Contact Section */
.contact {
    padding: 8rem 10%;
    background: var(--warm-white);
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--deep-teal);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    padding: 1rem 1.5rem;
    border: 2px solid rgba(26, 77, 92, 0.1);
    border-radius: 12px;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(255, 107, 74, 0.1);
}

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

.submit-button {
    padding: 1.2rem;
    background: var(--coral);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.submit-button:hover {
    background: #ff5533;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 74, 0.3);
}

/* Delivery Section */
.delivery-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.delivery-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    text-decoration: none;
    transition: all 0.4s ease;
    flex: 0;
    min-width: auto;
    max-width: none;
}

.delivery-link:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(26, 77, 92, 0.2);
}

.delivery-logo {
    width: 150px;
    height: auto;
    object-fit: contain;
    margin-bottom: 1rem;
}

.delivery-link p {
    color: var(--deep-teal);
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
}

.phone-contact {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.phone-contact a {
    color: var(--coral);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-contact a:hover {
    color: var(--deep-teal);
}

.contact-info {
    text-align: center;
    margin-top: 2rem;
}

.address {
    font-size: 1.1rem;
    color: var(--deep-teal);
    line-height: 1.6;
}

.address a {
    color: var(--coral);
    text-decoration: none;
    transition: color 0.3s ease;
}

.address a:hover {
    color: var(--deep-teal);
}

/* Footer */
footer {
    background: var(--deep-teal);
    color: var(--warm-white);
    padding: 3rem 10%;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--coral);
    margin-bottom: 1rem;
}

.footer-text {
    opacity: 0.8;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.footer-content .contact-info {
    margin-bottom: 2rem;
}

.footer-content .address,
.footer-content .phone-contact {
    font-size: 1.3rem;
    margin: 0.5rem 0;
}

.footer-content .address a,
.footer-content .phone-contact a {
    color: var(--golden);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-content .address a:hover,
.footer-content .phone-contact a:hover {
    color: var(--coral);
}

.copyright {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

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

    .section-title {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .about,
    .menu-highlights,
    .experience,
    .contact {
        padding: 5rem 5%;
    }

    .dishes-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
