/* ---------- GLOBAL ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

header.top-header {
    width: 100%;
    padding: 18px 7%;
    background-color:#C4A484;/* Light coffee latte */

    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid none;
}

/* ---------- LOGO ---------- */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
   
}

.logo img {
    width: 125px;
    height: 125px;
    
}

.logo h1 {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 700;
    text-shadow: 5px 5px 5px black;
}

/* ---------- NAVBAR ---------- */
.navbar ul {
    display: flex;
    list-style: none;
    gap: 28px;
}

.navbar a {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 400;
    transition: 0.2s;
    text-shadow: 5px 5px 5px black;
}

.navbar a:hover {
    color: #2a1803;
}

.who-we-are {
  scroll-margin-top: 80px; /* adjust to your navbar height */
}

/* ---------- DROPDOWN ---------- */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none !important;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 32px;
    left: 0;
    background: #111;
    padding: 10px 0;
    border-radius: 4px;
    min-width: 150px;
    transition: 0.2s ease;
}


.dropdown-menu li {
    padding: 8px 15px;
}

.dropdown-menu li a {
    color: #fff;
}

/* NEW — dropdown opens only when JS adds the 'open' class */
..dropdown.open .dropdown-menu {
    display: block !important;
    opacity: 1;
    visibility: visible;
}



/* ---------- CONTACT BOX ---------- */
.contact-box {
    display: flex;
    align-items: center;
    background: #10B981;
    padding: 10px 16px;
    border-radius: 6px;
    gap: 10px;
    color: #fff;
    text-shadow: 5px 5px 5px black;
}

.small-text {
    font-size: 1.2rem;
    opacity: 0.9;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 600;
}

/* ---------- HAMBURGER (MOBILE) ---------- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
}

/* ---------- MOBILE RESPONSIVE ---------- */
@media (max-width: 900px) {
    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #000;
        padding: 20px 0;
        display: none;
        flex-direction: column;
    }

    .navbar ul {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .hamburger {
        display: flex;
    }

    .contact-box {
        display: none;
    }
}

/* ---------- HERO SECTION ---------- */
.hero {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 7%;
    background: #000;
    position: relative;
    overflow: hidden;
    margin-top: 100px;

    background-image: url('image101.gif');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* Background image on the right */
.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    
    background-size: cover;
    background-position: center;
    filter: brightness(0.75);
}

/* Content on the left */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
    color: #fff;
    
    
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    color: #d3ad7f;
    margin-bottom: 10px;
        text-shadow: 5px 5px 5px black;
}

.hero-title {
    font-size: 4.2rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: capitalize;
        text-shadow: 5px 5px 5px #C4A484;
}

.hero-text {
    font-size: 1.6rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 30px;
    text-shadow: 5px 5px 5px #C4A484;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 12px 28px;
    font-size: 1.6rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s ease;
}

.btn.primary {
    background: #d3ad7f;
    color: #000;
    
}

.btn.primary:hover {
    background: #b8926c;
}

.btn.outline {
    border: 2px solid #fff;
    color: #fff;
        text-shadow: 5px 5px 5px black;
}

.btn.outline:hover {
    background: #fff;
    color: #000;
   
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 120px;
    }

    .hero-image {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0.25;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }
}

/* ---------- WHO WE ARE SECTION ---------- */
.who-we-are {
    width: 100%;
    padding: 100px 7%;
   background-color:#C4A484;/* Light coffee latte */
}

.wwa-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 25px;
    gap: 60px;
}

/* LEFT SIDE */
.wwa-left {
    flex: 1;
}

.wwa-subtitle {
    
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.wwa-title {
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: white;
    text-shadow: 5px 5px 5px black;
}

.wwa-text {
    font-size: 1.6rem;
    line-height: 1.7;
    color:white;
    text-shadow: 5px 5px 5px black;
   
}

/* RIGHT SIDE */
.wwa-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    color:white;
    text-shadow: 5px 5px 5px black;
}

.wwa-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.wwa-icon {
    width: 55px;
    height: 55px;
    text-shadow: 5px 5px 5px black;
    color: #555
    font-size: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    
  
}



.wwa-item h4 {
    font-size: 1.8rem;
    margin-bottom: 6px;
}

.wwa-item p {
    font-size: 1.5rem;
    color: white;

}

.wwa-icon {
  color: #10B981;

  font-size: 1.5rem;
  font-weight: bold;
}

.marsh-img {
    width: 500px;
    height: 500px;
  display: block;
  margin: 0 auto;
  border-radius: 50%;
  
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
    .wwa-container {
        flex-direction: column;
        gap: 40px;
    }

    .wwa-title {
        font-size: 2.8rem;
    }
}
/* ---------- SPECIAL COFFEE BEANS SECTION ---------- */
.special-beans {
    width: 100%;
    padding: 100px 7%;
    background: #0f0f0f;
    color: #fff;
    text-align: center;
    background-image: url('image106.png');
    background-size: cover;
    background-position: center;
    text-shadow: 5px 5px 5px black;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.beans-subtitle {
    color: #10B981;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
        text-shadow: 5px 5px 5px black;
  
}

.beans-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 50px;
        text-shadow: 5px 5px 5px black;
}

/* ---------- GRID ---------- */
.beans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* ---------- CARD ---------- */
.bean-card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    transition: 0.3s ease;
}

.bean-card:hover {
    transform: translateY(-6px);
}

.bean-img {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;   /* THIS centers the image */
    background-repeat: no-repeat;
    border-radius: 6px;
    margin-bottom: 15px;
}


.bean-card h4 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.bean-card p {
    font-size: 1.5rem;
    color: #ccc;
    margin-bottom: 20px;
    text-shadow: 5px 5px 5px black;
}

.bean-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #10B981;
    color: #fff;
    border-radius: 4px;
    font-size: 1.4rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s ease;
    text-shadow: 5px 5px 5px black;
}

.bean-btn:hover {
    background: #0e9a6c;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
    .beans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .beans-grid {
        grid-template-columns: 1fr;
    }
}
/* ---------- SPECIAL MENU SECTION ---------- */
.special-menu {
    width: 100%;
    padding: 100px 7%;
    background-color:#C4A484;/* Light coffee latte */
    
    color: black;
}

.menu-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* ---------- LEFT SIDE FEATURED ITEM ---------- */
.menu-left {
    flex: 1;
    text-align: center;
}

.menu-subtitle {text-align: center;}
.menu-img {
    width: 100%;
    height: 350px;
    background-image: url('your-image.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 20px;
}

.menu-feature-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.menu-feature-desc {
    font-size: 1.5rem;
    opacity: 0.8;
    margin-bottom: 10px;
}

.menu-feature-price {
    font-size: 2rem;
    font-weight: 700;
    color:black
   
}

/* ---------- RIGHT SIDE MENU LIST ---------- */
.menu-right {
    width: 100%;
}

.menu-section {
    margin: 40px 0 10px;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid #e5e5e5;
}

.menu-text h4 {
    margin: 0;
    font-size: 1.1rem;
}

.menu-text p {
    margin: 4px 0 0;
    opacity: 0.8;
}

.price {
    font-weight: 700;
    white-space: nowrap;
    margin-left: 20px;
}

.menu-description {
    margin: 10px 0 30px;
    opacity: 0.85;
    line-height: 1.5;
}

.menu-description,
.menu-text h4,
.menu-text p {
    text-align: left;
}

.menu-section {
    margin: 40px 0 10px;
}

.menu-description {
    margin: 0 0 30px;
    opacity: 0.85;
    line-height: 1.5;
}
#menu-subtitle {
    scroll-margin-top: 175px; /* adjust based on your header height */
}


/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
    .menu-container {
        flex-direction: column;
    }

    .menu-img {
        height: 280px;
    }
}