body {
    padding-top: 70px;
}

.slider-img {
    height: 90vh;
    object-fit: cover;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

/* body {
    padding-top: 70px;
    font-family: 'Poppins', sans-serif;
    background-color: #f8f4f0;
}

Navbar
.custom-navbar {
    background: linear-gradient(90deg, #3e2723, #5d4037);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.nav-link:hover {
    color: #d7a86e !important;
} */

/* Slider */
.slider-img {
    height: 90vh;
    object-fit: cover;
    filter: brightness(0.75);
}

.custom-caption {
    background: rgba(62, 39, 35, 0.6);
    padding: 30px;
    border-radius: 15px;
}

/* Coffee Button */
.btn-coffee {
    background-color: #c49b63;
    color: white;
    border-radius: 30px;
    padding: 10px 25px;
}

.btn-coffee:hover {
    background-color: #a67c52;
    color: white;
}

/* About Section */
#about {
    background: #fffaf5;
}

#about h2 {
    color: #4e342e;
    font-weight: 700;
}

/* Products */
#products {
    background: linear-gradient(to right, #efebe9, #f5f5f5);
}

.card {
    border: none;
    border-radius: 20px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.card h4 {
    color: #3e2723;
    font-weight: 600;
}

/* Contact */
#contact {
    background: #fff3e0;
}

#contact h2 {
    color: #5d4037;
}

/* Footer */
/* footer {
    background: #3e2723 !important;
} */
.carousel-caption {
    bottom: 35%;
}

.custom-caption h1 {
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.6);
}

.custom-caption p {
    font-size: 1.2rem;
}

.about-modern {
    position: relative;
    height: 100vh;
    background: url("https://images.unsplash.com/photo-1509042239860-f550ce710b93") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dark Overlay */
.about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            rgba(62, 39, 35, 0.85),
            rgba(0, 0, 0, 0.65));
}

/* Glass Card */
.about-card {
    position: relative;
    max-width: 700px;
    padding: 60px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 25px;
    color: white;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    animation: fadeUp 1.2s ease forwards;
}



/* Typography */
.about-tag {
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: #d7a86e;
    display: block;
    margin-bottom: 15px;
}

.about-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.about-text {
    line-height: 1.8;
    color: #f3eae4;
}

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

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

/* Responsive */
@media (max-width: 768px) {
    .about-card {
        padding: 40px 25px;
    }

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

.about-editorial {
    position: relative;
    padding: 120px 80px;
    background: #f8f4f0;
    overflow: hidden;
}

/* Giant Background Word */
.about-bg-text {
    position: absolute;
    top: 40px;
    left: 50px;
    font-size: 150px;
    font-weight: 800;
    color: rgba(62, 39, 35, 0.05);
    letter-spacing: 10px;
    pointer-events: none;
}

/* Main Wrapper */
.about-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    position: relative;
    z-index: 2;
}

/* Text Content */
.about-text-content {
    flex: 1;
}

.about-tag {
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: #c49b63;
}

.about-text-content h2 {
    font-size: 2.8rem;
    margin: 20px 0;
    color: #3e2723;
}

.about-text-content p {
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

/* Image */
.about-image-content {
    flex: 1;
    margin-top: 116px
}

/* .about-image-content img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
    transform: rotate(-3deg);
    transition: 0.4s ease;
}

.about-image-content img:hover {
    transform: rotate(0deg) scale(1.03);
} */

.about-image-content video {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
    transform: rotate(-3deg);
    transition: 0.4s ease;
}

.about-image-content video:hover {
    transform: rotate(0deg) scale(1.03);
}

/* Responsive */
@media (max-width: 900px) {
    .about-wrapper {
        flex-direction: column;
    }

    .about-bg-text {
        font-size: 80px;
    }
}

.product-card-custom {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 250px;
    background: white;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

/* Content Layer */
.product-content {
    position: absolute;
    inset: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: white;
    transition: 0.5s ease;
    z-index: 2;
}

/* Image Layer */
.product-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
    transform: scale(1.1);
}

/* Hover Effects */
.product-card-custom:hover .product-content {
    background: rgba(0, 0, 0, 0.6);
    color: white;
}

.product-card-custom:hover .product-image img {
    transform: scale(1);
}

.hero-video {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    top: 50%;
    transform: translateY(-50%);
}

.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

.product-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.product-body {
    padding: 30px;
    text-align: center;
}

.product-body h4 {
    color: #3e2723;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-body p {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

.product-composition {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    color: #c49b63;
}

.product-card-overlay {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.product-card-overlay img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.1));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 30px;
    color: white;
    text-align: center;
}

.product-overlay h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.product-card-overlay {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.product-card-overlay img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.15));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    text-align: center;
    color: white;
}

.product-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    background: transparent;
    padding: 0;
}

.product-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 40px;
    text-align: center;
    color: white;
}

.product-card-overlay {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.product-card-overlay img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

.product-content h4 {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.product-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
    color: white;
}

.contact-section {
    background: #fff8f2;
}

.contact-title {
    color: #3e2723;
    font-weight: 700;
}

.contact-subtitle {
    color: #666;
    max-width: 600px;
    margin: auto;
}

.contact-box {
    background: white;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    font-size: 28px;
    margin-bottom: 10px;
    color: #c49b63;
}

.contact-box a {
    color: #3e2723;
    font-weight: 600;
    text-decoration: none;
}
.hero-content .btn-outline-light{
    border-radius:30px;
    border:2px solid c49b63;
    color:white;
    padding:10px 25px;
    transition:0.3s ease;
}

.hero-content .btn-outline-light:hover{
    background:#6F4E37;
    border-color:#6F4E37;
    color:white;
}

/*reponsive CSS*/
html, body {
    overflow-x: hidden;
}
img, video {
    max-width: 100%;
    height: auto;
    display: block;
}
.container {
    width: 100%;
    max-width: 1200px;
}
h1 {
    font-size: clamp(28px, 5vw, 48px);
}

h2 {
    font-size: clamp(22px, 4vw, 36px);
}

p {
    font-size: clamp(14px, 2vw, 16px);
}
.hero-video {
    height: 100vh;
}
.hero-video {
    min-height: 100vh;
}
.about-wrapper {
    flex-wrap: wrap;
}
@media (max-width: 992px) {

    .about-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .about-image-content {
        margin-top: 40px;
    }

}
@media (max-width: 768px) {

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .product-overlay {
        padding: 20px;
    }

    .contact-box {
        padding: 25px;
    }

}
@media (max-width: 480px) {

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .about-editorial {
        padding: 80px 20px;
    }

}
section {
    padding-left: 20px;
    padding-right: 20px;
}
.navbar-brand img{
    height:40px;
    width:auto;
    display:inline-block;
    vertical-align:middle;
}
/*reponsive CSS*/

/*Our Variety Card*/
/*.product-card-plain {*/
/*    height: 100%;*/
/*    border-radius: 24px;*/
/*    padding: 40px 28px;*/
/*    text-align: left;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);*/
/*    transition: all 0.35s ease;*/
/*}*/


/*.premium-card-bg {*/
/*    background: linear-gradient(135deg, #f6ede3, #e8d3bd, #f3e4d4) !important;*/
/*    border: 1px solid rgba(92, 64, 51, 0.08);*/
/*    color-scheme: light !important; */
/*}*/

/*.product-card-plain:hover {*/
/*    transform: translateY(-8px);*/
/*    box-shadow: 0 24px 55px rgba(92, 64, 51, 0.16);*/
/*}*/


/*.product-card-plain .product-content h3 {*/
/*    font-size: 1.5rem;*/
/*    font-weight: 700;*/
/*    color: #3e2723 !important; */
/*    -webkit-text-fill-color: #3e2723 !important; */
/*    margin-bottom: 16px;*/
/*}*/


/*.product-card-plain .product-content p {*/
/*    font-size: 1rem;*/
/*    line-height: 1.8;*/
/*    color: #5c4033 !important; */
/*    -webkit-text-fill-color: #5c4033 !important; */
/*    margin-bottom: 18px;*/
/*}*/


/*.product-card-plain .product-composition {*/
/*    display: inline-block;*/
/*    font-size: 0.95rem;*/
/*    font-weight: 600;*/
/*    color: #7b4f2d !important; */
/*    background: rgba(255, 255, 255, 0.6) !important; */
/*    -webkit-text-fill-color: #7b4f2d !important; */
/*    padding: 10px 14px;*/
/*    border-radius: 12px;*/
/*}*/

/*@media (max-width: 768px) {*/
/*    .product-card-plain {*/
/*        padding: 28px 20px;*/
/*        border-radius: 18px;*/
/*    }*/

/*    .product-card-plain .product-content h3 {*/
/*        font-size: 1.25rem;*/
/*    }*/

/*    .product-card-plain .product-content p {*/
/*        font-size: 0.95rem;*/
/*        line-height: 1.7;*/
/*    }*/

/*    .product-card-plain .product-composition {*/
/*        font-size: 0.88rem;*/
/*    }*/
/*}*/

/*Our Variety Card Ends Here*/


/* ================================
   OUR VARIANTS - CLEAN RESPONSIVE
================================ */

/*#products {*/
/*    background: linear-gradient(to right, #efebe9, #f5f5f5);*/
/*}*/

/*.variant-card {*/
/*    height: 100%;*/
/*    min-height: 320px;*/
/*    border-radius: 24px;*/
/*    padding: 32px 24px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    text-align: center;*/
/*    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);*/
/*    transition: transform 0.35s ease, box-shadow 0.35s ease;*/
/*    overflow: hidden;*/
/*}*/

/*.premium-card-bg {*/
/*    background: linear-gradient(135deg, #f6ede3, #ead7c4, #f3e4d4);*/
/*    border: 1px solid rgba(92, 64, 51, 0.08);*/
/*}*/

/*.variant-card:hover {*/
/*    transform: translateY(-8px);*/
/*    box-shadow: 0 24px 55px rgba(92, 64, 51, 0.16);*/
/*}*/

/*.variant-card-body {*/
/*    width: 100%;*/
/*    max-width: 520px;*/
/*}*/

/*.variant-card-body h3 {*/
/*    font-size: 1.5rem;*/
/*    font-weight: 700;*/
/*    line-height: 1.35;*/
/*    color: #3e2723;*/
/*    margin-bottom: 16px;*/
/*}*/

/*.variant-card-body p {*/
/*    font-size: 1rem;*/
/*    line-height: 1.8;*/
/*    color: #5c4033;*/
/*    margin-bottom: 18px;*/
/*}*/

/*.variant-composition {*/
/*    display: inline-block;*/
/*    font-size: 0.95rem;*/
/*    font-weight: 600;*/
/*    line-height: 1.6;*/
/*    color: #7b4f2d;*/
/*    background: rgba(255, 255, 255, 0.72);*/
/*    padding: 10px 14px;*/
/*    border-radius: 12px;*/
/*}*/

/*.variant-card .btn-coffee {*/
/*    min-width: 180px;*/
/*    border-radius: 30px;*/
/*}*/

/*@media (max-width: 991.98px) {*/
/*    .variant-card {*/
/*        min-height: 300px;*/
/*        padding: 28px 20px;*/
/*    }*/

/*    .variant-card-body h3 {*/
/*        font-size: 1.32rem;*/
/*    }*/

/*    .variant-card-body p {*/
/*        font-size: 0.96rem;*/
/*        line-height: 1.7;*/
/*    }*/
/*}*/

/*@media (max-width: 767.98px) {*/
/*    #products .container {*/
/*        padding-left: 16px;*/
/*        padding-right: 16px;*/
/*    }*/

/*    .variant-card {*/
/*        min-height: auto;*/
/*        padding: 24px 18px;*/
/*        border-radius: 18px;*/
/*    }*/

/*    .variant-card-body h3 {*/
/*        font-size: 1.16rem;*/
/*        margin-bottom: 12px;*/
/*    }*/

/*    .variant-card-body p {*/
/*        font-size: 0.92rem;*/
/*        line-height: 1.7;*/
/*        margin-bottom: 16px;*/
/*    }*/

/*    .variant-composition {*/
/*        display: block;*/
/*        font-size: 0.88rem;*/
/*        line-height: 1.5;*/
/*        padding: 10px 12px;*/
/*    }*/

/*    .variant-card .btn-coffee {*/
/*        width: 100%;*/
/*        max-width: 240px;*/
/*    }*/
/*}*/

/*@media (max-width: 479.98px) {*/
/*    .variant-card {*/
/*        padding: 22px 16px;*/
/*    }*/

/*    .variant-card-body h3 {*/
/*        font-size: 1.05rem;*/
/*    }*/

/*    .variant-card-body p {*/
/*        font-size: 0.88rem;*/
/*    }*/

/*    .variant-composition {*/
/*        font-size: 0.83rem;*/
/*    }*/
/*}*/


#products {
    background: linear-gradient(to right, #efebe9, #f5f5f5);
}

.variant-card {
    height: 100%;
    min-height: 320px;
    border-radius: 24px;
    padding: 32px 24px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
}

.premium-card-bg {
    background: linear-gradient(135deg, #f6ede3, #ead7c4, #f3e4d4);
    border: 1px solid rgba(92, 64, 51, 0.08);
}

.variant-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(92, 64, 51, 0.16);
}

.variant-card-body {
    width: 100%;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.variant-card-body h3 {
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.35;
    color: #3e2723;
    margin-bottom: 18px;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.variant-card-body p {
    font-size: 1.02rem;
    line-height: 1.9;
    color: #5c4033;
    margin-bottom: 20px;
    flex-grow: 1;
}

.variant-composition {
    display: inline-block;
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.6;
    color: #7b4f2d;
    background: rgba(255, 255, 255, 0.72);
    padding: 10px 16px;
    border-radius: 12px;
    margin-bottom: 22px;
}

.variant-card .btn-coffee {
    min-width: 180px;
    border-radius: 30px;
    padding: 12px 28px;
    margin-top: auto;
}

@media (max-width: 991.98px) {
    .variant-card {
        min-height: 300px;
        padding: 28px 20px;
    }

    .variant-card-body h3 {
        font-size: 1.4rem;
        min-height: auto;
    }

    .variant-card-body p {
        font-size: 0.96rem;
        line-height: 1.75;
    }
}

@media (max-width: 767.98px) {
    #products .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .variant-card {
        min-height: auto;
        padding: 24px 18px;
        border-radius: 18px;
    }

    .variant-card-body h3 {
        font-size: 1.16rem;
        margin-bottom: 12px;
    }

    .variant-card-body p {
        font-size: 0.92rem;
        line-height: 1.7;
        margin-bottom: 16px;
        flex-grow: 0;
    }

    .variant-composition {
        display: block;
        font-size: 0.88rem;
        line-height: 1.5;
        padding: 10px 12px;
        margin-bottom: 18px;
    }

    .variant-card .btn-coffee {
        width: 100%;
        max-width: 240px;
    }
}

@media (max-width: 479.98px) {
    .variant-card {
        padding: 22px 16px;
    }

    .variant-card-body h3 {
        font-size: 1.05rem;
    }

    .variant-card-body p {
        font-size: 0.88rem;
    }

    .variant-composition {
        font-size: 0.83rem;
    }
}