/* ===== GLOBAL TYPOGRAPHY SYSTEM ===== */

/* Paragraphs, links, buttons, UI text */
body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: inherit;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
}

/* Buttons & CTAs */
button,
input[type="button"],
input[type="submit"],
a.btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
}


/* ===================checkout===================== */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  transition: background 0.3s, color 0.3s;
}

.checkout-container, .admin-container {
  max-width: 800px;
  margin: auto;
  padding: 20px;
  border-radius: 8px;
  background: #f5f5f5;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.cart-table th, .cart-table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}

.total {
  font-size: 1.5rem;
  text-align: right;
  margin-bottom: 20px;
}

.checkout-btn {
  padding: 10px 20px;
  background: #ff6f00;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.checkout-btn:hover {
  background: #e65c00;
}

/* Dark Mode */
body.dark-mode {
  background: #121212;
  color: #f0f0f0;
}

body.dark-mode .checkout-container, 
body.dark-mode .admin-container {
  background: #1e1e1e;
}

body.dark-mode .checkout-btn {
  background: #ffa500;
  color: #121212;
}

body.dark-mode .checkout-btn:hover {
  background: #ffb733;
}



/* ================== */

/* ===============home2================= */

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.hero-wrapper {
    position: relative;
    width: 100%;
    overflow: visible;
    display: flex;
    flex-direction: column;
}

/* Background Video Styling */
.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(50%); /* Darkens video for text readability */
}

/* Navbar Styling */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.95);
    margin: 20px 5%;
    border-radius: 12px;
    z-index: 10;
}

.logo-img{
  width:150px;
  align-items: center;
}


.logo { font-size: 24px; font-weight: 800; color: #333; }
.logo span { color: #b08d57; }

.menu { list-style: none; display: flex; gap: 25px; }
.menu li a { 
    text-decoration: none; 
    color: #333; 
    font-family: 'Poppins', sans-serif;
  font-weight: 600;
    font-size: 13px; 
    letter-spacing: 0.5px;
}

.nav-right { display: flex; align-items: center; gap: 20px; }
.icon-btn { background: none; border: none; cursor: pointer; font-size: 18px; }

.signup-btn {
    background: #b08d57;
    color: white;
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}


/* =============banner================== */

/* Container for the Banner */
.banner-section {
    width: 100%;
    height: 80vh; /* Adjust height as needed */
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
}

/* Video Background */
.banner-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.55); /* Darkens video so text pops */
}

/* Content Layout */
.banner-overlay {
    display: flex;
    align-items: center;
    padding-left: 8%;
    width: 100%;
}

/* The Vertical Label on the left side */
.banner-vertical-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 11px;
    letter-spacing: 3px;
    padding-bottom: 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    margin-right: 40px;
    font-weight: 600;
}

/* Typography Styles */
.banner-subtitle {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.banner-title {
    font-family: 'Playfair Display', 'Georgia', serif; /* Serif font for the "Wholesale" look */
    font-size: 4.5rem;
    font-style: italic;
    font-weight: 400;
    margin: 0;
}

.banner-hr {
    width: 45px;
    height: 1px;
    background-color: #ffffff;
    margin: 25px 0;
}

.banner-description {
    font-size: 1.1rem;
    margin-bottom: 35px;
    font-weight: 300;
}

/* Button Style */
.banner-btn {
    display: inline-block;
    padding: 14px 35px;
    border: 1px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.banner-btn:hover {
    background-color: #ffffff;
    color: #000000;
}


/* ================icons====================== */

.coffee-features {
  padding: 100px 5%;
  background-color: #000;
  font-family: 'Georgia', serif; /* Matching the elegant serif headers */
}

.features-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards; /* Entrance animation */
}

/* Staggered entrance for cards */
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.4s; }

.icon-box {
  background-color: #f9f4ef; /* Light beige icon background from image */
  min-width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.4s ease;
}

.icon-box i {
  color: #c59d5f; /* Theme gold icon color */
  font-size: 2rem;
}

/* Feature Text Styling */
.feature-text h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #000;
  font-weight: 500;
}

.feature-text p {
  color: #FFF;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
  font-family: 'Arial', sans-serif;
}

.learn-more {
  color: #c59d5f;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.8rem;
  letter-spacing: 1px;
  font-family: 'Arial', sans-serif;
  transition: 0.3s;
}

/* Hover Animation Effects */
.feature-card:hover .icon-box {
  background-color: #c59d5f;
  transform: scale(1.1) rotate(5deg);
}

.feature-card:hover .icon-box i {
  color: #ffffff;
}

.learn-more:hover {
  letter-spacing: 2px;
  color: #000;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .features-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
/* =================================== */

/* ====================imges3 sec========================= */

.about-coffee-section {
    background-color: #fcfaf7; /* Off-white/beige background */
    padding: 100px 5%;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Image container with specific rounding from screenshot */
.about-image-wrapper {
    flex: 1;
}

.about-img {
    width: 100%;
    border-radius: 15px; /* Smooth rounded corners as seen in image */
    display: block;
}

/* Text Content Area */
.about-content {
    flex: 1;
}

.about-content h2 {
    font-family: 'Georgia', serif;
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 25px;
}

.about-content p {
    color: #777;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* Checklist Grid */
.feature-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    list-style: none;
    padding: 0;
}

.feature-checklist li {
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-checklist i {
    color: #c59d5f; /* Theme gold accent color */
    background: #f9f4ef;
    padding: 8px;
    border-radius: 50%;
    font-size: 0.7rem;
}

/* Entrance Animations */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideIn 1s forwards;
}

.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.reveal-up-delay-1 { animation: fadeInUp 0.8s forwards 0.3s; opacity: 0; }
.reveal-up-delay-2 { animation: fadeInUp 0.8s forwards 0.5s; opacity: 0; }
.reveal-up-delay-3 { animation: fadeInUp 0.8s forwards 0.7s; opacity: 0; }

@keyframes slideIn {
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Layout */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    .feature-checklist {
        justify-items: center;
        grid-template-columns: 1fr;
    }
}

/* =======================image and text================= */

:root {
    --brand-gold: #b08d57;
    --bg-cream: #fdfaf7;
    --text-main: #1a1a1a;
    --text-muted: #666;
}

.about-us-section {
    position: relative;
    padding: 100px 10%;
    background-color: #EAE7DE;
    overflow: hidden;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
    z-index: 2;
    position: relative;
}

/* Image Styling */
.about-image-wrapper {
    flex: 1;
}

.about-image-wrapper img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.02);
}

/* Content Styling */
.about-content {
    flex: 1;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-content p {
    color: #000;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Features Checklist */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.feature-item {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.check-icon {
    color: var(--brand-gold);
    background: #f4ece1;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
}

.feature-item:hover {
    color: var(--brand-gold);
}

/* Decorative Circles */
.decor-circle {
    position: absolute;
    border: 1px solid #e8dcc4;
    border-radius: 50%;
    z-index: 1;
}

.circle-left { width: 400px; height: 400px; left: -100px; top: -50px; }
.circle-right { width: 500px; height: 500px; right: -150px; bottom: -100px; }

/* --- ANIMATION EFFECTS --- */

/* Text entrance */
.animate-text {
    opacity: 0;
    transform: translateX(30px);
    animation: slideIn 1s ease forwards;
}

.reveal-image {
    opacity: 0;
    transform: scale(0.9);
    animation: zoomIn 1.2s ease forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

@keyframes slideIn {
    to { opacity: 1; transform: translateX(0); }
}

@keyframes zoomIn {
    to { opacity: 1; transform: scale(1); }
}

/* Responsive */
@media (max-width: 992px) {
    .about-container { flex-direction: column; text-align: center; }
    .features-grid { justify-content: center; }
    .feature-item { justify-content: center; }
}


/* =====================cards========================================= */

:root {
    --coffee-gold: #b08d57;
    --text-dark: #2c2c2c;
    --bg-light: #ffffff;
}

.featured-section {
    padding: 80px 5%;
    text-align: center;
    background-color: #EAE7DE
}

/* Header Styling */
.section-header .eyebrow {
    color: var(--coffee-gold);
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 600;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #000;
}

.header-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0 50px;
}

.header-divider .line {
    width: 60px;
    height: 1px;
    background: #ddd;
}

.header-divider i {
    color: var(--coffee-gold);
    font-size: 20px;
}

/* Product Grid */
.product-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.product-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

/* Entrance Animations Delay */
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.4s; }

/* Image and Hover Overlay */
.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: #f9f9f9;
}

.image-container img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.hover-overlay {
    position: absolute;
    bottom: -60px; /* Hidden below image */
    left: 0;
    width: 100%;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: all 0.4s ease-in-out;
}

/* Hover Interactions */
.product-card:hover .hover-overlay {
    bottom: 0; /* Slides up on hover */
}

.product-card:hover img {
    transform: scale(1.1);
}

.hover-overlay button {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-dark);
    cursor: pointer;
    transition: color 0.3s;
}

.hover-overlay button:hover {
    color: var(--coffee-gold);
}

/* Info Text */
.product-info h3 {
    margin-top: 20px;
    font-size: 20px;
    font-family: 'Playfair Display', serif;
}

.product-info .price {
    color: #000;
    font-weight: bold;
    margin-top: 5px;
}

/* Keyframes */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ======================= */

/* ===================We offer====================== */

:root {
    --brand-gold: #b08d57;
    --text-main: #222;
    --text-light: #777;
    --bg-cream: #fdfaf7;
}

.coffee-blends-section {
    padding: 100px 10%;
    background-color: #000;
    overflow: hidden;
}

.blends-header {
    text-align: center;
    margin-bottom: 60px;
}

.blends-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    line-height: 1.2;
    color:#FFF ;
}

.header-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.header-divider .line { width: 50px; height: 1px; background: #ccc; }
.header-divider i { color: var(--brand-gold); }

/* Layout Grid */
.blends-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.blends-text, .blends-image { flex: 1; }

.blends-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #FFF;
}

.blends-text p {
    color: #fff;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Progress Bar Animations */
.skill-group { margin-bottom: 25px; }

.skill-label {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
    text-transform: uppercase;
    color: #FFF;
}

.progress-bar {
    height: 4px;
    background: #e0e0e0;
    width: 100%;
}

.progress-fill {
    height: 100%;
    background: var(--brand-gold);
    width: 0; /* Starts at 0 for animation */
    animation: fillProgress 2s cubic-bezier(0.1, 0.5, 0.5, 1) forwards;
}

@keyframes fillProgress {
    from { width: 0; }
    to { width: var(--final-width); } /* Controlled by inline style */
}

/* Image Hover Effects */
.image-wrapper {
    position: relative;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.image-wrapper img {
    width: 100%;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.1));
}

.img-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    display: flex;
    gap: 15px;
    transition: all 0.4s ease;
}

.img-overlay i {
    background: white;
    color: var(--brand-gold);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.image-wrapper:hover { transform: translateY(-10px); }
.image-wrapper:hover .img-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Button */
.btn-learn {
    display: inline-block;
    background: var(--brand-gold);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 20px;
    transition: 0.3s;
}

.btn-learn:hover { background: #8e7145; }

/* ====================carousal==================== */

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #fff;
}

.products {
  position: relative;
  padding: 100px 40px;
  text-align: center;
 

  /* Background image */
background: url("../img/BG-5.png");
background-size: contain;
background-position: center;
background-repeat: no-repeat;
width: 100%;

}



.products h2 {
  font-size: 36px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-inline: auto;
}

/* Tabs */
.tabs {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

.tab {
  background: none;
  border: none;
  font-weight: 600;
  cursor: pointer;
  color: #777;
  position: relative;
}

.tab.active {
  color: #c98c52;
}

.tab.active::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #c98c52;
  left: 0;
  bottom: -8px;
}

/* Carousel */
.carousel {
  overflow: hidden;
  max-width: 1200px;
  margin: auto;
}

.carousel-track {
  display: flex;
  gap: 50px;
  animation: scroll 20s linear infinite;
}

.product {
  min-width: 260px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.6s ease forwards;
}

.product img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
}

.product h4 {
  margin: 15px 0 5px;
}

.price {
  font-weight: 600;
  margin-bottom: 10px;
}

.product a {
  text-decoration: none;
  color: #c98c52;
  font-size: 13px;
  font-weight: 600;
}

/* Animations */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Stop auto scroll on hover */
.carousel:hover .carousel-track {
  animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-track {
    animation: none;
  }
}

/* ============proper final header============ */

.menu {
  list-style: none;
  display: flex;
  gap: 25px;
}

/* Dropdown parent */
.menu li {
  position: relative;
}

/* Dropdown box */
.dropdown {
  position: absolute;
  top: 130%;
   list-style: none;
  left: 0;
  background: #12110F;
  min-width: 180px;
  border-radius: 8px;
  opacity: 0;
  visibility: visible;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  z-index: 999;
}

/* Dropdown links */
.dropdown li a {
  display: block;
  padding: 12px 18px;
  color: #EDE3D9;
  font-size: 14px;
  text-decoration: none;
}

.dropdown li a:hover {
  background: #C89B63;
  color: #1C1A17;
}

/* Show dropdown on hover */
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}


/* ===============underline menu============== */

.menu > li > a {
  position: relative;
}

.menu > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #C89B63;
  transition: width 0.3s ease;
}

.menu > li > a:hover::after {
  width: 100%;
}

/* =============dashboard=============== */

.dashboard-btn {
  background-color: #C89B63;
  color: #FFF;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.dashboard-btn:hover {
  background-color: #B8894F;
  transform: translateY(-2px);
  color: #000;
}


/* ==========================home 1 new1=============== */

/* Remove default body margins */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevents horizontal scroll from animations */
}      
.booking-section {
  background-color: #000; /* Theme beige */
  padding: 80px 5%;
  text-align: center;
 
  font-family: 'Segoe UI', sans-serif;
}

.booking-header h2 {
  font-size: 1.8rem;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.header-line {
  width: 50px;
  height: 2px;
  background: #c59d5f; /* Theme gold */
  margin: 0 auto 40px;
}

/* Inline Bar Logic */
.reservation-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap; /* Wraps on mobile */
}

.input-item {
  background: #fff;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  border: 1px solid #dcd8cf;
  transition: all 0.3s ease;
  min-width: 160px;
}

.input-item:hover {
  transform: translateY(-3px); /* Animation on hover */
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.input-item input {
  border: none;
  outline: none;
  font-size: 0.9rem;
  width: 100%;
  color: #555;
  background: transparent;
}

.input-item i {
  color: #c59d5f; /* Gold Icons */
  margin-left: 10px;
  font-size: 0.9rem;
}

.divider-text {
  font-weight: bold;
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: #333;
}

.book-btn {
  background: #c59d5f;
  color: #fff;
  border: none;
  padding: 15px 35px;
  font-weight: bold;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s;
}

.book-btn:hover {
  background: #a6834d;
}

/* Animation for the whole bar on scroll */
.reservation-inline {
  animation: slideInUp 1s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  
    margin-top: 60px;
    text-align: left;
}

.feature-img {
    overflow: hidden;
    margin-bottom: 20px;
}

.feature-img img {
    width: 100%;
    transition: transform 0.8s ease;
}

.feature-card:hover .feature-img img {
    transform: scale(1.1); /* Zoom effect on hover */
}

.feature-info .number {
    font-size: 3rem;
    color: #c59d5f;
    font-family: serif;
    font-style: italic;
    margin-right: 10px;
}

.feature-info h3 {
    display: inline-block;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.feature-info p {
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 15px 0;
}

.read-more {
    color: #c59d5f;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================= */

/* ===============footer=================== */

.main-footer {
   background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/footer-img.jpeg');
   
    color: #fff;
    padding: 80px 0 0 0;
    font-family: 'Segoe UI', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 0 20px 60px 20px;
}

.footer-col h3 {
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-weight: bold;
}

/* Opening Hours List */
.hours-list { list-style: none; padding: 0; }
.hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: #888;
}
.hours-list li .closed { color: #c59d5f; }

/* Posts & Links */
.footer-post { margin-bottom: 20px; }
.footer-post a {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 5px;
}
.post-date { color: #c59d5f; font-size: 0.75rem; }

.contact-link { color: #c59d5f; margin-bottom: 10px; }

/* Newsletter Input */
.footer-newsletter {
    display: flex;
    border: 1px solid rgba(255,255,255,0.2);
    margin-top: 15px;
}
.footer-newsletter input {
    background: transparent;
    border: none;
    padding: 12px;
    color: #fff;
    width: 100%;
}
.footer-newsletter button {
    background: #c59d5f;
    border: none;
    color: #fff;
    padding: 0 15px;
    cursor: pointer;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    background: #000;
    padding: 20px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #666;
}

.social-icons a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-size: 1rem;
    transition: 0.3s;
}

.social-icons a:hover { color: #c59d5f; }





















/* ========dropdownb dashboard============ */

.dashboard-menu {
  position: relative;
  display: inline-block;
}

.dashboard-btn {
  background: #d4a373;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
    font-size: 13px;
  cursor: pointer;
}

.dashboard-dropdown {
  position: absolute;
  top: 110%;
  right: 0;
  background: #fff;
  min-width: 160px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  display: none;
  overflow: hidden;
}

.dashboard-dropdown a {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.dashboard-dropdown a:hover {
  background: #d4a373;
}

/* SHOW DROPDOWN */
.dashboard-menu:hover .dashboard-dropdown {
  display: block;
}
