/* Shree Radha Cafe - Custom Styles */

:root {
    --primary-color: #FF9933;
    /* Saffron */
    --secondary-color: #DAA520;
    /* Gold */
    --accent-color: #D35400;
    /* Darker Orange/Rust */
    --bg-color: #FFFDD0;
    /* Cream */
    --text-color: #5D4037;
    /* Dark Brown */
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-color);
    font-family: var(--font-body);
    color: var(--text-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: var(--font-heading);
    color: var(--accent-color);
}

/* Navbar Styling */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color) !important;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.btn-custom {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 153, 51, 0.4);
}

/* Hero Section */
.hero-section {
    position: relative;
    margin-top: 67px;

    /* Better than fixed height */
    min-height: calc(100vh - 67px);

    background: url("image/Shreeradhacafebanner.jpeg") no-repeat center;
    background-size: cover;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);

    padding: 40px 20px; /* prevents text from touching edges */
}

@media (max-width: 768px) {
    .hero-section {
        padding: 30px 30px 60px 40px;
        background: url("image/Shree Radha Cafe Header 1 Mobile.png") no-repeat center top;
        background-size: cover;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay for text readability */
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: var(--primary-color);
    /* Matches theme */
    -webkit-text-stroke: 1px var(--white);
    /* Optional: outline for better contrast */
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Section Common */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

/* Carousel / Gallery Section */
#gallery {
    background-color: var(--white);
}

.carousel-item {
    height: 500px;
}

.carousel-item img {
    /* height: 100%; */
    background-size: 100% 100%;
    object-fit: cover;
    border-radius: 10px;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    padding: 20px;
    bottom: 40px;
}

/* Menu Section */
#menu {
    background-color: var(--bg-color);
}

.menu-card {
    background: var(--white);
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.menu-card:hover {
    transform: translateY(-10px);
}

.menu-card img {
    height: 200px;
    object-fit: cover;
}

.card-title {
    color: var(--text-color);
    font-weight: 700;
}

.price {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.2rem;
}

.btn-menu-full {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    margin-top: 30px;
    transition: all 0.3s ease;
}

.btn-menu-full:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* About Section */
#about {
    background-color: var(--white);
    padding-bottom: 50px;
}

.about-img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    margin-bottom: 20px;
}

/* Map Section */
#location {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.map-container {
    height: 400px;
    width: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 15px;
    /* Rounded corners for map */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.location-details {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.address-info p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.location-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.location-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Contact & Feedback Section */
#contact {
    background-color: var(--bg-color);
}

.contact-info-box {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    text-align: center;
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feedback-form {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 153, 51, 0.25);
}

/* Footer */
footer {
    background-color: #2c2c2c;
    color: #f1f1f1;
    padding: 50px 0 20px;
    font-size: 0.9rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
}

.social-icons a {
    display: inline-block;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.social-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(1) invert(1);
    transition: filter 0.3s ease;
}

.social-icons a:hover .social-img {
    filter: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.copyright {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(218, 165, 32, 0.3);
    /* Subtle Gold Border */
    text-align: center;
    color: var(--secondary-color);
    /* Gold Color */
    font-family: var(--font-heading);
    /* Playfair Display for elegance */
    font-size: 1.1rem;
    letter-spacing: 1px;
    font-weight: 500;
}

.copyright p {
    margin: 0;
}

/*QR Section Start */
.qr-section {
    text-align: center;
    padding: 30px 20px;
    background: #fff7ee;
    margin-bottom: -50px;
}

.qr-section h2 {
    font-size: 28px;
    margin-bottom: 10px;

}

.qr-section p {
    font-size: 16px;
    color: #555;

}

.qr-img {
    width: 250px;
    margin: 10px auto;
    border-radius: 12px;

}




