html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

/* .container,
.container-fluid,
.row{
    max-width:100%;
} */

:root {
    --gold: #d4a24c;
    --dark: #130b08;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* =========================
        TOPBAR
        ========================= */

.topbar {
    background: #0f0906;
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: all .4s ease;
}

/* ADD THIS */
.topbar.hide {
    transform: translateY(-100%);
    opacity: 0;
}

.topbar a {
    color: #fff;
    margin-right: 15px;
    font-size: 16px;
}

.topbar a:hover {
    color: var(--gold);
}

.social-icons a {
    color: var(--gold);
    margin-left: 20px;
    font-size: 20px;
}

/* ========================= STICKY NAVBAR ========================= */
.topbar {
    height: 48px;
}

.navbar-custom {
    position: fixed;
    top: 48px;
    left: 0;
    width: 100%;
    z-index: 9998;
    transition: .4s;
}

.navbar-custom.navbar-scrolled {
    top: 0;
    background: #111;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .25);
}

/* =========================
        LOGO
        ========================= */

.navbar-logo {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--gold);
    background: #fff;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text span {
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
}

.logo-text small {
    color: #fff;
    font-size: 12px;
    letter-spacing: 2px;
}

/* =========================
        MENU
        ========================= */

.navbar-nav .nav-link {
    color: #fff !important;
    font-size: 18px;
    margin: 0 12px;
    font-weight: 500;
    transition: .3s;
}

.navbar-nav .nav-link:hover {
    color: var(--gold) !important;
}

/* =========================
        CONTACT
        ========================= */

.contact-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-circle {
    width: 55px;
    height: 55px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold);
    transition: .3s;
}

.contact-circle:hover {
    background: var(--gold);
    color: #fff;
}

.contact-text {
    color: #fff;
}

.contact-text small {
    color: var(--gold);
}

.contact-text h3 {
    font-size: 18px;
    margin: 0;
}

/* =========================
        HERO
        ========================= */

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .55);
    z-index: 1;
}

.hero .container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.hero-content {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    max-width: 700px;
}

.hero-sub {
    color: #d4a24c;
    font-size: 24px;
    margin-bottom: 15px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 6vw, 42px);
    font-weight: 700;
    line-height: 1.1;
}

.hero-desc {
    font-size: 18px;
    margin-top: 20px;
    max-width: 600px;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.hero-btn {
    background: #d4a24c;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
}

.hero-btn:hover {
    background: #b8862b;
    color: #fff;
}

.hero-btn-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
}

.hero-btn-outline:hover {
    background: #fff;
    color: #111;
}

@media(max-width:991px) {
    .hero-title {
        font-size: 55px;
    }

    .hero-content {
        text-align: center;
        align-items: center;
        max-width: 100%;
    }
}

@media(max-width:768px) {

    .hero {
        min-height: 70vh;
    }

    .hero-img {
        height: 70vh;
    }

    .hero-content {
        height: 70vh;
        padding-top: 140px;
        justify-content: center;
    }

    .hero-title {
        font-size: 34px;
        line-height: 1.2;
    }

    .hero-sub {
        font-size: 16px;
    }

    .hero-desc {
        font-size: 14px;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: auto;
        margin-top: 20px;
    }

    .hero-btn,
    .hero-btn-outline {
        width: 100%;
        padding: 12px 20px;
    }
}

/* =========================
        SECTIONS
        ========================= */

.section {
    padding: 40px 0;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: #222;
    font-weight: 700;
}

.about-img img {
    width: 100%;
    border-radius: 15px;
}

/* =========================
        PRODUCTS
        ========================= */

.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .4s;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-card h4 {
    padding: 20px;
    text-align: center;
}

/* =========================
        COUNTER
        ========================= */

.counter-section {
    background: #1c120c;
    color: #fff;
}

.counter-box h2 {
    color: var(--gold);
    font-size: 55px;
    font-weight: 700;
}

.counter-box p {
    margin-top: 10px;
}

/* =========================
        TESTIMONIAL
        ========================= */

.testimonial {
    background: #f7f7f7;
    padding: 40px;
    border-radius: 15px;
}

/* =========================
        CONTACT FORM
        ========================= */

.contact-section {
    background: #111;
    color: #fff;
}

.form-control {
    padding: 15px;
    border-radius: 10px;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--gold);
}

/* =========================
        FOOTER
        ========================= */

.footer {
    background: #090909;
    color: #fff;
    padding: 30px 0;
}

.footer h4 {
    color: var(--gold);
}

.footer i {
    color: var(--gold);
    margin: 0 10px;
    font-size: 20px;
}

/* =========================
        TABLET
        ========================= */

@media(max-width:991px) {

    .navbar-collapse {
        background: #111;
        padding: 25px;
        margin-top: 15px;
        border-radius: 15px;
    }

    .navbar-nav .nav-link {
        padding: 12px 0;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .logo-text span {
        font-size: 26px;
    }
}

/* ========================= MOBILE ========================= */
@media(max-width:768px) {
    .navbar-logo {
        width: 55px;
        height: 55px;
    }

    .logo-text span {
        font-size: 20px;
    }

    .logo-text small {
        font-size: 9px;
    }

    .hero {
        padding-top: 80px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-sub {
        font-size: 20px;
    }

    .section-title {
        font-size: 38px;
    }

    .hero-btn {
        padding: 12px 30px;
    }
}

@media(max-width:768px) {
    .topbar {
        display: none;
    }

    .navbar-custom {
        top: 0;
        background: #111;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 162, 76, .8);
    border-radius: 50%;
    opacity: 1;
}

.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: #d4a24c;
}

@media(max-width:768px) {

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

}

.cakes-section {
    background: #f4eee6;
    padding: 80px 0;
    position: relative;
}

.section-heading span {
    color: #d89b35;
    font-size: 18px;
    text-transform: uppercase;
}

.section-heading h2 {
    font-size: 42px;
    font-weight: 700;
    color: #231815;
    margin-top: 10px;
    font-family: Georgia, serif;
}

.cakes-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 60px 0 40px;
}

.cakes-header h3 {
    color: #d89b35;
    font-size: 55px;
    font-family: Georgia, serif;
    margin: 0;
}

.view-all-btn {
    background: #ff3d93;
    color: #fff;
    padding: 12px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

.cake-card {
    text-align: center;
}

.cake-card img {
    width: min(180px, 100%);
    height: min(180px, 100%);
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 25px;
}

.cake-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #231815;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: Georgia, serif;
}

.cake-card p {
    font-size: 22px;
    color: #555;
    margin: 0;
}

/* Tablet */
@media(max-width:991px) {

    .section-heading h2 {
        font-size: 42px;
    }

    .cakes-header h3 {
        font-size: 42px;
    }

    .cake-card img {
        width: 220px;
        height: 220px;
    }
}

/* Mobile */
@media(max-width:767px) {

    .cakes-header {
        flex-direction: column;
        gap: 20px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .cakes-header h3 {
        font-size: 36px;
    }

    .cake-card img {
        width: 180px;
        height: 180px;
    }

    .cake-card h4 {
        font-size: 18px;
    }

    .cake-card p {
        font-size: 18px;
    }
}

/* ========================= FOOTER ========================= */
.bakery-footer {
    background: linear-gradient(to right, #1d130f, #221613);
    color: #fff;
    position: relative;
    padding-top: 40px;
}

.footer-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: Georgia, serif;
}

.footer-info p {
    margin-bottom: 10px;
    font-size: 16px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-info i {
    color: #fff;
    margin-top: 6px;
}

/* Map */
.map-box iframe {
    width: 100%;
    height: 275px;
    border: 0;
    border-radius: 15px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 18px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: .3s;
}

.footer-links a i {
    margin-right: 10px;
}

.footer-links a:hover {
    color: #d79c2f;
    padding-left: 8px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gallery-grid img {
    width: 100%;
    height: 85px;
    object-fit: cover;
    border-radius: 8px;
    border: 4px solid #fff;
}

/* Bottom */
.footer-bottom {
    background: #000;
    margin-top: 60px;
    padding: 25px 0;
    font-size: 24px;
}

.footer-bottom span {
    color: #d79c2f;
    font-size: 18px;
}

/* Scroll Top */

.scroll-top {
    position: absolute;
    right: 25px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: #d79c2f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 22px;
}

/* =========================Responsive ========================= */
@media(max-width:991px) {
    /* .footer-title {
        font-size: 34px;
    } */

    .footer-info p,
    .footer-links a {
        font-size: 14px;
    }

    .footer-bottom {
        font-size: 18px;
    }
}

@media(max-width:767px) {

    .bakery-footer {
        text-align: center;
    }

    .footer-info p {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-title {
        font-size: 30px;
    }

    .footer-bottom {
        font-size: 16px;
    }

    .scroll-top {
        width: 50px;
        height: 50px;
    }

    .footer-social-icons {
        justify-content: center;
    }

    .footer-links {
        text-align: center;
    }

    .map-box {
        margin-top: 20px;
    }
}

@media(max-width:575px) {

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-title {
        font-size: 20px;
    }
}

.top-social-icons a {
    color: var(--gold);
    margin-left: 20px;
    font-size: 20px;
}

.footer-social-icons {
    margin-top: 25px;
    display: flex;
    gap: 12px;
}

.footer-social-icons a {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.footer-social-icons a:hover {
    background: #d79c2f;
    border-color: #d79c2f;
    color: #fff;
}

.footer-copyright,
.footer-designer {
    white-space: normal;
}

.footer-copyright span {
    color: #d79c2f;
    font-size: inherit;
    /* same size */
    font-weight: inherit;
}

.footer-designer {
    font-size: 14px;
    white-space: nowrap;
}

.footer-designer span {
    color: #d79c2f;
    font-size: inherit;
    /* same size */
    font-weight: inherit;
    /* same weight */
}

@media (max-width:767px) {

    .cakes-section {
        overflow-x: hidden;
    }

    .cake-card {
        width: 100%;
        overflow: hidden;
    }

    .cake-card img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 320px) {

    .cakes-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cakes-header h3 {
        font-size: 28px;
    }

    .view-all-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

.cake-card h4 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
}

@media (max-width:320px) {

    .cake-card h4 {
        font-size: 16px;
    }

    .cake-card p {
        font-size: 15px;
    }
}

@media (max-width:320px) {

    .footer-social-icons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    .footer-social-icons a {
        width: 40px;
        height: 40px;
    }
}

@media(max-width:576px) {

    .navbar-brand {
        max-width: 100%;
    }

    .navbar-logo {
        width: 50px;
        height: 50px;
    }

    .logo-text span {
        font-size: 18px;
    }

    .logo-text small {
        font-size: 8px;
    }
}

@media (max-width: 576px) {

    .section.bg-light .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .section.bg-light .row {
        margin-left: 0;
        margin-right: 0;
    }

    .section.bg-light .col-md-4 {
        padding-left: 0;
        padding-right: 0;
    }

    .product-card {
        width: 100%;
        margin: 0 auto;
    }
}

.section .container {
    padding-left: 15px;
    padding-right: 15px;
}

.section .row {
    margin-left: 0;
    margin-right: 0;
}

.about-img img {
    width: 100%;
    display: block;
}

@media(max-width:767px) {

    .section .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .section .row {
        margin-left: 0;
        margin-right: 0;
    }

    .section .col-lg-6 {
        padding-left: 0;
        padding-right: 0;
    }
}

.cake-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
    transition: .3s;
    height: 100%;
}

.cake-card:hover {
    transform: translateY(-8px);
}

.cake-image {
    height: 280px;
    padding: 15px;
    background: transparent;
    /* remove gray background */
}

.cake-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
    /* remove round image */
    background: none;
}

.cake-card h4 {
    padding: 15px 15px 5px;
    font-size: 22px;
    font-weight: 700;
    color: #222;
}

.cake-card p {
    padding-bottom: 15px;
    color: #666;
    font-size: 18px;
}


.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: all .3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

.product-image {
    width: 100%;
    height: 320px;
    /* same as screenshot */
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* fills entire area */
    transition: .5s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
}

.product-content h4 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    color: #222;
}

@media(max-width:768px) {

    .product-image {
        height: 250px;
    }

    .product-content h4 {
        font-size: 18px;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

@media(max-width:767px) {

    .about-img {
        margin-top: 30px;
    }

    .section-title {
        font-size: 28px;
        text-align: center;
    }

    .section p {
        text-align: center;
    }
}

.scroll-top{
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 50px;
    height: 50px;
    background: #e29a27;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.scroll-top.active{
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover{
    color: #fff;
    transform: translateY(-5px);
}

.video-section {
    padding: 80px 0;
    background: #fff;
}

.video-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.video-tag {
    color: #c98a3c;               /* match your theme accent */
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.video-content p {
    margin: 15px 0 25px;
    line-height: 1.7;
    color: #555;
}

.video-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #c98a3c;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}
.video-btn:hover {
    background: #a76f2b;
    color: #fff;
}

/* Responsive video – keeps 16:9 ratio on all screens */
.video-box {
    position: relative;
    width: 100%;
    padding-top: 56.25%;         /* 16:9 aspect ratio */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.video-box video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-box iframe {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%; border: 0;
}

/* Stack columns on tablets/mobiles */
@media (max-width: 991px) {
    .video-section { padding: 50px 0; }
    .video-content { margin-bottom: 30px; text-align: center; }
    .video-content h2 { font-size: 1.6rem; }
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 80px;              /* sits above the scroll-top button */
    width: 55px;
    height: 55px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
}

/* Gentle pulse ring effect */
@keyframes whatsapp-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70%  { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Mobile adjustments */
@media (max-width: 576px) {
    .whatsapp-float {
        right: 15px;
        bottom: 80px;
        width: 50px;
        height: 50px;
        font-size: 27px;
    }
}