/* --- Theme Colors --- */
:root {
    --sage: #c5d3c0; 
    --dark-sage: #5f7d66; 
    --white: #ffffff;
    --text-dark: #2f3e35; 
}
body {
    margin: 100;
    font-family: "Georgia", serif;
    color: var(--text-dark);
    background: var(--white);


}

header {
    position: fixed;
    width: 100vw;      
    margin-left: calc(50% - 50vw); 
    margin-right: calc(50% - 50vw); 
    top: 0px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content:space-around;
    align-items: left;
    backdrop-filter: blur(8px);
    background-color: #5f7d66;
    font-weight: bolder;
}

header a {
    margin: 0 10px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 18px;
    
}
h2{
    font-size:30px;
    font-weight:bolder;
    color:black
}

.logo {
    font-size: 30px;
    font: weight 50px;
    text-align:left;
    color:black;
}

.hero {
    height: 100vh;
    width: 100vw;          
    margin-left: calc(50% - 50vw); 
    margin-right: calc(50% - 50vw); 
    background: url("images/flamingo2.jpg") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0px 20px;
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;

}
/*.hero {
    height: 100vh;
    width: 100vw;          
    margin: 10px;
    background: url("images/flamingo2.jpg") left/cover no-repeat;
    display: flex;
    justify-content: flex-start; 
    align-items: center;        
    text-align: left;
    padding-left: 50px;      
    background-size: cover; 
    background-position: left center;
    background-repeat: no-repeat;
}

.hero-text {
    max-width: 600px;  
    background-color: rgba(255, 255, 255, 0.8); 
    padding: 20px;
    border-radius: 8px; 
}*/

.hero-text {
    background: rgba(255,255,255,0.6);
    padding: 30px;
    border-radius: 10px;

}

.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}
.hero p{
    font-size:20px;
    font-weight:bold;
}
.section{
    margin:0;
    padding:0;
}
.section-header * {
    margin: 0;
    padding: 20px;
}
.section-header{
    background-color:#5f7d66;
    width: 100vw;  
    margin-left: calc(50% - 50vw); 
    margin-right: calc(50% - 50vw); 
    padding: 0px;
    display: flex;
    justify-content:center;
    align-items: center;
    backdrop-filter: blur(8px);
    font-weight:bolder;
    text-align:center;
    margin-bottom:10px;
    margin-top:0px;
    padding-bottom:0px;

}

.btn-primary {
    display: inline-block;
    background: var(--dark-sage);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 15px;
    transition: 0.3s;
}
.btn-primary:hover {
    background: var(--sage);
    color: var(--text-dark);
}


.section {
    padding: 20px 20px;
    text-align: center;
}

.service-grid, .room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card, .room-card {
    background: var(--sage);
    padding: 20px;
    border-radius: 12px;
}

.room-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 10px;
}

footer {
    background: var(--dark-sage);
    color: white;
    text-align: center;
    padding: 12px;
}
section-header p{
    text-align:justify;
    font-size:20px;
}
.contact-details {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: #4f6b56; 
    text-align:center;
}

.contact-details i {
    color: #5f7d66; 
    margin-right: 8px;
    font-size: 1.1rem;
    text-align:center;
}

.contact-details p {
    margin: 4px 0;
    display: flex;
    align-items: center;
    justify-content:center;
}

.contact-details p:hover i {
    color: #3e5643; 
    transition: 0.3s ease;
}
.contact-details a {
    color: #4f6b56;
    text-decoration: none;
}

.contact-details a:hover {
    color: #3e5643;
    text-decoration: underline;
}
a{
color: #4f6b56;
font-weight:bolder;
    
}
a:hover {
    color: #3e5643;
    text-decoration: underline;
}
.room-highlights p {
    font-weight: 600;
    margin: 4px 0;
    color: #4f6b56;
}
.room-highlights strong {
    color: #3e5643; 
}

.gallery-section {
    text-align: center;
    padding: 40px 20px;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    padding: 0 20px;
  }
  
  .gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 3px solid #5f7d6633;
  }
  
  .gallery-grid img:hover {
    transform: scale(1.03);
    border-color: #5f7d66;
  }
  
  /* Lightbox */
  .lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .lightbox img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
  }
  .lightbox .close {
    position: fixed;
    top: 20px;
    right: 30px;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    color: white;
    z-index: 10000;
  }
  
  /* Close & Navigation Buttons */
 .prev, .next {
  position: fixed;
  top: 50%;
  font-size: 45px;
  font-weight: bolder;
  cursor: pointer;
  color: white;
  padding: 20px;
  z-index: 10000;
  user-select: none;
  transform: translateY(-50%);
}
  
  .close {
    top: 20px;
    right: 30px;
  }
  
  .lightbox .prev {
    left: 40px;
  }
  
  .lightbox .next {
    right: 60px; 
  }
  
  .prev:hover, .next:hover, .close:hover {
    color: #5f7d66;
  }

  .video-thumb {
    position: relative;
    cursor: pointer;
  }
  
  .video-thumb .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    background: rgba(0,0,0,0.5);
    padding: 10px 15px;
    border-radius: 50%;
  }
  .lightbox-content {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
  }
/* Responsive */
@media(max-width: 768px) {
    header {
        padding: 10px 20px;
    }
    .hero h1 {
        font-size: 32px;
    }
}
