/* =======================================
   GLOBAL STYLES
======================================= */
:root {
    --brown: #4e3828;
    --light-brown: #5a4636;
    --gold: #c48d3b;
    --gold-dark: #8b6123;
    --red: #b24b4b;
    --red-dark: #8b2f2f;
    --bg-light: #f1f3fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body { background: #fff; }
section { padding: 90px 40px; }

h2 {
    font-size: 32px;
    color: var(--brown);
    margin-bottom: 20px;
}

/* =======================================
   NAVIGATION BAR (COMPLETE CSS)
======================================= */

:root {
    --gold: #d4a017;
}

/* NAVBAR MAIN */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffffd9;
    backdrop-filter: blur(6px);
    border-bottom: 1px solid #e3c89f;
    z-index: 9999;
}

/* LOGO IMAGE */
.logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #4d3b2f;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    position: relative;
}

.nav-links a:hover {
    color: var(--gold);
}

/* UNDERLINE ANIMATION */
.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* MENU BUTTON (MOBILE) */
.menu-btn {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: var(--gold);
}

/* ==============================
   MOBILE RESPONSIVE NAV
============================== */
@media (max-width: 768px) {

    .logo img {
        height: 48px;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        width: 220px;
        background: #fff6e8;
        border-left: 1px solid #e3c89f;
        border-bottom: 1px solid #e3c89f;
        flex-direction: column;
        padding: 20px;
        display: none;
    }

    .nav-links.show {
        display: flex;
    }

    .menu-btn {
        display: block;
    }
}


/* =======================================
   HERO SECTION
======================================= */
.hero {
    height: 100vh;
    background: url('https://i.ibb.co/jHn3T6b/bakery-bg.jpg') no-repeat center/cover;
    display: flex;
    align-items: center;
    padding-left: 70px;
}

.hero-content {
    max-width: 480px;
    animation: fadeIn 1.2s ease;
}

.hero h1 {
    font-size: 45px;
    color: var(--brown);
    font-weight: 800;
}

.hero p {
    margin: 15px 0 22px;
    color: var(--light-brown);
    font-size: 18px;
}

.btn {
    padding: 12px 25px;
    background: var(--gold);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}
.btn:hover { background: var(--gold-dark); }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(25px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* =======================================
   ABOUT + FEATURES SECTION
======================================= */
.about-features-section {
    background: var(--bg-light);
    text-align: center;
}

.main-title {
    font-size: 36px;
    font-weight: 800;
    color: #241c15;
    margin-bottom: 40px;
    position: relative;
}

.main-title::after {
    content: "";
    width: 120px;
    height: 3px;
    background: var(--red);
    margin: 10px auto 0;
    display: block;
}

.about-features-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.about-box, .features-box {
    width: 32%;
    text-align: left;
}

.about-box h3, .features-box h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #23201c;
}

.subtitle {
    font-style: italic;
    color: #696969;
    margin-bottom: 20px;
}

.middle-img img {
    width: 330px;
    border-radius: 10px;
}

.feature-list {
    list-style: none;
    margin: 20px 0;
}

.feature-list li {
    margin: 10px 0;
    font-size: 18px;
    color: var(--brown);
    font-weight: 500;
}

.btn2 {
    padding: 10px 22px;
    background: var(--gold);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    display: inline-block;
    margin-top: 18px;
    font-weight: 600;
    transition: .3s;
}
.btn2:hover { background: var(--gold-dark); }
.btn2.red { background: var(--red); }
.btn2.red:hover { background: var(--red-dark); }

/* Responsive */
@media(max-width: 992px) {
    .about-features-container {
        flex-direction: column;
        text-align: center;
    }
    .about-box, .features-box {
        width: 100%;
        text-align: center;
    }
    .middle-img img {
        width: 70%;
        margin: auto;
    }
}


/* =======================================
   PRODUCT GALLERY
======================================= */
.product-gallery {
    background: #f3f5fc;
    text-align: center;
    padding: 60px 20px;
}

.pg-title {
    font-size: 34px;
    font-weight: 700;
    color: #111;
    margin-bottom: 40px;
    line-height: 1.4;
    border-top: 3px solid #e74c3c;
    display: inline-block;
    padding-top: 10px;
}

.pg-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.pg-box {
    background: #fff;
    padding: 6px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.5);
    transition: .3s;
}

.pg-box img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 6px;
}

.pg-box:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* Responsive */
@media(max-width: 900px) {
    .pg-container { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 600px) {
    .pg-container { grid-template-columns: 1fr; }
    .pg-title { font-size: 26px; }
}

/* ============ BASIC RESET ============ */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

/* ============ SECTION BG ============ */
.testimonial-section{
    background:#eef1fa;
    padding:60px 20px;
    text-align:center;
}

/* ============ HEADING ============ */
.title{
    font-size:32px;
    font-weight:700;
    margin-bottom:30px;
    position:relative;
    padding-bottom:10px;
}

.title:after{
    content:"";
    width:80px;
    height:3px;
    background:#b32026;
    position:absolute;
    left:50%;
    bottom:0;
    transform:translateX(-50%);
}

/* ============ TESTIMONIAL BOX ============ */
.testimonial-box{
    max-width:800px;
    background:#fff;
    padding:40px 25px;
    margin:auto;
    border-radius:10px;
    box-shadow:0 2px 8px rgba(0,0,0,0.1);
}

/* ============ QUOTE ICON ============ */
.quote-icon{
    font-size:40px;
    color:#d9363e;
    margin-bottom:20px;
}

/* ============ MESSAGE ============ */
.message{
    font-size:18px;
    line-height:26px;
    color:#333;
    margin-bottom:30px;
}

/* ============ CUSTOMER ============ */
.customer img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
}

.customer h4{
    font-size:18px;
    font-weight:600;
    margin-top:10px;
}

/* ============ DOTS ============ */
.dots{
    margin-top:20px;
}

.dot{
    width:12px;
    height:12px;
    border:2px solid #ff6b00;
    border-radius:50%;
    display:inline-block;
    margin:0 5px;
}

.dot.active{
    background:#ff6b00;
}

/* ============ RESPONSIVE ============ */
@media(max-width:600px){
    .title{
        font-size:26px;
    }
    .message{
        font-size:16px;
    }
}

/* -------- FOOTER BG (dot pattern) -------- */
.footer-section {
    background: #eef1fa;
    background-image: radial-gradient(#ccc 1px, transparent 1px);
    background-size: 12px 12px;
    text-align: center;
    padding: 40px 20px;
}

/* -------- SOCIAL ICONS -------- */
.social-icons {
    margin-bottom: 30px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 2px solid #ff6b00;
    border-radius: 50%;
    line-height: 36px;
    font-size: 18px;
    text-align: center;
    margin: 0 8px;
    color: #ff6b00;
    text-decoration: none;
}

/* Hover */
.social-icons a:hover {
    background: #ff6b00;
    color: #fff;
}

/* -------- CONTENT BOXES -------- */
.footer-content {
    max-width: 900px;
    margin: auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding-bottom: 20px;
    border-bottom: 1px solid #aaa;
}

.footer-box {
    margin: 20px 0;
    width: 300px;
}

.footer-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

.footer-box p {
    font-size: 16px;
    line-height: 24px;
    color: #333;
}

/* -------- COPYRIGHT -------- */
.brand {
    color: #d4362a;
    font-weight: bold;
}

.designer {
    color: #d4362a;
}


/* Copyright */
footer p {
    margin-top: 10px;
    font-size: 15px;
    color: #444;
}

/* -------- RESPONSIVE -------- */
@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
