:root {
    --primary-color: #ff5722; /* Vibrant Orange for food theme */
    --primary-hover: #e64a19;
    --bg-light: #fdfbf7; /* Creamy off-white */
    --bg-card: #ffffff;
    --text-main: #222222;
    --text-muted: #555555;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

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

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

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

.section {
    padding: 100px 0;
}

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

.section-desc {
    color: var(--text-muted);
    margin-bottom: 50px;
}

/* Navbar */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
}

#navbar.scrolled {
    background: rgba(253, 251, 247, 0.95);
    padding: 15px 40px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--text-main);
}
.logo h1 span {
    color: var(--primary-color);
}

.logo .telugu {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

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

.order-btn {
    background: var(--primary-color);
    color: #fff !important;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}
.order-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text {
    padding-right: 20px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-main);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 87, 34, 0.3);
}

.cta-button:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 87, 34, 0.4);
}

/* Rotating Plate */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.plate-container {
    width: 450px;
    height: 450px;
    position: relative;
    border-radius: 50%;
    padding: 15px;
    background: #fff;
    box-shadow: var(--shadow);
}

.rotating-plate {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    animation: spin 30s linear infinite;
    transition: opacity 0.5s ease-in-out;
}

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

/* Common Grids */
.about-grid, .heritage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.amenities-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.amenities-list li {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
}

.about-image img, .heritage-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* Heritage */
.heritage-content {
    background: var(--bg-card);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.heritage-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
}

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

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

/* Menus & Reviews */
.menu h2, .heritage h2, .gallery h2, .reviews h2 {
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

.menu-grid, .review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.menu-item, .review-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.menu-item:hover, .review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.menu-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.menu-item .price {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.review-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.review-author {
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: bold;
}

/* Footer */
.footer {
    background: #111;
    color: #fff;
    padding: 60px 0 20px;
}

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

.footer-brand h2 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.footer-brand p {
    color: #bbb;
    font-size: 0.9rem;
}

.footer-info p {
    color: #bbb;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    color: #777;
    font-size: 0.9rem;
    border-top: 1px solid #333;
    padding-top: 20px;
}

/* Enhanced Animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.zoom-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-text { padding-right: 0; }
    .plate-container { width: 300px; height: 300px; margin: 0 auto; }
    .hero-title { font-size: 3rem; }
    .about-grid, .heritage-content { grid-template-columns: 1fr; }
    .nav-links { display: none; }
}
