﻿/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Londrina+Shadow&family=Alegreya+Sans+SC&family=Chango&family=Caladea&family=Rubik+Moonrocks&family=Bungee+Inline&family=Alegreya+Sans+SC&family=Rammetto+One&family=Michroma&family=Nosifer&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Londrina+Shadow&family=Alegreya+Sans+SC&family=Chango&family=Caladea&family=Rubik+Moonrocks&family=Bungee+Inline&family=Alegreya+Sans+SC&family=Rammetto+One&family=Michroma&family=Nosifer&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bowlby+One&family=Days+One&family=Lilita+One&family=Titan+One&display=swap');

body {
    font-family: "Open Sans", sans-serif;
    background: linear-gradient(135deg, rgb(221 236 225) 0%, rgb(255 255 255) 100%);
}

a {
    color: #000000;
    text-decoration: none;
}

a:hover {
    color: #5faee3;
    text-decoration: none;
}

h1,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
}

h2,
h3 {
    font-family: "Playfair Display", serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    width: 40px;
    height: 40px;
    border-radius: 5%;
    transition: all 0.4s;
    background: linear-gradient(135deg, #a87e3e, #3e2723);
    color: #ffffff;
    border-radius: 50%;
}

.back-to-top i {
    font-size: 28px;
    color: #ffffff;
    line-height: 0;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #865a3a, #613d30);
    transform: rotate(-45deg);
}

.back-to-top i:hover {
    color: white;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}



/*--------------------------------------------------------------
# General ANimation
--------------------------------------------------------------*/

@keyframes rotate-scale {
    0% {
        transform: rotate(0deg) scale(1);
    }

    40% {
        transform: rotate(10deg) scale(1.03);
    }


    100% {
        transform: rotate(0deg) scale(1);
    }
}

/*--------------------------------------------------------------
# Header Section
--------------------------------------------------------------*/
#header {
    z-index: 997;
    transition: all 0.5s ease;
    padding: 16px 0;
    background: linear-gradient(135deg, #6f4f37, #5c3d32);
    width: 100%;
    box-shadow: 0px 2px 15px rgb(53 51 50 / 82%);
    margin: 0px auto 0;
}

#header.header-scrolled {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
    top: 0;
    margin-top: 0;
    border-radius: 0;
    width: 100%;
    border: 0;
}

#header .logo h1 {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    font-family: 'Lobster', cursive;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #d1ffd3;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 50px;
}

/* Navigation Menu */
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: inline-block;
    padding: 12px 15px;
    font-size: 1.2rem;
    letter-spacing: 1px;
    font-weight: bold;
    color: #f8f9fa;
    white-space: nowrap;
    transition: 0.3s;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
}

.navbar a:hover,
.navbar li:hover>a {
    color: #5c3d32;
    text-decoration: none;
    background-color: #e6b17e;
    padding: 12px 25px;
    border-radius: 4px;
}

.navbar li:before {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    background-color: #5c3d32;
    bottom: 7px;
    left: 15px;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.4s ease;
}

.navbar li:hover:before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 30px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #000000;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

/* Mobile Navigation */
.mobile-nav-toggle {
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }

    #header {
        box-shadow: 0px 2px 12px rgba(106, 91, 91, 0.0);
        background-color: #28a745;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgb(92 61 50);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 8px;
    background: linear-gradient(135deg, #684835, #5c3d32);
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    text-align: center;
    font-size: 28px;
    color: #ffffff;
    font-family: 'Lobster', cursive;
}

.navbar-mobile ul.list-border li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
    margin: 18px;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #5c3d32;
    text-decoration: none;
    background-color: #e6b17e;
    padding: 15px;
    border-radius: 5px;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 0px;
    background: #000000;
    color: white;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #000000;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
    height: 100vh;
    background: #5C3D32;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    color: white;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    padding-top: 100px;
    width: 100%;
    text-align: left;
}

.hero-content h1 {
    font-size: 6rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.4);
}

.hero-subtext {
    font-size: 2rem;
    font-style: italic;
    color: white;
    margin-bottom: 30px;
}

.hero-image {
    width: 330px;
    height: 330px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
}


.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #40190c;
}

/* Responsive css */


@media (max-width: 1324px) {
    .hero-row {
        flex-direction: column-reverse;
    }

    .hero-section {
        height: 100%;
        min-height: 60vh;
        padding: 100px 0;
    }

    .hero-section .row {
        margin-top: 50px;
    }


    .hero-content {
        padding: 0px 10px 0px 10px;
    }

    .hero-image {
        margin-top: 0px;
    }

    .hero-content h1 {
        font-size: 3.0em;
    }

    .hero-subtext {
        font-size: 1.9rem;
    }

    .hero-image {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 928px) {
    .hero-content h1 {
        font-size: 2.3em;
    }

    .hero-subtext {
        font-size: 1.6rem;
    }

    .hero-image {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 758px) {
    .hero-row {
        flex-direction: column-reverse;
    }

    .hero-section {
        height: 100%;
        padding: 60px 0;
    }

    .hero-section .row {
        margin-top: 0px;
    }


    .hero-content {
        text-align: center;
        padding: 80px 10px 0px 10px;
    }

    .hero-content h1 {
        font-size: 3.6rem;
    }

    .hero-subtext {
        font-size: 1.5rem;
    }

    .hero-image {
        width: 230px;
        height: 230px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 100%;
        min-height: 100vh;
        padding: 50px 0;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-subtext {
        font-size: 1.7rem;
    }

    .hero-image {
        width: 210px;
        height: 210px;
    }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/


.features-section {
    background-color: #f2e0c9;
    color: #5c3d32;
    padding: 60px 0;
    text-align: center;
}

.features-title {
    font-size: 3rem;
    font-weight: bold;
    color: #5c3d32;
    margin-bottom: 10px;
}

.features-desc {
    font-size: 1.8rem;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    color: #5c3d32;
    margin-bottom: 40px;
}

.features-section .row {
    display: flex;
    align-items: stretch;
}

h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #5c3d32;
    margin-bottom: 10px;
}

p {
    font-size: 1.3rem;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    color: #5c3d32;
    line-height: 1.6;
}

.features-section .circle-image {
    width: 180px;
    height: 180px;
    background-color: #2c1a14;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4);
}

.features-section .circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #5c3d32;
}

/* Responsive Adjustments */
@media (max-width: 758px) {
    .features-section .circle-image {
        margin-bottom: 20px;
    }

    .features-title {
        font-size: 2.5rem;
    }

    .features-desc {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.6rem;
    }

    p {
        font-size: 1.5rem;
    }

    .features-section .row {
        flex-direction: column;
    }

    .features-section .col-md-4 {
        margin-bottom: 20px;
    }
}


/*--------------------------------------------------------------
#  Gallery Section
--------------------------------------------------------------*/
.gallery-section {
    background-color: #5C3D32;
    color: #f2e0c9;
    padding: 60px 0;
}

.gallery-main-title {
    font-size: 4rem;
    font-weight: bold;
    font-family: "Playfair Display", serif;
    color: #f2e0c9;
}

.gallery-section-desc {
    font-size: 1.8rem;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    color: #F5E1C4;
    margin-top: 1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 100px auto;
}

.gallery-title {
    font-size: 3rem;
    font-weight: bold;
    font-family: "Playfair Display", serif;
    color: #f2e0c9;
}

.gallery-desc {
    font-size: 1.8rem;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    color: #F5E1C4;
    margin-top: 1rem;
    line-height: 1.6;
    margin-top: 10px;
}

.gallery-huge-text {
    font-size: 5rem;
    font-weight: bold;
    font-family: "Poppins", sans-serif;
    color: #f2e0c9;
}

.border-coffee {
    border-radius: 50%;
    width: 95%;
    border: 5px solid #e6b17e;
}

/* Responsive styles */

@media (max-width: 1038px) {
    .gallery-main-title {
        font-size: 3.2rem;
        margin-bottom: 20px;
    }

    .gallery-title {
        font-size: 2.5rem;
    }

    .gallery-desc {
        font-size: 1.9rem;
    }

    .gallery-huge-text {
        font-size: 4rem;
    }
}

@media (max-width: 992px) {
    .gallery-title {
        font-size: 1.8rem;
    }

    /* Description */
    .gallery-desc {
        font-size: 1.6rem;
    }

    .gallery-huge-text {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .gallery-main-title {
        font-size: 2.6rem;
    }

    .gallery-section-desc {
        font-size: 1.5rem;
        margin: 0 auto 0px auto;
    }

    .gallery-title {
        font-size: 2rem;
        text-align: center;
        margin-top: 30px;
    }

    .gallery-desc {
        font-size: 1.3rem;
        text-align: center;
    }

    .gallery-huge-text {
        font-size: 2.5rem;
    }

    .gallery-section .col-lg-3 {
        margin: 20px 0px;
    }
}


/*--------------------------------------------------------------
# Dark banner Section

--------------------------------------------------------------*/


.dark-banner-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    padding: 0 40px;
    background-color: #3e2723;
}

.dark-banner-left-col {
    width: 50%;
    background-color: #3e2723;
    height: 100%;
    color: #f2e0c9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.dark-banner-left-col h1 {
    font-size: 5.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.dark-banner-left-col p {
    font-size: 2.1rem;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    color: #F5E1C4;
    line-height: 1.6;
}

.dark-banner-right-col {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
}

.dark-banner-circle {
    width: 400px;
    height: 400px;
    background-color: #573a25;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4);
}

.dark-banner-circle img {
    width: 90%;
    height: 90%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #5c3d32;
    animation: rotate-scale 10s infinite;
}


/* Responsive */
@media (max-width: 1024px) {
    .dark-banner-section {
        flex-direction: column;
        height: auto;
        padding: 50px 20px;
    }

    .dark-banner-left-col,
    .dark-banner-right-col {
        width: 100%;
        height: auto;
        padding: 30px 0;
    }

    .dark-banner-left-col h1 {
        font-size: 4rem;
    }

    .dark-banner-left-col p {
        font-size: 1.5rem;
    }
}

@media (max-width: 758px) {
    .dark-banner-section {
        flex-direction: column;
        height: auto;
        padding: 50px 20px;
    }

    .dark-banner-left-col,
    .dark-banner-right-col {
        width: 100%;
        height: auto;
        padding: 10px 0;
    }

    .dark-banner-left-col h1 {
        font-size: 2.5rem;
    }

    .dark-banner-left-col p {
        font-size: 1.5rem;
    }

    .dark-banner-circle {
        width: 220px;
        height: 220px;
    }
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/


.menu-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 0;
    background-color: #f9d8a6;
    color: #5C3D32;
}


.menu-main-title {
    font-size: 2.6rem;
    font-weight: bold;
    font-family: "Playfair Display", serif;
    color: #5c3d32;
    margin-bottom: 10px;
    text-align: center;
}

.menu-section-desc {
    font-size: 1.4rem;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    color: #5c3d32;
    margin-top: 1rem;
    line-height: 1.6;
    margin: 0 auto 60px auto;
}


.menu-header {
    text-align: center;
    padding: 20px;
    margin-bottom: 40px;
}

.menu-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.menu-header p {
    font-size: 1.3rem;
    font-style: italic;
}

.menu-content {
    display: flex;
    width: 80%;
    justify-content: space-between;
}

.menu-column {
    width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.menu-item {
    margin-bottom: 20px;
    text-align: left;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
}

.menu-item h3 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #5C3D32;
    margin-bottom: 10px;
}

.menu-item p {
    font-size: 1.2rem;
    color: #5C3D32;
}

.menu-item hr {
    width: 60%;
    margin: 15px auto;
    border: 1px dotted #5C3D32;
}

/* Responsive Design */
@media (max-width: 1024px) {

    .menu-content {
        width: 90%;
    }

    .menu-item {
        padding: 20px;
    }

    .menu-column {
        width: 100%;
    }

    .menu-item h3 {
        font-size: 1.5rem;
    }

    .menu-item p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {

    .menu-main-title {
        font-size: 2.1rem;
        padding: 0px 20px;
    }

    .menu-section-desc {
        font-size: 1.2rem;
        margin: 0 auto 20px auto;
        padding: 0px 20px;
    }

    .menu-content {
        flex-direction: column;
        width: 95%;
    }

    .menu-item {
        padding: 20px;
    }

    .menu-item h3 {
        font-size: 1.4rem;
    }

    .menu-item p {
        font-size: 1.1rem;
    }
}

/*--------------------------------------------------------------
# Introduction Section
--------------------------------------------------------------*/


.coffee-intro {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #5C3D32;
    overflow: hidden;
    padding: 8rem 0rem;
}

.content {
    z-index: 3;
    max-width: 60%;
    color: #F5E1C4;
}

.coffee-title {
    font-size: 4rem;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
    color: #E6B17E;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.coffee-description {
    font-size: 1.8rem;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    color: #F5E1C4;
    margin-top: 1rem;
    line-height: 1.6;
}

.coffee-intro::before,
.coffee-intro::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgb(92 61 50) 0%, rgb(147 93 41) 70%);
    border-radius: 50%;
    opacity: 0.4;
    filter: blur(5px);
    animation: abstractMove 10s infinite alternate ease-in-out;
    z-index: 1;
}

.coffee-intro::before {
    top: 10%;
    left: 4%;
}

.coffee-intro::after {
    bottom: 10%;
    right: 4%;
}

/* Animation Effect */
@keyframes abstractMove {
    0% {
        transform: scale(1) translateY(0);
    }

    100% {
        transform: scale(1.3) translateY(-30px);
    }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .content {
        max-width: 100%;
    }

    .coffee-title {
        font-size: 3.5rem;
    }

    .coffee-description {
        font-size: 1.5rem;
        padding: 20px 50px;
    }
}

@media (max-width: 768px) {
    .coffee-title {
        font-size: 3.4rem;
    }

    .coffee-description {
        font-size: 1.6rem;
        padding: 20px 30px;
    }

    .coffee-intro::before,
    .coffee-intro::after {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 480px) {
    .coffee-title {
        font-size: 3rem;
        padding: 0px 10px;
    }

    .coffee-description {
        font-size: 1.1rem;
        padding: 10px 30px;
    }
}


/*--------------------------------------------------------------
# Light Banner Section
--------------------------------------------------------------*/
.light-banner-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    padding: 0 10%;
    background-color: #f2e0c9;
    justify-content: space-between;
    align-items: stretch;
}

.light-banner-left-col {
    width: 50%;
    background-color: #6f4f37;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.light-banner-section .circle-image {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #9e7247;
    animation: rotate-scale 10s infinite;
}


.light-banner-right-col {
    width: 50%;
    text-align: center;
    color: #6f4f37;
    padding: 20px;
    align-self: center;
}


.light-banner-right-col h1 {
    font-size: 4.2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.light-banner-right-col p {
    font-size: 2rem;
    font-style: italic;
}


@media (max-width: 1424px) {
    .light-banner-section {
        height: 100%;
        padding: 60px 0px;
    }

    .light-banner-left-col,
    .light-banner-right-col {
        width: 100%;
        height: auto;
    }

    .light-banner-left-col {
        padding: 100px 20px;
    }


    .light-banner-section .circle-image {
        width: 240px;
        height: 240px;
        border-radius: 50%;
        object-fit: cover;
    }

    .light-banner-section {
        padding: 0 7%;
        display: flex;
    }


    .light-banner-right-col h1 {
        font-size: 2.1rem;
    }

    .light-banner-right-col p {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .light-banner-section {
        flex-direction: column-reverse;
        height: 100%;
        padding: 60px 0px;
    }


    .light-banner-left-col,
    .light-banner-right-col {
        width: 100%;
        height: 100%;
    }


    .light-banner-right-col {
        padding: 20px 15%;
    }

    .light-banner-left-col {
        padding: 25px 0px;
    }

    .light-banner-section .circle-image {
        width: 260px;
        height: 260px;
        border-radius: 50%;
        object-fit: cover;
        border: 5px solid #6f4f37;
    }

    .light-banner-left-col {
        background-color: #6f4f3700;
    }

    .light-banner-right-col h1 {
        font-size: 2.5rem;
    }

    .light-banner-right-col p {
        font-size: 1.5rem;
    }
}

@media (max-width: 468px) {

    .light-banner-right-col h1 {
        font-size: 2.2rem;
    }

    .light-banner-right-col {
        padding: 20px;
    }
}

/*--------------------------------------------------------------
# Specials Section
--------------------------------------------------------------*/

.specials-section {
    width: 100%;
    overflow: hidden;
    padding: 5rem 5%;
    background: #2A1A13;
}

.specials-main-title {
    font-size: 4rem;
    font-weight: bold;
    font-family: "Playfair Display", serif;
    color: #F5E1C4;
}

.specials-section-desc {
    font-size: 1.8rem;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    color: #F5E1C4;
    margin-top: 1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 100px auto;
}

.specials-section .row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
    position: relative;
}

.specials-img {
    position: relative;
    border-radius: 50%;
}

.specials-img img {
    width: 60%;
    height: auto;
    object-fit: cover;
    display: block;
    margin: auto;
    border-radius: 50%;
    border: 10px solid #4a3023;
}

.specials-text {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 4rem;
}

.text-box {
    background: #5C3D2E;
    padding: 2rem 3rem;
    border-radius: 12px;
    color: #F5E1C4;
    text-align: center;
    max-width: 90%;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
    border: 4px solid #C99E66;
}

.text-box h2 {
    font-size: 3.2rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.text-box p {
    font-size: 1.5rem;
    font-style: italic;
    color: #F5E1C4;
}


.text-box h2 i,
.text-box p i {
    color: #E6B17E;
    margin-right: 10px;
}

.text-box:hover {
    transform: scale(1.03);
    transition: all 0.3s ease-in-out;
    background: #7A5230;
}


@media (max-width: 1038px) {

    .specials-main-title {
        font-size: 3.5rem;
    }

    .specials-section-desc {
        font-size: 1.9rem;
        padding: 20px 30px;
    }

    .specials-text {
        padding: 0rem;
    }

    .specials-img img {
        width: 70%;
    }
}

@media (max-width: 968px) {
    .specials-section {
        padding: 3.5rem 20px 1.8rem 20px;
    }

    .specials-main-title {
        font-size: 3.1rem;
    }

    .specials-section-desc {
        font-size: 1.7rem;
        padding: 20px 60px;
        margin: 0 auto 70px auto;
    }

    .specials-section .row {
        display: flex;
        margin-bottom: 1.4rem;
    }

    .text-box {
        padding: 1.8rem 1.5rem;
        max-width: 90%;
        margin: 40px 0px 0px 0px;
    }


    .specials-text {
        padding: 0rem;
        margin: 40px 0px;
    }

    .text-box h2 {
        font-size: 2.4rem;
        margin-bottom: 0.5rem;
    }

    .text-box p {
        font-size: 1.5rem;
    }
}


@media (max-width: 868px) {

    .specials-main-title {
        font-size: 2.9rem;
    }

    .specials-text {
        padding: 0rem;
        margin: 40px 0px;
    }

    .specials-section-desc {
        font-size: 1.6rem;
    }

    .specials-img img {
        width: 50%;
    }

    .specials-text {
        width: 80%;
    }

    .text-box h2 {
        font-size: 2.1rem;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 468px) {

    .specials-main-title {
        font-size: 2.3rem;
    }

    .specials-section-desc {
        font-size: 1.4rem;
        margin: 0 auto 60px auto;
        padding: 20px 2px;
    }

    .specials-img img {
        width: 70%;
    }

    .text-box p {
        font-size: 1.3rem;
        padding: 10px 0px;
    }

    .text-box {
        padding: 1.8rem 0.2rem;
        max-width: 90%;
        margin: 10px 0px 0px 0px;
    }

    .specials-text {
        width: 100%;
    }
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/


.about-section {
    background-color: #f2e0c9;
    color: #000000;
    padding: 80px 0;
}

.about-title {
    font-size: 3rem;
    font-weight: bold;
    color: #58372e;
    margin-bottom: 10px;
}

.about-subtitle {
    font-size: 1.8rem;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    color: #58372e;
    margin-bottom: 40px;
}

.about-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #55352d;
    margin-bottom: 20px;
}

.about-image {
    width: 80%;
    border-radius: 15px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.about-section img:hover {
    transform: scale(1.03);
}

/* Responsive Styles */
@media (max-width: 1024px) {

    .about-text {
        font-size: 1.0rem;
        line-height: 1.8;
        color: #55352d;
        margin-bottom: 20px;
    }

    .about-image {
        width: 100%;
    }
}

@media (max-width: 798px) {
    .about-title {
        font-size: 2.5rem;
    }

    .about-subtitle {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .about-text {
        font-size: 1.3rem;
    }

    .about-section .col-md-6 {
        width: 100%;
    }
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/

.testimonials-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 80px 40px;
    background-color: #704a34;
    color: #f8e8d0;
    border-top: 5px solid #c79a6b;
}

.testimonials-left-col {
    width: 45%;
    padding: 40px;
    border: 4px solid #C99E66;
    background-color: #3e2a20;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.testimonials-left-col h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #f8e8d0;
    font-style: italic;
}

.testimonials-section p {
    font-size: 1.5rem;
    font-style: italic;
    color: #f8e8d0;
}

.testimonials-section h3 {
    color: #f8e8d0;
}

.testimonials-right-col {
    width: 50%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.coffee-cup {
    font-size: 100px;
    margin-bottom: 20px;
    color: #ffd9b4;
    animation: steam 3s infinite ease-in-out;
}

/* Coffee Cup Steam Animation */
@keyframes steam {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.review-text-container {
    position: relative;
    height: 100%;
    max-width: 500px;
}

.review-text {
    display: none;
    font-size: 1.5rem;
    font-style: italic;
    text-align: center;
    padding: 15px 25px;
    border-radius: 10px;
    border: 3px solid #ffd9b4;
    background-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#review1 {
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonials-section {
        height: 100%;
        padding: 100px 30px;
    }

    .testimonials-left-col,
    .testimonials-right-col {
        width: 48%;
    }

    .testimonials-left-col {
        padding: 20px 12px;
    }


    .testimonials-left-col h2 {
        font-size: 2.2rem;
    }

    .testimonials-section p {
        font-size: 1.4rem;
    }

    .review-text {
        font-size: 1.3rem;
    }

    .review-text-container {
        height: 100%;
    }

    .coffee-cup {
        font-size: 140px;
    }
}

@media (max-width: 868px) {

    .testimonials-section {
        flex-direction: column;
        padding: 50px 30px;
    }

    .testimonials-left-col,
    .testimonials-right-col {
        width: 70%;
        text-align: center;
    }

    .testimonials-left-col h2 {
        font-size: 2rem;
    }

    .testimonials-section p {
        font-size: 1.3rem;
    }

    .review-text {
        font-size: 1.2rem;
    }

    .coffee-cup {
        font-size: 120px;
    }
}

@media (max-width: 468px) {

    .testimonials-section {
        height: 100%;
        flex-direction: column;
        padding: 50px 30px;
    }

    .testimonials-left-col,
    .testimonials-right-col {
        width: 100%;
        text-align: center;
    }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
    background-color: #f2e0c9;
    padding: 80px 0;
}

/* Section Title */
.contact-main-title {
    font-size: 4rem;
    font-weight: bold;
    font-family: "Playfair Display", serif;
    color: #5c3d32;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}

/* Section Description */
.contact-section-desc {
    font-size: 1.8rem;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    color: #5c3d32;
    margin-top: 1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.contact h4 {
    font-size: 36px;
    font-weight: bold;
    color: #5c3d32;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}


.contact .row {
    display: flex;
    justify-content: space-between;
}


/* ----- Contact Form Styles ----- */
.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
}

.contact-form h5 {
    font-size: 28px;
    font-weight: 600;
    color: #5c3d32;
    margin-bottom: 20px;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    flex: 1;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 16px;
    background-color: #fafafa;
    color: #5c3d32;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #5c3d32;
    outline: none;
}

.contact-form button {
    width: 100%;
    padding: 16px;
    background: #5c3d32;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #3e2723;
}

.contact-info {
    padding: 40px;
    border: 4px solid #C99E66;
    background-color: #3e2a20;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: left;
    color: #f8e8d0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    margin-top: 40px;
}

.contact-info h5 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #f8e8d0;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info ul li {
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.contact-info ul li i {
    margin-right: 12px;
    font-size: 1.5rem;
    color: #f8e8d0;
}

.contact-info ul li strong {
    margin-right: 10px;
    color: #f8e8d0;
}

.contact .row {
    display: flex;
    align-items: center;
}

form .button-area {
    margin: 25px 0;
    align-items: center;
}


.button-area span {
    font-size: 17px;
    margin-left: 0px;
    margin-top: 1.2rem;
    text-align: center;
    display: none;
}

/* ----- Responsive Design ----- */

@media (max-width: 1024px) {

    .contact-main-title {
        font-size: 2.8rem;
        padding: 0px 20px;
    }

    .contact-section-desc {
        font-size: 1.9rem;
        padding: 10px 20px;
    }
}

@media (max-width: 768px) {

    .contact-main-title {
        font-size: 2.2rem;
        padding: 0px 20px;
    }

    .contact-section-desc {
        font-size: 1.4rem;
        padding: 10px 20px;
    }

    .contact .row {
        flex-direction: column;
    }

    .contact .col-lg-6 {
        width: 100%;
    }

    .contact-info {
        margin-top: 60px;
    }

    .contact-form .form-row {
        flex-direction: column;
    }

    .contact-form .form-group {
        margin-bottom: 15px;
    }

    .contact-info ul li {
        font-size: 1rem;
    }

    form .button-area {
        text-align: center;
    }
}


/*--------------------------------------------------------------
# Footer Section
--------------------------------------------------------------*/

.funky-footer {
    background-color: #45250c;
    color: #fff3e3;
    padding: 40px 0px 0px 0px;
    font-family: 'Comic Sans MS', sans-serif;
    text-transform: uppercase;
    border-top: 5px solid #a67c52;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.funky-footer .footer-logo {
    margin-bottom: 20px;
}

.funky-footer .logo-image {
    width: 300px;
    height: auto;
    display: inline-block;
}

.funky-footer .footer-text {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: bold;
    animation: bounce 1.5s infinite alternate;
}

.funky-footer .footer-social-icons {
    font-size: 1.7rem;
    margin-bottom: 15px;
}

.funky-footer .footer-social-icons a {
    color: #fff;
    margin: 5px;
    padding: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #fff3e3;
    transition: transform 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}

.funky-footer .footer-social-icons a:hover {
    background-color: #a67c52;
    color: #fff;
    transform: scale(1.2);
}

.funky-footer .footer-links-container {
    background-color: #6f4934;
    padding: 10px 0;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.funky-footer .marquee {
    overflow: hidden;
    white-space: nowrap;
    display: block;
    width: 100%;
}

.funky-footer .marquee p {
    display: inline-block;
    animation: scroll 20s linear infinite;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: auto;
}

.funky-footer .footer-links a {
    color: #fff3e3;
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
    width: auto;
    max-width: 300px;
    box-sizing: border-box;
    margin: auto;
}

.funky-footer .footer-links a:hover {
    background-color: #a67c52;
    color: #fff3e3;
}

.funky-footer .footer-links a:nth-child(odd) {
    animation: shake 0.5s ease infinite alternate;
}

.funky-footer .footer-copyright {
    margin-top: 60px;
}

.funky-footer .footer-copyright .underline {
    border: 0;
    border-top: 2px solid #fff3e3;
    width: 80%;
    margin: 20px auto;
}

.funky-footer .footer-copyright .copyright-text {
    font-size: 1rem;
    color: #fff3e3;
    font-weight: 300;
    font-style: italic;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .funky-footer .footer-text {
        font-size: 1.5rem;
    }

    .funky-footer .footer-social-icons {
        font-size: 1.5rem;
    }

    .funky-footer .footer-social-icons a {
        padding: 4px;
        width: 60px;
        height: 60px;
        margin: 4px;
    }


    .funky-footer .footer-links a {
        font-size: 1rem;
    }

    .funky-footer .footer-copyright .copyright-text {
        font-size: 0.9rem;
    }
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-10px);
    }
}

.pt-cus {
    padding-top: 160px;
    padding-bottom: 100px;
    padding-left: 50px;
    padding-right: 50px;

}


@media screen and (max-width: 776px) {
    .pt-cus {
        padding-top: 120px;
        padding-bottom: 50px;
        padding-left: 15px;
        padding-right: 15px;
    }
}

.pt-cus h1,
.pt-cus h2,
.pt-cus h3,
.pt-cus h4,
.pt-cus h5,
.pt-cus p,
.pt-cus li,
.pt-cus a,
.pt-cus strong,
.pt-cus span {
    color: rgb(0, 0, 0);
}

.pt-cus p>a {
    color: red;
}