/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Poppins', 'Nunito', 'Inter', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    outline: none;
}

.btn-primary {
    background-color: #ff6b35;
    color: white;
}

.btn-primary:hover {
    background-color: #e55a2c;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.2);
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #333;
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #ff6b35;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Navbar Styles */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 4px;
    max-width: 1450px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: 50px;
    margin-right: 15px;
    border-radius: 50%;
    object-fit: cover;
}

.logo h1 {
    color: #ff6b35;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

/* Nav Links */
.nav-links {
    display: flex;
    list-style: none;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff6b35;
}

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

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

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 4px 0;
    transition: 0.3s;
}

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        display: none;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links li {
        margin: 15px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .logo h1 {
        font-size: 1.3rem;
    }
}





/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('../images/banner.jpg') no-repeat center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Nunito';
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Fruits Section */
.fruits-section {
    background-color: #f9f9f9;
}

.search-box {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.search-box input {
    width: 100%;
    max-width: 500px;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 1rem;
    outline: none;
    transition: box-shadow 0.3s ease;
}

.search-box input:focus {
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.fruits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 25px;
}

.fruit-item {
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.fruit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.fruit-item img {
    height: 150px;
    object-fit: cover;
    width: 100%;
}

.fruit-item p {
    padding: 10px;
    font-weight: 600;
    color: #333;
}

/* Juices Section */
.juices-section {
    background-color: white;
}

.juices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.juice-item {
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f9f9f9;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.juice-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.juice-item img {
    height: 150px;
    object-fit: cover;
    width: 100%;
}

.juice-item p {
    padding: 10px;
    font-weight: 600;
    color: #333;
}

/* Nariyal Pani Section */
.nariyal-section {
    background-color: #f9f9f9;
}

.nariyal-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}

.nariyal-image {
    flex: 1;
}

.nariyal-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nariyal-text {
    flex: 1;
}

.nariyal-text .section-title {
    margin-bottom: 20px;
}

.nariyal-text .section-description {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

/* About Section */
.about-section {
    background-color: white;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
}

.about-text .section-title {
    margin-bottom: 20px;
}

.about-text .section-description {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

/* Gallery Section */
.gallery-section {
    background-color: #f9f9f9;
}

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

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

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

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

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

/* Payment Section */
.payment-section {
    background-color: white;
}

.payment-options {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
}

.payment-option {
    text-align: center;
    max-width: 300px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.payment-option:hover {
    transform: translateY(-10px);
}

.payment-icon {
    width: 60px;
    height: 60px;
    background-color: #fff0e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #ff6b35;
}

.payment-option h3 {
    margin-bottom: 10px;
    color: #333;
}

.payment-option p {
    color: #666;
    font-size: 1rem;
}

/* Timings Section */
.timings-section {
    background-color: #f9f9f9;
}

.timings-table {
    margin-top: 50px;
    overflow-x: auto;
}

.timings-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
}

.timings-table th,
.timings-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.timings-table th {
    background-color: #ff6b35;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timings-table tr:nth-child(even) {
    background-color: #f5f5f5;
}

.timings-table tr:hover {
    background-color: #f0f0f0;
}

/* Seasonal Section */
.seasonal-section {
    background-color: white;
}

.seasonal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.seasonal-item {
    padding: 30px;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.seasonal-item h3 {
    margin-bottom: 20px;
    color: #ff6b35;
    text-align: center;
    font-weight: 700;
}

.seasonal-item ul {
    list-style-type: none;
}

.seasonal-item li {
    padding: 8px 0;
    border-bottom: 1px dashed #ddd;
    font-weight: 600;
}

.seasonal-item li:last-child {
    border-bottom: none;
}

/* Contact Section */
.contact-section {
    background-color: #f9f9f9;
}

.contact-content {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    flex: 1;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #fff0e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: #ff6b35;
}

.contact-text h3 {
    margin-bottom: 8px;
    color: #333;
}

.contact-text p {
    color: #666;
    font-size: 1.1rem;
}

.contact-form {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ff6b35;
    outline: none;
}

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

.map-container {
    margin-top: 50px;
    text-align: center;
}

.map-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faqs-list {
    max-width: 800px;
    margin: auto;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
    cursor: pointer;
}

.faq-question {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    position: relative;
}

.faq-answer {
    display: none;
    padding: 10px 0;
    color: #444;
}

.faq-item.active .faq-answer {
    display: block;
}


/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 50px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-logo h3 {
    color: #ff6b35;
    font-size: 1.8rem;
    font-weight: 700;
}

.footer-contact,
.footer-social {
    text-align: center;
}

.footer-contact h3,
.footer-social h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: #ff6b35;
}

.footer-contact p,
.footer-social p {
    margin-bottom: 10px;
    color: #ccc;
    font-size: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #ff6b35;
    transform: translateY(-3px);
}

.footer-thanks {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.2rem;
    font-style: italic;
    color: #ff6b35;
}

.footer-copyright {
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
}

.lightbox-img {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: white;
    margin-top: 15px;
    font-size: 1.2rem;
    text-align: center;
    max-width: 80%;
}

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

    .hero-tagline {
        font-size: 1.3rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nariyal-content,
    .about-content,
    .contact-content {
        flex-direction: column;
    }

    .nariyal-image,
    .nariyal-text,
    .about-image,
    .about-text,
    .contact-info,
    .contact-form {
        flex: none;
        width: 100%;
        margin-bottom: 30px;
    }

    .payment-options {
        flex-direction: column;
        align-items: center;
    }

    .timings-table {
        font-size: 0.9rem;
    }

    .timings-table th,
    .timings-table td {
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

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

    .fruits-grid,
    .juices-grid,
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }

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

    .map-image {
        height: 250px;
    }

    .faq-question {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .search-box input {
        width: 100%;
    }

    .section {
        padding: 60px 0;
    }

    .nariyal-section,
    .about-section,
    .contact-section {
        padding: 60px 0;
    }

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

    .fruits-grid,
    .juices-grid,
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }

    .fruit-item img,
    .juice-item img,
    .gallery-item img {
        height: 120px;
    }

    .lightbox-close {
        font-size: 30px;
    }

    .lightbox-caption {
        font-size: 1rem;
    }

    .footer-container {
        gap: 20px;
    }

    .footer-logo h3 {
        font-size: 1.5rem;
    }

    .footer-thanks {
        font-size: 1rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 20px;
}

.mobile-menu.show {
    display: block;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin-bottom: 15px;
}

.mobile-menu a {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.mobile-menu a:hover {
    color: #ff6b35;
}

/* Placeholder Text Color */
input::placeholder,
textarea::placeholder {
    color: #aaa;
}

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