:root {
    --primary-color: #FF6B35;
    --secondary-color: #2EC4B6;
    --text-color: #333333;
    --background-color: #FFFFFF;
    --accent-color: #FFBF69;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, rgba(74, 21, 75, 0.95), rgba(128, 0, 128, 0.9));
    box-shadow: 0 4px 20px rgba(74, 21, 75, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0.8rem 0;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.typing-container {
    min-width: 300px;
    height: 40px;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.typing-text {
    position: relative;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.2rem;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid #fff;
    animation: typing 3.5s steps(30, end) infinite,
               blink-caret 0.75s step-end infinite;
    width: 0;
}

@keyframes typing {
    0%, 100% {
        width: 0;
    }
    20%, 80% {
        width: 100%;
    }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #fff }
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 3px;
}

.nav-links a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(128, 0, 128, 0.3), rgba(74, 21, 75, 0.3));
    animation: gradientShift 8s ease infinite;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    animation: float 3s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.hero h1 span {
    display: block;
    color: var(--accent-color);
    animation: glow 2s ease-in-out infinite;
}

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

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255, 191, 105, 0.5),
                     0 0 40px rgba(255, 191, 105, 0.3),
                     0 0 60px rgba(255, 191, 105, 0.2);
    }
    50% {
        text-shadow: 0 0 30px rgba(255, 191, 105, 0.8),
                     0 0 60px rgba(255, 191, 105, 0.5),
                     0 0 90px rgba(255, 191, 105, 0.3);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    position: relative;
    animation: fadeInUp 1s ease 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.cta-button:hover {
    background-color: #e55a2a;
    transform: translateY(-2px);
}

/* Menu Section */
.menu-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(-45deg, 
        #ee7752, 
        #e73c7e, 
        #23a6d5, 
        #23d5ab
    );
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    width: 100%;
    min-height: 100vh;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    z-index: 1;
}

.menu-section .container {
    position: relative;
    z-index: 2;
}

.menu-section h2 {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.menu-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

/* About Section */
.about-section {
    position: relative;
    padding: 6rem 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.98);
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/about-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: -1;
}

.about-section::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
    animation: rotate 30s linear infinite;
}

.about-section .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.about-section h2 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.about-section p {
    line-height: 1.8;
    color: #444;
    font-size: 1.1rem;
}

/* About Section Styles */
.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.owner-image {
    text-align: center;
    margin-bottom: 2rem;
}

.owner-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.owner-photo:hover {
    transform: scale(1.05);
}

.owner-name {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 1rem;
}

/* Contact Section */
.contact-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(248,248,248,0.98));
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/pattern.png');
    opacity: 0.05;
    animation: float 6s ease-in-out infinite;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.8rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Order Info Styles */
.order-info {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    text-align: center;
}

.order-info h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Order Button Styles */
.order-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.button-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    vertical-align: middle;
}

.whatsapp-button, .call-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 220px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

.whatsapp-button {
    background-color: #25D366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.whatsapp-button:hover {
    background-color: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.call-button {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.call-button:hover {
    background-color: #e55a2a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.delivery-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    text-align: center;
}

.delivery-info h4 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.delivery-info p {
    margin-bottom: 0.8rem;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}

.delivery-note {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    margin-top: 1rem;
    font-family: 'Open Sans', sans-serif;
}

/* Footer */
footer {
    background-color: var(--text-color);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        animation: float 3s ease-in-out infinite;
    }
    
    .hero h1 span {
        font-size: 2.2rem;
    }
    
    .order-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .whatsapp-button, .call-button {
        width: 100%;
        max-width: 300px;
    }

    .logo-image {
        height: 45px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .menu-section,
    .about-section {
        padding: 4rem 0;
    }

    .menu-section h2,
    .about-section h2 {
        font-size: 2rem;
    }

    .typing-container {
        min-width: 240px;
        height: 35px;
    }

    .typing-text {
        font-size: 1rem;
    }

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

    .menu-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .menu-item {
        max-width: 350px;
        margin: 0 auto;
    }

    .menu-image {
        height: 200px;
    }

    .menu-content h3 {
        font-size: 1.2rem;
    }

    .menu-content p {
        font-size: 0.9rem;
    }

    .menu-price {
        font-size: 1.2rem;
    }

    .about-section h2 {
        font-size: 2rem;
    }

    .owner-photo {
        width: 150px;
        height: 150px;
    }

    .delivery-info {
        padding: 1.5rem;
    }
}

/* Menu Section Styles */
.menu-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    opacity: 1;
    transform: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    background: rgba(255, 255, 255, 1);
}

.menu-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.menu-content {
    padding: 1.5rem;
}

.menu-content h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.menu-content p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.serving-info {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 0.75rem;
}

.menu-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

html {
    scroll-behavior: smooth;
}

/* Gallery Section Styles */
.gallery-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.gallery-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
        padding: 0 15px;
    }

    .gallery-item img {
        height: 200px;
    }
} 