/* Main Stylesheet for SweetHive */
:root {
  --primary-color: #e68a00;
  --primary-dark: #cc7a00;
  --secondary-color: #5c3d00;
  --light-bg: #fff7e6;
  --text-color: #5a442a;
  --footer-bg: #5c3d00;
  --footer-text: #fff7c1;
  --footer-link: #ffcc29;
}

/* Base Styles */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 56px;
  background-color: #fffbee;
}

/* Typography */
h1, h2, h3, h4, h5 {
  color: var(--secondary-color);
  font-weight: 700;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.font-dancing {
  font-family: 'Dancing Script', cursive;
}

/* Layout */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* Navbar */
.navbar {
  background: #ffcc29 !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;
  padding: 0.5rem 1rem;
}

.navbar-brand {
  font-family: 'Dancing Script', cursive;
  font-size: 1.9rem !important;
  color: var(--secondary-color) !important;
  font-weight: bold;
}

.nav-link {
  color: var(--secondary-color) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
}

.nav-link:hover {
  color: #a06400 !important;
}

.navbar-toggler {
  border-color: rgba(92, 61, 0, 0.1);
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  box-shadow: 0 4px 8px rgba(198, 142, 0, 0.3);
}

/* Cards */
.card {
  border-radius: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(198, 142, 0, 0.1);
  background-color: var(--light-bg);
  border: none;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(198, 142, 0, 0.2);
}

.card-img-top {
  height: 320px;
  object-fit: cover;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

/* Footer */
footer {
  background: var(--footer-bg) !important;
  color: var(--footer-text) !important;
  padding: 40px 0 !important;
  text-align: center !important;
  margin-top: auto;
}

footer a {
  color: var(--footer-link) !important;
  text-decoration: none !important;
}

footer a:hover {
  text-decoration: underline !important;
  color: #ffd95c !important;
}

/* Utility Classes */
.section-title {
  font-family: 'Dancing Script', cursive;
  font-size: 2.5rem;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 2rem;
}

.text-center {
  text-align: center;
}

/* Scroll to Top */
#scrollToTop {
  display: none;
  position: fixed;
  bottom: 100px;
  right: 25px;
  z-index: 1050;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  padding: 12px 15px;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(0,0,0,0.3);
  transition: background-color 0.3s ease;
}

#scrollToTop:hover {
  background-color: var(--primary-dark);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1050;
}

.whatsapp-float img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.display-4 {
  margin-top: 2rem;
}


/* Minimal outline style */
.carousel-control-prev,
.carousel-control-next {
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: var(--primary-color);
  opacity: 1;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e68a00'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e68a00'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  filter: brightness(0) invert(1);
}

.curved-image {
  border-radius: 20px; /* Adjust this value as needed */
  overflow: hidden; /* Ensures the image respects the border radius */
}





/* Hero Section with Background Image */
.hero {
  position: relative;
  min-height: 80vh; /* Adjust height as needed */
  overflow: hidden;
  /* margin-top: 56px; */
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/backgrow.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Make sure content stays above background */
.hero .container {
  position: relative;
  z-index: 1;
}

/* Optional overlay to improve text readability */
.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Dark overlay with 30% opacity */
}





.page-header {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden; /* prevent blur overflow */
  color: white;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/back1.png') no-repeat center top;
  background-size: contain;
  filter: blur(3px); /* slight blur */
  z-index: 0;
}

.page-header .container {
  position: relative;
  z-index: 1; /* keep text sharp above blur */
}

