/* ================================
   GENERAL PAGE STYLING
=================================*/
body {
    font-family: 'Lato', Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;

    /* Background Image */
    background-image: url("../assets/Background/new_background.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;

    color: #fff;
}

/* ================================
   HEADINGS
=================================*/
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* ================================
   NAVIGATION BAR
=================================*/
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    padding: 10px 50px;
    position: fixed;
    top: 0;
    width: 95%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(0.5px);
    z-index: 100;
}

.nav-right {
    display: flex;
    align-items: center;
}

.nav-right a {
    font-family: 'Lato', sans-serif;
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-weight: bold;
    transition: 0.3s;
    letter-spacing: 1px;
}

.nav-right a:hover {
    color: #ffdd8f;
}

/* Mobile Controls Container */
.mobile-controls {
    display: none;
    align-items: center;
    gap: 20px;
}

/* Hamburger Menu Icon */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 101;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    z-index: 99;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.3rem;
    margin: 15px 0;
    transition: 0.3s;
}

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

/* ================================
   LOGO
=================================*/
.logo {
    height: 90px;
}

/* ================================
   HOME SECTION
=================================*/
.home-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
}

.home-content h1 {
    font-size: 4rem;
    margin-bottom: 10px;
}

.home-content p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* ================================
   BUTTONS
=================================*/
.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #d48b4d;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background-color: #c1753c;
}

/* WhatsApp Button Style */
.btn-whatsapp {
    background-color: #25D366;
    flex: 1;
}

.btn-whatsapp:hover {
    background-color: #1DA851;
}

/* Email Button Style */
.btn-email {
    background-color: #EA4335;
    flex: 1;
}

.btn-email:hover {
    background-color: #D33426;
}

/* ================================
   PRODUCTS SECTION
=================================*/
.products-section {
    padding: 100px 20px;
    text-align: center;
    background: rgba(0,0,0,0.4);
    min-height: 100vh;
}

.products-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 50px;
}

.products-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.product-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    width: 300px;
    padding: 20px;
    color: #fff;
    backdrop-filter: blur(5px);
    transition: 0.3s;
}

.product-card:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

.product-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.product-card h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-weight: bold;
    color: #ffdd8f;
}

/* ================================
   ABOUT SECTION (WITH BLUR IMAGE)
=================================*/
.about-section {
    position: relative;
    padding: 100px 20px;
    min-height: 100vh;
    text-align: center;
    color: white;
    overflow: hidden;
}

.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../assets/Products/choc_chip.jpg");
    background-size: cover;
    background-position: center;
    background: rgba(0, 0, 0, 0.5);
    filter: blur(7px);
    z-index: -1;
}

.about-section h1 {
    font-size: 3rem;
    margin-bottom: 40px;
}

.about-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 15px auto;
}

/* Mission Box */
.mission-box {
    margin-top: 40px;
    padding: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    backdrop-filter: blur(3px);
}

/* ================================
   CONTACT SECTION
=================================*/
.contact-section {
    padding: 120px 20px;
    min-height: 80vh;
    text-align: center;
    background: rgba(0,0,0,0.5);
}

.contact-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-section p {
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 8px;
    border: none;
    outline: none;
    background: rgba(255,255,255,0.1);
    color: white;
    backdrop-filter: blur(5px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #ddd;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: rgba(255,255,255,0.2);
}

/* ================================
   FOOTER SECTION
=================================*/
.footer {
    display: flex;
    justify-content: space-between;
    padding: 40px 50px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(3px);
}

.footer a {
    color: #ffdd8f;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* WHATSAPP CHAT IN FOOTER */
.footer-whatsapp {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.footer-whatsapp p {
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 500;
    color: #ffdd8f;
}

.whatsapp-footer-btn {
    padding: 10px 20px;
    background-color: #0c0906;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    display: inline-block;
    transition: 0.3s ease-in-out;
    font-size: 1rem;
}

.whatsapp-footer-btn:hover {
    background-color: #a26c1b;
    transform: scale(1.05);
}

.cart-icon {
    color: #ffdd8f;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
    display: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: 0.3s;
}

.cart-icon:hover {
    background: rgba(255, 221, 143, 0.2);
    transform: scale(1.05);
}

.cart-icon span {
    background: #ffdd8f;
    color: #000;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
    margin-left: 5px;
    font-size: 0.9rem;
}

/* ================================
   PRODUCT OPTIONS DROPDOWN
=================================*/
.product-options {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: bold;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: 0.3s;
}

.product-options:hover {
    background: rgba(255, 255, 255, 0.3);
}

.product-options:focus {
    background: rgba(255, 255, 255, 0.4);
}

.product-options option {
    background: #1a1a1a;
    color: white;
}

/* ================================
   CHECKOUT PAGE
=================================*/
.checkout-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("../assets/Products/choice_assorted_2.jpeg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 50px 20px;
    color: white;
}

.checkout-card {
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    padding: 40px 30px;
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.checkout-card h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 30px;
}

#cart-items p {
    margin: 10px 0;
    font-size: 1.2rem;
}

#address {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    outline: none;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.1);
    color: white;
    backdrop-filter: blur(5px);
}

#address::placeholder {
    color: #ddd;
}

#address:focus {
    background: rgba(255,255,255,0.2);
}

.checkout-card .btn {
    padding: 12px 25px;
    font-size: 1.1rem;
}

.cart-item {
    background: rgba(255,255,255,0.1);
    padding: 10px;
    margin: 10px;
    border-radius: 8px;
}

#cart-total {
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: bold;
}

#addressForm input {
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    border-radius: 8px;
    border: none;
    outline: none;
}

/* ================================
   RESPONSIVE DESIGN - MOBILE
=================================*/
@media (max-width: 768px) {
    /* Show mobile controls container */
    .mobile-controls {
        display: flex;
    }

    /* Show hamburger menu */
    .hamburger {
        display: flex;
    }

    /* Hide desktop navigation */
    .nav-right {
        display: none;
    }

    /* Adjust navbar padding */
    .navbar {
        padding: 10px 20px;
        width: 90%;
    }

    /* Adjust logo size */
    .logo {
        height: 60px;
    }

    /* Home section text */
    .home-content h1 {
        font-size: 2.5rem;
    }

    .home-content p {
        font-size: 1.2rem;
    }

    /* Products section */
    .products-section h1 {
        font-size: 2rem;
    }

    /* About section */
    .about-section h1 {
        font-size: 2rem;
    }

    /* Contact section */
    .contact-section h1 {
        font-size: 2rem;
    }

    /* Footer responsive */
    .footer {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .footer-left,
    .footer-right,
    .footer-whatsapp {
        margin-bottom: 20px;
    }

    /* Checkout buttons stacked */
    .checkout-card .btn {
        width: 100%;
        margin: 5px 0;
    }
}

/* ================================
   ABOUT SECTION - 2 COLUMNS
=================================*/
.about-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
    padding-top: 50px;
}

.about-text {
    flex: 1;
    text-align: left;
    font-size: 1rem;           /* Smaller text */
    line-height: 1.6;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }

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

    .about-image img {
        width: 90%;
    }
}
