/* Rich Delights Catering - Main Styles */
:root {
    --primary-color: #8B4513;
    --secondary-color: #D2B48C;
    --accent-color: #CD853F;
    --text-color: #5D4037;
    --bg-color: #F5F5DC;
    --border-color: #A0522D;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
}

.main-container {
    max-width: 100%;
    margin: 0 auto;
    background-image: url('https://img.freepik.com/free-photo/brown-concrete-wall-with-scratches_1339-4420.jpg?w=1380&t=st=1653328272~exp=1653328872~hmac=dd3fffb56812f2ccaa4e7bbe6a458c69d40f8e8b2cb7af7ce92b2e27ae16d30a');
    background-size: cover;
    background-attachment: fixed;
    background-blend-mode: overlay;
    background-color: rgba(245, 245, 220, 0.9);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border: 15px solid var(--primary-color);
    border-image: url('https://img.freepik.com/free-photo/brown-wooden-textured-flooring-background_53876-143033.jpg?w=1380&t=st=1653328350~exp=1653328950~hmac=075a74d4238dbbe5a4b1e99c171f84ea162eacfc1d60f6a5afe8d3a48d66df42') 30 stretch;
    min-height: 100vh;
}

/* Navigation Styles */
.header-nav, .secondary-nav {
    background-color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding: 12px 0;
}

.secondary-nav {
    margin-bottom: 20px;
}

.nav-link {
    color: var(--bg-color) !important;
    font-weight: 500;
    margin: 0 20px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 2px;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: -2px;
    left: 0;
    transition: width 0.3s ease;
}

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

/* Logo Section */
.logo-section {
    padding: 40px 0;
    background-color: rgba(210, 180, 140, 0.2);
    position: relative;
}

.logo img {
    max-width: 250px;
    height: auto;
    transition: transform 0.5s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.logo h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-top: 10px;
    letter-spacing: 3px;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
}

.corner-decor {
    background-color: var(--primary-color);
    color: var(--bg-color);
    padding: 12px 25px;
    margin: 0 40px;
    position: relative;
    transform: skewX(-15deg);
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
}

.corner-decor span {
    display: inline-block;
    transform: skewX(15deg);
    letter-spacing: 3px;
    font-weight: 600;
}

/* Main Banner */
.main-banner {
    position: relative;
    margin-bottom: 30px;
    border: 12px solid var(--secondary-color);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.main-banner img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
    transition: transform 10s ease;
}

.main-banner:hover img {
    transform: scale(1.05);
}

/* Featured Section */
.featured-section {
    padding: 50px 40px;
    background-color: rgba(210, 180, 140, 0.2);
    border-top: 3px solid var(--border-color);
    border-bottom: 3px solid var(--border-color);
}

.featured-section h2 {
    font-size: 2.8rem;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 12px;
    margin-bottom: 40px;
}

.featured-dish {
    border: 8px solid var(--secondary-color);
    overflow: hidden;
    height: 320px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.featured-dish img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.featured-dish:hover img {
    transform: scale(1.08);
}

.menu-description {
    background-color: rgba(139, 69, 19, 0.9);
    color: var(--bg-color);
    padding: 40px 25px;
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.menu-description h3 {
    color: var(--secondary-color);
    margin-bottom: 25px;
    text-align: center;
    letter-spacing: 2px;
    font-size: 1.8rem;
}

.menu-item {
    margin-bottom: 20px;
}

.menu-item h4 {
    color: var(--bg-color);
    font-size: 1.3rem;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.menu-item p {
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* Menu Section */
.menu-section {
    padding: 0 30px;
}

.menu-category {
    margin-bottom: 50px;
}

.menu-category h3 {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 30px 15px;
    border-bottom: 3px solid var(--accent-color);
    font-size: 2.2rem;
}

.menu-item-row {
    margin-bottom: 25px;
    padding: 18px;
    background-color: rgba(210, 180, 140, 0.2);
    border-radius: 8px;
    transition: all 0.4s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.menu-item-row:hover {
    background-color: rgba(210, 180, 140, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.menu-img {
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 8px;
    margin-right: 25px;
    border: 4px solid var(--secondary-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

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

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

.menu-details {
    flex: 1;
}

.menu-details h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.menu-details p {
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.5;
}

.price {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.3rem !important;
    margin-top: 10px;
}

/* Contact Section */
.contact-section {
    padding: 50px 40px;
    background-color: rgba(210, 180, 140, 0.2);
    border-top: 3px solid var(--border-color);
}

.contact-form-container {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-form-container h3 {
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.form-control {
    border: 3px solid var(--secondary-color);
    padding: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    border-radius: 8px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(139, 69, 19, 0.25);
}

/* Animation for TV display - slow pan effect */
@keyframes slowPan {
    0% { transform: scale(1.0); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1.0); }
}

.main-banner img {
    animation: slowPan 30s infinite ease-in-out;
}

/* Responsive styles for TV display */
@media (min-width: 1920px) {
    body {
        font-size: 18px;
    }
    
    .logo h1 {
        font-size: 4rem;
    }
    
    .nav-link {
        font-size: 1.3rem;
    }
    
    .featured-section h2 {
        font-size: 3.2rem;
    }
    
    .menu-category h3 {
        font-size: 2.6rem;
    }
    
    .menu-details h4 {
        font-size: 1.7rem;
    }
    
    .menu-details p {
        font-size: 1.2rem;
    }
    
    .price {
        font-size: 1.5rem !important;
    }
    
    .main-banner img {
        height: 700px;
    }
}

/* Optimization for 43 inch TV */
@media (min-width: 3840px) {
    body {
        font-size: 26px;
    }
    
    .container-fluid {
        max-width: 3840px;
    }
    
    .logo img {
        max-width: 450px;
    }
    
    .logo h1 {
        font-size: 5.5rem;
    }
    
    .nav-link {
        font-size: 1.8rem;
        margin: 0 30px;
    }
    
    .featured-section h2 {
        font-size: 4.5rem;
    }
    
    .menu-category h3 {
        font-size: 3.5rem;
    }
    
    .menu-details h4 {
        font-size: 2.2rem;
    }
    
    .menu-details p {
        font-size: 1.7rem;
    }
    
    .price {
        font-size: 2rem !important;
    }
    
    .main-banner img {
        height: 900px;
    }
    
    .featured-dish, .menu-description {
        height: 500px;
    }
    
    .menu-img {
        width: 180px;
        height: 180px;
    }
    
    .corner-decor {
        padding: 20px 35px;
        margin: 0 60px;
    }
    
    .corner-decor span {
        font-size: 1.8rem;
    }
    
    .contact-form-container h3 {
        font-size: 2.8rem;
    }
    
    .form-control {
        padding: 20px;
        font-size: 1.8rem;
    }
} 
.big-circle {
    width: 600px;
    height: 600px;
    background-image: url("../img/thaal.png");
    border-radius: 50%;
    position: relative;
    box-shadow: inset 0 5px 10px rgba(255, 255, 255, 0.5),
                inset 0 -5px 10px rgba(0, 0, 0, 0.3),
                0 5px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    background-position:center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.small-circle {
    width: 120px;
    height: 120px;
    background-color: transparent;
    border-radius: 50%;
    position: absolute;
    background-position:center
}