:root {
    --dark-green: #1a3c34;
    --light-green: #4a7043;
    --white: #ffffff;
}

.carousel img {
  height: auto; /* Adjust as needed */
  object-fit:cover;
  width: 100% !important;
}

.carousel-caption-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255,255,255,0.85);
  padding: 1rem;
  box-sizing: border-box;
  z-index: 10;
}

.carousel-item { 
  overflow: visible; 
}

.main_content a{
	text-decoration: none !important;
	color: black;
}

#emergencyBanner {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  z-index: 1055;
  background-color: #BBE179;
  color: #774015;
  padding: 1rem;
  text-align: center;
  font-size: 1.7rem;
  opacity: 1;
  transition: opacity 0.5s ease;
}

#emergencyBanner.fade-out {
  opacity: 0;
  pointer-events: none;
}

.slide-img {
  display: block;
  width: 100% !important;
  height: auto !important;
  margin-bottom: 0; /* no gap below the image itself */
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--light-green);
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

  #gmap_canvas {
    width: 100%;
    height: 725px;
  }

  @media (max-width: 768px) {
    #gmap_canvas {
      height: 300px;
	  width: 100%;
    }
	  
  .carousel img {
  height: 150px !important;
}
	  
  .carousel-caption-bottom {
 font-size: 0.4rem !important;
}
	  
 .imagetext {
	font-size: 0.9rem !important;
}
 .imagetexth {
  font-size: 1.1rem !important;
}
	  
.weather-container {
  height: 170px !important;	
}
.weather-container iframe {
  height: 170px !important;
}

  }

.poster {
  width: 100%;
  height: 500px;
  object-fit: cover;
  margin-top: 1rem;
}

.weather-container {
  position: relative!important;
  width: 100% !important;
  margin: 0 auto;
  height: 200px;
}

.weather-container iframe {
  position: absolute!important;
  top: 0; left: 0!important;
  width: 100%;       
  height: 200px;
  border: 0!important;
}


.bg-dark-green {
    background-color: var(--dark-green);
}

.bg-light-green {
    background-color: var(--light-green);
}

.section {
    padding: 60px 0;
}

.video {
	padding: 0 !important;
	border: 0px !important;
	display: block !important;
  width: 100% !important;
  height: auto !important;
}

.navbar-nav .nav-link {
    color: var(--white);
    font-weight: 400;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #d4a373;
}

.nav-link.active {
  color: #a66e39 !important;
}

.emergency-banner {
    background-color: white;
    color: red;
    text-align: center;
    padding: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    position: relative;
    z-index: 1000;
}

.text-white a {
    text-decoration: none;
    color: var(--white);
}

.text-white a:hover {
    color: var(--white);
}

#weatherWidget .weatherwidget-io {
    max-width: 100%;
    min-height: 400px !important;
    border: none;
    overflow: visible;
    position: relative;
    visibility: visible;
    display: block;
}

#weatherWidget .weatherwidget-io iframe {
    width: 100% !important;
    height: 400px !important;
    min-height: 400px !important;
    display: block !important;
    border: none !important;
    visibility: visible !important;
}

#weatherWidget p {
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    padding: 20px;
    background: #1a3c34;
    border-radius: 8px;
}

.animate-slide-left {
    animation: slideInLeft 1s ease-out;
}

.animate-slide-right {
    animation: slideInRight 1s ease-out;
}

.animate-slide-up {
    animation: slideInUp 1s ease-out;
}

@keyframes slideInLeft {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@media (max-width: 767px) {
    .navbar-nav {
        background-color: var(--dark-green);
        padding: 10px;
    }
    .section {
        padding: 30px 0;
    }
    #weatherWidget .weatherwidget-io,
    #weatherWidget .weatherwidget-io iframe {
        min-height: 300px !important;
        height: 300px !important;
    }
}