body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right top, #fdfbfb, #ebedee);
    overflow-x: hidden;
}

/* Navbar background color and height adjustments */

:root {
  --maroon: #800000;
  --maroon-dark: #6c0000;
  --hover-light: #d7ccc8;
}


@media (max-width: 768px) {
  .nav-home a {
    font-size: 18px;
    margin: 10px;
  }
}

.navbar {
  position: relative; /* Sticks to the top */
  top: 0;
  left: 0;
  width: 100vw; /* Full width */
  height: 70px;
  z-index: 1000; /* Stays on top of other content */
  background: rgba(128, 0, 0, 0.9); /* Semi-transparent maroon */
  backdrop-filter: blur(10px); /* Glass effect */
  padding: 10px 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo styling: visible, well-sized */
.navbar-brand img {
  max-height: 80px;
  width: auto;
  object-fit: cover;
  margin-right: 10px;
}


/* Center all nav items (except user) */
.navbar-nav {
  margin: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

/* Nav link styling */
.navbar-nav .nav-link {
  color: white !important;
  font-size: 16px;
  font-weight: 600;
  padding: 6px 12px;
  transition: all 0.3s ease-in-out;
}

/* Hover effect on links */
.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link:focus {
  color: #FFDAB9 !important;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
  border-bottom: 2px solid white;
}

/* Dropdown menu styling */
.navbar-nav .dropdown-menu {
  background-color: #800000;
  border: none;
}

/* Dropdown item styles */
.navbar-nav .dropdown-item {
  color: white;
  padding: 10px 20px;
  transition: all 0.3s ease-in-out;
}

/* Dropdown item hover effect */
.navbar-nav .dropdown-item:hover {
  background-color: #6c0000;
  color: #FFDAB9;
  padding-left: 25px;
}

/* User avatar image styling */
.nav-image {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: 8px;
  border: 1px solid rgb(134, 17, 17);
}

/* Keep avatar/user menu on right */
.navbar-collapse {
  justify-content: space-between;
  align-items: center;
}

/* Optional: white caret for dropdown */
.navbar-light .navbar-toggler-icon {
  filter: invert(1);
}


/* Logout button */
.logout-btn {
  display: inline-block;
  margin-top: 7px;
  margin-right: 15px;
  background: rgb(134, 114, 114);
  color: #fff;
  padding: 10px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s;
}
.logout-btn:hover {
  background: #b30000;
  transform: translateY(-5px);
  padding: 20px 48px;
  font-size: large;
  font-weight: bold;
}




.hero {
  width: 100%;
    position: relative;
    text-align: center;
    padding: 100px 20px 50px;
    background: radial-gradient(circle at top, #ffe0e0, #fff);
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #8B0000;
    margin-bottom: 3px;
    margin-top: -4.5%;
}
.hero p {
    font-size: 1.2rem;
    color: #555;
}
.categories-section {
    padding: 70px 0 100px;
    position: relative;
}
.categories-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,192,203,0.2), transparent);
    z-index: 0;
}
.categories-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(144,238,144,0.2), transparent);
    z-index: 0;
}
h2.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: #8B0000;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    margin-top: -3%;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.card {
border: none;
border-radius: 20px;
overflow: hidden;
background: rgba(255, 255, 255, 0.85);
backdrop-filter: blur(15px);
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
height: 100%;
display: flex;
flex-direction: column;
animation: floatCard 6s ease-in-out infinite;
}

.card-img-top {
height: 200px;
object-fit: cover;
width: 100%;
}

.card-body {
padding: 20px;
flex-grow: 1;
display: flex;
flex-direction: column;
justify-content: space-between;
}

.card-title {
color: #8B0000;
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 8px;
}

.card-text {
color: #555;
margin-bottom: 20px;
font-size: 1rem;
}

.explore-btn {
display: inline-block;
background: linear-gradient(90deg, #8B0000, #ff416c);
color: #fff;
border: none;
border-radius: 30px;
padding: 10px 30px;
font-weight: 500;
text-align: center;
transition: all 0.3s ease;
cursor: pointer;
align-self: center;
}

.explore-btn:hover {
background: linear-gradient(90deg, #ff416c, #8B0000);
transform: scale(1.15);
}

.explore-btn::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(0);
    transition: transform 0.4s ease;
    border-radius: 50%;
}
.explore-btn:hover::after {
    transform: scale(1);
}
.explore-btn:hover {
    background: linear-gradient(90deg, #ff416c, #8B0000);
}

/* Carousel */
#cCarousel {
    position: relative;
    max-width: 900px;
    margin: auto;
    margin-bottom: 3%;
  }
  
  #cCarousel .arrow {
    position: absolute;
    top: 50%;
    display: flex;
    width: 45px;
    height: 45px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    z-index: 1;
    font-size: 26px;
    color: white;
    background: #00000072;
    cursor: pointer;
  }
  
  #cCarousel #prev {
    left: 0px;
  }
  
  #cCarousel #next {
    right: 0px;
  }
  
  #carousel-vp {
    width: 770px;
    height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin: auto;
  }
  
  @media (max-width: 770px) {
    #carousel-vp {
      width: 510px;
    }
  }
  
  @media (max-width: 510px) {
    #carousel-vp {
      width: 250px;
    }
  }
  
  #cCarousel #cCarousel-inner {
    display: flex;
    position: absolute;
    transition: 0.3s ease-in-out;
    gap: 10px;
    left: 0px;
  }
  
  .cCarousel-item {
    width: 250px;
    height: 365px;
    border: 2px solid white;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  
  .cCarousel-item img {
    width: 100%;
    object-fit: cover;
    min-height: 246px;
    color: white;
  }
  
  .cCarousel-item .infos {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    background: white;
    color: black;
  }
  
  .cCarousel-item .infos button {
    background: #222;
    padding: 10px 30px;
    border-radius: 15px;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
  }
  

/* Footer */
/* Footer Background */
footer {
    background-color: maroon; /* Brown background */
    color: #fff; /* White text */
    padding-top: 20px;
  }
  
  /* Social Media Icons */
  footer .fa-facebook-f,
  footer .fa-twitter,
  footer .fa-google,
  footer .fa-instagram,
  footer .fa-linkedin,
  footer .fa-github {
    color: #fff; /* White icons */
    transition: transform 0.3s ease, color 0.3s ease;
  }
  
  footer .fa-facebook-f:hover {
    transform: scale(1.2);
    color: #d7ccc8; /* Light brown hover */
  }
  
  footer .fa-twitter:hover {
    transform: scale(1.2);
    color: #d7ccc8; /* Light brown hover */
  }
  
  footer .fa-google:hover {
    transform: scale(1.2);
    color: #d7ccc8; /* Light brown hover */
  }
  
  footer .fa-instagram:hover {
    transform: scale(1.2);
    color: #d7ccc8; /* Light brown hover */
  }
  
  footer .fa-linkedin:hover {
    transform: scale(1.2);
    color: #d7ccc8; /* Light brown hover */
  }
  
  footer .fa-github:hover {
    transform: scale(1.2);
    color: #d7ccc8; /* Light brown hover */
  }
  
  /* Link Hover Effect */
  footer a.text-reset {
    color: #fff;
    transition: color 0.3s ease;
  }
  
  footer a.text-reset:hover {
    color: #d7ccc8; /* Light brown hover */
  }
  
  /* Section Titles */
  footer h6 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff; /* White titles */
  }
  
  /* Footer Links */
  footer a {
    text-decoration: none;
    color: #fff; /* White links */
    transition: color 0.3s ease;
  }
  
  /* Footer Links Hover */
  footer a:hover {
    color: #d7ccc8; /* Light brown hover */
  }
  
  /* Footer Copyright */
  footer .text-center {
    background-color: rgba(0, 0, 0, 0.1); /* Slightly darker overlay */
    padding: 10px;
    font-size: 0.9rem;
  }
  
  footer .icon{
    display: flex;
    /* background-color: #D4D4D4; */
    align-items:center;
    /* height: 100px; */
    margin-right: 1020px;
    margin-bottom: 12px;
    /* width: 100px; */
  }

  
/* Lang switcher */
.goog-te-gadget img {
    display: none; /* Hide Google branding image */
  }
  .goog-te-gadget-simple {
    background-color: #800e13 !important;
    border: none !important;
    color: white !important;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
  }
  .goog-te-gadget-simple:hover {
    background-color: #6f1318 !important;
  }
  
  .goog-te-gadget-simple .VIpgJd-ZVi9od-xl07Ob-lTBxed {
    color: rgb(255, 255, 255) !important;
    font-size: 16px;
    font-weight: bold;
  }
  
  
  