/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background-color: #fffaf5;
    color: #333;
}

/* ================= NAVBAR ================= */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: #8B4513;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #d2691e;
}

.button {
    padding: 8px 18px;
    background-color: #8B4513;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.button:hover {
    background-color: #5a2d0c;
}

/* ================= HERO SECTION ================= */

.two {
    height: 90vh;
    background-image: url("https://ik.imagekit.io/p4dqlzkum/brown%20pastry%20on%20black%20pan.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: white;
    position: relative;
}

.two::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.two h1,
.two p,
.btn-container {
    position: relative;
    z-index: 1;
}

.two h1 {
    font-size: 48px;
    margin-top: 10px;
}

.two p {
    font-size: 18px;
}

/* ================= BUTTONS ================= */

.btn-container {
    margin-top: 25px;
    display: flex;
    gap: 20px;
}

.btn-order,
.btn-menu {
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-order {
    background-color: #8B4513;
    color: white;
}

.btn-order:hover {
    background-color: #a0522d;
}

.btn-menu {
    background-color: white;
    color: #8B4513;
}

.btn-menu:hover {
    background-color: #f5e6dc;
}

/* ================= SPECIALS SECTION ================= */

.specials {
    padding: 60px 80px;
    text-align: center;
}

.specials h2 {
    font-size: 44px;
    font-family: 'Playfair Display',serif;
    text-align:center;
    margin-bottom: 40px;
    color: #8B4513;
}

.special-row {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    max-width:1200px;
    margin:0 auto;
    gap: 20px;
}

.item-card {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition:transform 0.3s ease;
    object-fit: cover;
}

.item-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.item-card:hover img{
    transform: scale(1.08);
}
.gallery-overlay {
    backdrop-filter: blur(3px);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;                 /* hidden by default */
    transition: opacity 0.4s ease;
}

.item-card:hover .gallery-overlay {
    opacity: 1;
}
.content-overlay{
    color: white;
}

/* Caption style */
.content-overlay h3 {
    font-size: 22px;
    font-weight: bold;
    text-align: center; 
}

.content-overlay p {

    font-size: 14px;
    line-height: 1.5;
     text-align: center; 
}
/* ================= OTHER SECTIONS ================= */

.about,
.menu,
.gallery {
    padding: 80px;
    min-height: 300px;
}
.about h2{
    font-size: 44px;
    font-family: 'Playfair Display',serif;
    text-align:center;
    margin-bottom: 40px;
    color: #8B4513;
}

.about{
    display:flex;
    flex-direction: column;
}

.about img{
    width: 45%;
    height:350px;
    border-radius: 12px;
    object-fit:cover;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.aboutus{
    width:50%;
}
.about-content{
    display:flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;

}
.aboutus p{
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.read-btn{
    display:inline-block;
    margin-top: 20px;
    padding: 10px 22px;
    background-color: #8B4513;
    color:rgb(247, 240, 240);
    text-decoration: none;
    border-radius: 6px;
    border-color: black;
    font-weight: 500;
    transition: 0.3s ease;
}
.read-btn:hover{
    background-color: #612d08;
    transform: translateY(-2px);
}
.menu {
     display:flex;
    flex-direction: column;
}
.menu h2{
     font-size: 44px;
    font-family: 'Playfair Display',serif;
    text-align:center;
    margin-bottom: 40px;
    color: #8B4513;
}
.menu p{
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.8;
    color: #6b4f3a;              /* soft brown tone */
    text-align: center;
    font-style: italic;
    letter-spacing: 0.5px;
}

.menu-btn{
     /* align-self: flex-end; */
     font-size: 22px;
     font-weight: bold;
     color: #d62828;
     font-weight: 600;
     text-decoration: none;
     letter-spacing: 1px;
     transition: 0.3s ease;
}

.menu-btn:hover{
    letter-spacing: 3px;
    transform: translateX(5px);
}
.menu-container{
    display:flex;
    justify-content: center;
    gap: 30px; 
    flex-wrap: wrap;
    margin-top: 40px;
}
.menu-card{
    display: flex;
    flex-direction: column;
    width: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition:transform 0.3s ease;
    object-fit: cover;
}
.menu-footer{
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}
.price{
    font-weight: bold;
    font-size: 22px;
    color: #333;
}
.menu-card img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}
.view-menu{
    text-align: center;
    margin-top: 50px;
}
.menu-btn1{
    display: inline-block;
    padding: 12px 28px;
    align-items: center;
    color: white;
    background-color:#8B4513;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 03s ease;
    box-shadow: 0 4px 12pxrgba(0,0,0,0.2);
}
.menu-btn1:hover{
    background-color: #401e06;
    transform:translateX(-4px);
    letter-spacing: 2px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.25) ;
}
.order{
    text-align: center;
    padding: 80px 20px;
     background-color: #8B4513;
     /*linear-gradient(135deg, #f8e8d8, #f3d5b5); */
    border-radius: 20px;
    margin: 60px auto;
}
.order h2{
    font-family: 'Playfair Display',serif;
    font-size: 50px;
    color:white;
    margin-bottom: 15px;
}
.order p{
    font-size: 32px;
    color: white;
    background-color: #8B4513;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}
.btn-order1{
    display: inline-block;
    padding: 16px 40px;
    color: #8B4513;
    text-decoration: none;
    border-radius: 30px;
    font-size: 22px;
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: white;
}
.btn-order1:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}
/* ================= FOOTER ================= */

.footer {
    background-color: #8d3832;   /* warm brown */
    color: #fff;
    padding: 60px 20px 30px;
}

.end {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.footer h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #f8d7a3;   /* soft bakery gold */
}

.footer p {
    font-size: 14px;
    line-height: 1.6;
    color: #f1f1f1;
}

.Quick-link ul {
    list-style: none;
    padding: 0;
}

.Quick-link ul li {
    margin-bottom: 8px;
}

.Quick-link ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    transition: 0.3s ease;
}

.Quick-link ul li a:hover {
    color: #f8d7a3;
    padding-left: 5px;
}

.contact-us p,
.open p {
    margin-bottom: 8px;
}

/* Bottom copyright line (optional if you add later) */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 15px;
}
/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    nav {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .two h1 {
        font-size: 32px;
    }

    .btn-container {
        flex-direction: column;
    }
    .special-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .special-row {
        grid-template-columns: 1fr;
    }
    .about-content{
        flex-direction: column;
        text-align: center;
    }
    .about img,
    .aboutus{
        width:100%
    }
    .end {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}