/* ===== Base ===== */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #fff;
  color: #3f2e28;
  overflow-x: hidden;
}

/* ===== Navbar ===== */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between; 
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 50px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  z-index: 1000;
}

@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Fredoka+One&display=swap');

.logo {
  font-family: 'Pacifico', cursive; /* fun, handwritten style */
  font-size: 32px;
  font-weight: 400;
  color: #4e342e;
  letter-spacing: 1px;
  cursor: pointer;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.2); /* optional, adds a nice shadow */
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05); /* fun hover effect */
  color: #db6f10da;
}


.nav-links-wrapper {
  display: flex;
  justify-content: center; 
  flex: 1; 
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0; 
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #4e342e;
  font-weight: 500;
  transition: color 0.3s, transform 0.2s;
}

.nav-links li a:hover {
  color: #f9d65c;
  transform: translateY(-2px);
}

.hamburger1 {
  display: flex; 
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  z-index: 10000; 
}

.hamburger1 span {
  display: block;
  height: 3px;
  width: 100%;
  background: #4e342e;
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger1.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger1.active span:nth-child(2) {
  opacity: 0;
}
.hamburger1.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease;
  z-index: 1000;
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff8f0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
    z-index: 9999; 
  }

  .nav-links.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 20px;
    font-weight: 600;
    color: #4e342e;
    text-decoration: none;
  }
}

@media (min-width: 901px) {
  .nav-links {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
    height: auto;
    background: none;
    flex-direction: row;
  }
}

body.menu-open {
  overflow: hidden; 
}


/* ===== Hero Section ===== */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 100px 60px 100px;
  overflow: hidden;
}

/* === Background === */
.hero-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(249, 214, 92, 0.35);
  z-index: 1;
}

.floating-object {
  position: absolute;
  top: 50%;                   
  right: 30%;                  
  transform: translate(50%, -50%);
  width: 750px;               
  z-index: 4;
  animation: float 5s ease-in-out infinite;
  pointer-events: none;
  opacity: 1;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.35)); 
}

/* Smooth floating motion */
@keyframes float {
  0%, 100% { transform: translate(50%, -50%) translateY(0); }
  50% { transform: translate(50%, -50%) translateY(-40px); }
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 238, 0, 0.774);
  z-index: 2;
  animation: blink 4s infinite alternate;
  box-shadow: 0 0 25px rgba(255, 255, 0, 0.781);
}

.c1 { 
  width: 150px; 
  height: 150px; 
  top: 25%; 
  left: 10%; 
}

.c2 { 
  width: 220px; 
  height: 220px; 
  bottom: 10%; 
  right: 10%; 
}

@keyframes blink {
  from { opacity: 0.5; transform: scale(1); }
  to { opacity: 1; transform: scale(1.2); }
}

.hero-right {
  position: relative;
  flex: 1;
  z-index: 3;
  color: #ffffff;
  text-align: left;
  max-width: 600px;
  animation: fadeInUp 1.2s ease;
}

.hero-right h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-right span {
  color: #4e342e;
  background-color: #ffc800;
  padding: 0 10px;
  border-radius: 10px;
}

.hero-right p {
  font-size: 20px;
  margin-bottom: 30px;
  color: #ffffff;
  line-height: 1.6;
}

.hero-right button {
  padding: 14px 36px;
  border: none;
  border-radius: 30px;
  background-color: #4e342e;
  color: #ffc800;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-right button:hover {
  transform: scale(1.05);
  background-color: #6d4c41;
}

/* === Animation for Text === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 80px 20px 15px 15px; /* top padding for navbar */
  }

  .hero-overlay {
    text-align: center;
    margin-bottom: 100px; /* push coffee further down */
  }

  .hero-overlay h1 {
    font-size: 8px; /* even smaller text */
    margin-top: 15px;
  }

  .hero-overlay p {
    font-size: 7px; /* even smaller text */
    margin-top: 8px;
  }

  #coffee1 {
    order: 1;
    margin-top: 80px; 
    width: auto; 
    max-width: 100%;
  }
}

@media (max-width: 500px) {
  .hero {
    padding: 70px 20px 20px 20px;
  }

  .hero-overlay h1 {
    font-size: 10px;
    margin-top: 15px;
  }

  .hero-overlay p {
    font-size: 8px; 
    margin-top: 6px;
  }

  #coffee1 {
    margin-top: 120px;
    width: auto;
    max-width: 100%;
  }
}
  

:root {
  --brown: #4e342e;
  --yellow: #f9d65c;
}


.our-menu {
  padding: 80px 50px;
  text-align: center;
  background-color: #5a3f20be;
}

.our-menu h2 {
  font-size: 36px;
  color: #f6f1ef;
  margin-bottom: 15px;
}

.our-menu p {
  font-size: 18px;
  color: #e1c7c1;
  margin-bottom: 50px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Menu Box */
.menu-box {
  background-color: #ceb69e; 
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  cursor: pointer;
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.6s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.menu-box.show {
  transform: translateY(0);
  opacity: 1;
}

.menu-box img {
  width: 100%;
  height: 250px; 
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

/* For larger screens, make it even taller */
@media (min-width: 1200px) {
  .menu-box img {
    height: 300px;
  }
}

@media (max-width: 600px) {
  .menu-box img {
    height: 200px;
  }
}


.menu-box h3 {
  font-size: 18px;
  font-weight: 600;
  color: #4e342e;
}

.menu-box:hover {
  background-color: #d7bfa0; 
  color: #fff;
}

.menu-box:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}
.menu-box p {
  font-size: 14px;
  color: #5b3e2b;
  text-align: center;
  margin-top: 10px;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 900px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}
.new-food {
  padding: 80px 40px;
  background-color: #fff8e0;
  text-align: center;
}

.new-food h2 {
  font-size: 36px;
  color: #4e342e;
  margin-bottom: 16px;
}

.new-food p {
  font-size: 18px;
  color: #4e342e;
  margin-bottom: 50px;
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px; 
}

/* Box styling */
.food-box {
  display: flex;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  overflow: hidden;
  align-items: center;
  transition: transform 0.3s ease;
  height: 160px; 
}

.food-box:hover {
  transform: scale(1.03);
}

.food-left {
  position: relative;
  flex: 0 0 160px; 
  height: 100%;
}

.food-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.food-icon {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #f9d65c;
  color: #4e342e;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 13px;
}

/* Right side text */
.food-right {
  flex: 1;
  padding: 12px 16px;
  text-align: left;
}

.food-right h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #4e342e;
}

.food-right p {
  font-size: 14px;
  color: #5b3e2b;
  line-height: 1.4;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .food-grid {
    grid-template-columns: 1fr; 
  }
  .food-box {
    flex-direction: column;
    height: auto; 
  }
  .food-left {
    flex: none;
    width: 100%;
    height: 200px;
  }
  .food-right {
    text-align: center;
    padding: 10px 0;
  }
}
.dessert-collection {
  padding: 80px 50px;
  background-color: #e6cfc7ac;
  text-align: center;
}

.dessert-collection h2 {
  font-size: 36px;
  color: #4e342e;
  margin-bottom: 16px;
}

.dessert-collection p {
  font-size: 18px;
  color: #4e342e;
  margin-bottom: 50px;
}

/* Grid layout 3x2 */
.dessert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.dessert-box {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  cursor: pointer;
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.4s ease;
}
.dessert-box.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s ease;
}

.dessert-img {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.dessert-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.dessert-box:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.heart-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #f9d65c;
  padding: 5px 8px;
  border-radius: 50%;
  font-size: 16px;
  display: none;
  pointer-events: none;
}

.dessert-box:hover .heart-icon {
  display: inline-block;
}

.dessert-info {
  padding: 15px 12px;
  text-align: left;
}

.dessert-info h3 {
  font-size: 18px;
  color: #4e342e;
  margin-bottom: 6px;
}

.dessert-info p {
  font-size: 14px;
  color: #5b3e2b;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 900px) {
  .dessert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .dessert-grid {
    grid-template-columns: 1fr;
  }
}
.view-all-btn {
  margin-top: 30px;
  padding: 12px 28px;
  background-color: var(--yellow);
  color: var(--brown);
  border: none;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  transform: scale(1.05);
  background-color: #f7e16a;
}

.special-drinks,
.refreshing-drinks {
  padding: 100px 50px;
  background-color: #3b2e2b; 
  text-align: center;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

.refreshing-drinks {
  background-color: #4b2e2a; 
}

.special-drinks h2,
.refreshing-drinks h2 {
  font-size: 42px;
  margin-bottom: 16px;
  color: #f9d65c;
  font-weight: 700;
}

.special-drinks p,
.refreshing-drinks p {
  font-size: 18px;
  margin-bottom: 60px;
  color: #f0e0c0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ===== Drink Slider ===== */
.drink-slider {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== Drink Boxes ===== */
.drink-grid {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.drink-box {
  position: relative;
  flex: 0 0 calc(33.333% - 20px); 
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.drink-box img {
  width: 100%;
  height: 350px; 
  object-fit: cover;
  display: block;
  border-radius: 20px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.drink-box:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.drink-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.35);
}

.drink-icon {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 32px;
  background: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: 50%;
  z-index: 2;
  transition: transform 0.3s ease;
}

.drink-box:hover .drink-icon {
  transform: translateX(-50%) scale(1.1);
}

.drink-box h3 {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 22px;
  text-shadow: 0 3px 8px rgba(0,0,0,0.7);
  z-index: 2;
  margin: 0;
}

/* ===== Navigation Arrows ===== */
.drink-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  background: rgba(0,0,0,0.35);
  border-radius: 50%;
  z-index: 5;
  transition: background 0.3s ease, transform 0.3s ease;
}

.drink-arrow.left { left: 10px; }
.drink-arrow.right { right: 10px; }

.drink-arrow:hover {
  background: rgba(0,0,0,0.7);
  transform: translateY(-50%) scale(1.15);
}

@media (max-width: 900px) {
  .drink-box { flex: 0 0 calc(50% - 15px); height: 300px; }
}

@media (max-width: 600px) {
  .drink-box { flex: 0 0 80%; margin: 0 auto; height: 280px; }
}
.why-choose-us {
  padding: 100px 50px;
  background: rgba(200, 180, 160, 0.3);
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  color: #3b2e28;
  border-radius: 20px;
}

.why-choose-us h2 {
  font-size: 42px;
  margin-bottom: 16px;
  font-weight: 700;
  color: #4e342e;
}
.why-choose-us p {
  font-size: 18px;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}
.feature-box {
  background: #4e342e; 
  color: #f9d65c;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.feature-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 100px;
  text-align: center;
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-icon {
  font-size: 36px; 
  color: #f9d65c;
  margin-bottom: 10px;
}

.stat-box h3 {
  font-size: 32px; 
  color: #4e342e;
  margin-bottom: 6px;
  font-weight: 700;
}

.stat-box p {
  font-size: 16px;
  color: #6b4a3a; 
  margin: 0;
}


.reviews-slider {
  position: relative;
  overflow: hidden;
  max-width: 700px; 
  margin: 0 auto;
  padding: 30px 20px; 
  border-radius: 25px;
  background: #fff8f0;
  box-shadow: 0 15px 30px rgba(0,0,0,0.25); 
  min-height: 180px; 
}

.review-box {
  font-size: 18px; 
  color: #3b2e28;
  white-space: normal;
  position: absolute;
  width: 100%;
  top: 0;
  left: 100%;
  opacity: 0;
  transition: all 1s ease;
  line-height: 1.6;
}

.review-box.active {
  left: 0;
  opacity: 1;
}

.review-box .stars {
  color: #f9d65c;
  font-size: 22px; 
  display: block;
  margin-bottom: 15px; 
}
/* ===== Mobile Responsiveness ===== */
@media (max-width: 900px) {
  .why-choose-us {
    padding: 60px 20px;
  }

  .why-choose-us h2 {
    font-size: 32px;
  }

  .why-choose-us p {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-box {
    padding: 20px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 60px;
  }

  .stat-box h3 {
    font-size: 24px;
  }

  .stat-box p {
    font-size: 14px;
  }

  .reviews-slider {
    max-width: 100%;
    padding: 20px 15px;
    min-height: 200px;
  }

  .review-box {
    font-size: 16px;
  }

  .review-box .stars {
    font-size: 20px;
  }
}

@media (max-width: 500px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .why-choose-us h2 {
    font-size: 26px;
  }

  .why-choose-us p {
    font-size: 14px;
  }

  .feature-icon {
    font-size: 32px;
  }

  .review-box {
    font-size: 14px;
  }

  .review-box .stars {
    font-size: 18px;
  }
}
/* ===== Contact Section ===== */
/* ===== Contact Section ===== */
.contact-section {
  background-color: #f8f4ef;
  padding: 80px 20px;
  text-align: center;
  color: #4e342e;
}

.contact-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-subtext {
  font-size: 16px;
  color: #6d4c41;
  margin-bottom: 40px;
}

/* Container Flex */
.contact-container {
  display: flex;
  justify-content: center;      /* center horizontally */
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;            /* limit total width */
  margin: 0 auto;               /* center container */
}

/* Contact Info */
.contact-info {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.contact-info h3 {
  color: #4e342e;
  margin-bottom: 15px;
  font-size: 22px;
}

.info-box h4 {
  color: #d17b0f;
  margin-bottom: 5px;
  font-size: 15px;
}

.info-box p {
  font-size: 14px;
}

/* Contact Form */
.contact-form {
  flex: 1;
  min-width: 300px;
  max-width: 550px;            /* bigger form on desktop */
  text-align: left;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  resize: none;
}

.send-btn {
  background-color: #db6f10;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.3s;
}

.send-btn:hover {
  background-color: #c45f0b;
}

/* Map */
.contact-map {
  flex: 1.3;                 /* slightly bigger than form */
  min-width: 350px;
  max-width: 650px;           /* bigger map on desktop */
  height: 550px;              /* bigger desktop height */
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
/* ===== Mobile Responsive ===== */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column; /* map above, form below */
    align-items: center;
    gap: 20px;
  }

  .contact-map,
  .contact-form,
  .contact-info {
    width: 100%;
    max-width: 400px;
    text-align: center;
  }

   .contact-map {
    max-width: 400px;
    height: 250px; /* mobile/tablet */
  }
}

  .contact-form {
    padding: 15px;
  }

  .contact-form input,
  .contact-form textarea,
  .send-btn {
    width: 100%;
  }

  .contact-section h2 {
    font-size: 24px;
  }

  .contact-subtext {
    font-size: 13px;
    margin-bottom: 20px;
  }


@media (max-width: 500px) {
    .contact-map {
    height: 150px; /* very small phones */
  }
}

  .contact-form {
    padding: 12px;
  }

  .send-btn {
    padding: 6px;
    font-size: 13px;
  }

  .info-box h4 {
    font-size: 13px;
  }

  .info-box p {
    font-size: 12px;
  }



/* ===== Footer ===== */
.footer {
  background-color: #3f2e28; 
  color: #fff8f0;
  padding: 60px 50px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
}

.footer-about,
.footer-links,
.footer-subscribe {
  flex: 1;
  min-width: 250px;
}

.footer-about h3 {
  color: #f9d65c;
  margin-bottom: 15px;
}

.footer-links h4,
.footer-subscribe h4 {
  color: #f9d65c;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column; 
  gap: 10px; 
}

.footer-links ul li a {
  color: #fff8f0;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 15px;
}

.footer-links ul li a:hover {
  color: #f9d65c;
}


.footer-subscribe input {
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  border: none;
  border-radius: 5px;
  outline: none;
}

.footer-subscribe button {
  background-color: #db6f10;
  color: white;
  padding: 10px 20px;
  border: none;
  margin-top: 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.footer-subscribe button:hover {
  background-color: #c45f0b;
}

.social-links {
  margin-top: 15px;
}

.social-links a img {
  width: 25px;
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.social-links a img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  font-size: 14px;
}

.footer-bottom a {
  color: #f9d65c;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}
@media (max-width: 600px) {
  .footer-links ul {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}
/* ===== Fine Day Box ===== */
/* ===== Fine Day Wrapper ===== */
.fine-day-wrapper {
  position: fixed;
  inset: 0; /* top:0; left:0; right:0; bottom:0 */
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.25);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.fine-day-wrapper.show {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* Box itself */
.fine-day-box {
  background: #f9d65c;
  color: #4e342e;
  padding: 40px 50px;
  border-radius: 25px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  text-align: center;
  max-width: 400px;
  width: 90%;
}

.fine-day-box h2 {
  font-size: 28px;
  margin-bottom: 25px;
}

.fine-day-box button {
  background: #4e342e;
  color: #f9d65c;
  border: none;
  padding: 14px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 20px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.fine-day-box button:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .fine-day-box {
    padding: 25px 20px;
  }
  .fine-day-box h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .fine-day-box button {
    width: 100%;
    font-size: 16px;
    padding: 12px 0;
  }
}
