/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
}

/* Navbar */
.navbar {
  background: linear-gradient(to right, #0077b6, #00b4d8);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.logo {
  font-size: 1.8rem;
  color: white;
  font-weight: bold;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: black;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* Mobile */
@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background: linear-gradient(to right, #0077b6, #00b4d8);
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    transition: left 0.3s ease-in-out;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin: 1rem 0;
  }
}

/* Home Section */
.home {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("https://2486634c787a971a3554-d983ce57e4c84901daded0f67d5a004f.ssl.cf1.rackcdn.com/florida-hotel-conference/media/FH-Gallery-1-598b45769980a.jpg")
    no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Increased black opacity */
  z-index: 1;
}

.home-content {
  position: relative;
  text-align: center;
  z-index: 2;
  padding: 0 1rem;
}

.home-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  animation: fadeInDown 1s ease-in-out;
}

.home-content p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-in-out;
}

.home-content button {
  padding: 0.8rem 2rem;
  background-color: #f8c52c;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  transition: background 0.3s;
}

/* image slider Dummy Section */
.imageslider {
  padding: 5px 5px;
}

/* image slider  */
.hotel-slider-section {
  overflow: hidden;
  padding: 40px 0;
  height: 230px;
}

.slider {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.slide-track {
  display: flex;
  width: calc(250px * 10); /* adjust based on total images */
  animation: scroll 40s linear infinite;
}

.slide {
  width: 250px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}

.slide img {
  width: 100%;
  height: 150px;
  border-radius: 12px;
  border: 1px solid white;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.4);
  transition: transform 0.4s;
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Responsive Styles */
@media (max-width: 768px) {
  .hotel-slider-section {
    height: 190px;
  }
  .slide {
    width: 180px;
    height: 120px;
  }
  .slide img {
    height: 120px;
  }
  .slide-track {
    width: calc(180px * 10);
  }
}

@media (max-width: 480px) {
  .hotel-slider-section {
    height: 170px;
  }
  .slide {
    width: 140px;
    height: 100px;
  }
  .slide img {
    height: 100px;
  }
  .slide-track {
    width: calc(140px * 10);
  }
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media screen and (max-width: 768px) {
  .home {
    height: 70vh;
  }
  .home-content h1 {
    font-size: 2.2rem;
  }

  .home-content p {
    font-size: 1.1rem;
  }

  .home-content button {
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
  }
}
/* about us section  */

.about-section {
  padding: 60px 20px;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
  border: 1px solid white;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 10px;
}

.text-section {
  padding: 40px;
  flex: 1;
}

.text-section h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: white;
}

.text-section .highlight {
  color: orange;
}

.text-section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: white;
}

button {
  padding: 10px 20px;
  background-color: white;
  color: black;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.hidden {
  display: none;
}

/* Responsive for tablets */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    width: 95%;
  }

  .image-section img {
    width: 96%;
  }

  .text-section {
    padding: 30px;
  }
}
@media (max-width: 400px) {
  .image-section img {
    width: 93%;
  }
}

/* Responsive for mobile */
@media (max-width: 600px) {
  .text-section h1 {
    font-size: 2em;
  }

  .text-section p {
    font-size: 1em;
  }

  button {
    padding: 12px;
  }
}

/* room section  */

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-top: 2rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Container */
.room-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
  padding: 2rem;
}

.room-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
  border: 1px solid white;
}

.room-card:hover {
  transform: translateY(-10px);
}

.room-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.room-info {
  padding: 1rem;
}

.room-info h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: white;
}

.room-info p {
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  color: white;
}

.room-info .price {
  font-weight: bold;
  display: block;
  margin-bottom: 1rem;
  color: white;
}

.room-info button {
  padding: 0.6rem 1.2rem;
  background-color: white;
  color: black;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

/* Responsive */
@media screen and (max-width: 992px) {
  .room-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .room-container {
    grid-template-columns: 1fr;
    padding: 1rem;
    width: 90%;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }
}

/* amenities & services section */

/* Section titles */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-top: 2rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Amenities Grid */
.amenities {
  padding: 2rem 1rem 4rem;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.amenity-card {
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  border: 1px solid white;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-card:hover {
  transform: translateY(-8px);
}

.amenity-card i {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
}

.amenity-card h3 {
  margin: 0.5rem 0;
  font-size: 1.3rem;
  color: orange;
}

.amenity-card p {
  font-size: 0.95rem;
  color: white;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 1rem;
  }
}

@media screen and (max-width: 600px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }
}
/* gallery section */

/* Section Title */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-top: 2rem;
}
.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

/* Gallery Grid */
.gallery {
  padding: 2rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: auto;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid white;
  transition: transform 0.4s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.lightbox img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.lightbox .close-btn {
  font-size: 2rem;
  color: #fff;
  position: absolute;
  top: 30px;
  right: 40px;
  cursor: pointer;
}

/* Responsive */
@media screen and (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 300px;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* restaurant & dinning  */
/* Section Title & Subtitle */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-top: 2rem;
}
.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Dining Grid */
.dining {
  padding: 2rem 1rem 4rem;
}
.dining-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.dining-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
  border: 1px solid white;
  transition: transform 0.3s ease;
}

.dining-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.dining-card:hover {
  transform: scale(1.1);
}

.dining-info {
  padding: 1rem;
  text-align: center;
}

.dining-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: white;
}

.dining-info p {
  font-size: 0.95rem;
  color: white;
}

/* Button */
.dining-btn-container {
  text-align: center;
  margin-top: 2rem;
}
.dining-btn-container button {
  padding: 0.8rem 2rem;
  background-color: white;
  color: #000;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
  .dining-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .dining-grid {
    grid-template-columns: 1fr;
    width: 90%;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .dining-card img {
    height: 200px;
  }
}

/* booking & reservation  */

.booking-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}

.booking-card {
  border: 1px solid white;
  border-radius: 20px;
  padding: 40px 35px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hotel-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
  letter-spacing: 1px;
}

.sub-heading {
  text-align: center;
  font-size: 1rem;
  color: white;
  margin-bottom: 30px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 6px;
  color: white;
}

.form-group input {
  padding: 12px 14px;
  border: 1px solid grey;
  border-radius: 10px;
  color: black;
  font-size: 1rem;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.form-group input::placeholder {
  color: grey;
}

.form-group input:focus {
  outline: none;
  border-color: orange;
}

.btn-submit-booking {
  padding: 14px;
  background: #fff;
  color: black;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

/* Tablet View */
@media (max-width: 768px) {
  .booking-card {
    padding: 30px 25px;
  }

  .hotel-title {
    font-size: 1.8rem;
  }
}

/* Mobile View */
@media (max-width: 480px) {
  .booking-card {
    padding: 25px 20px;
    width: 90%;
  }

  .hotel-title {
    font-size: 1.6rem;
  }

  .btn-submit-booking {
    font-size: 0.95rem;
  }
}

/* location section  */

.location-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  min-height: 100vh;
}

.location-card {
  border-radius: 20px;
  padding: 40px 35px;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
  border: 1px solid white;
  text-align: center;
}

.location-title {
  font-size: 2rem;
  margin-bottom: 10px;
  color: white;
}

.location-description {
  font-size: 1rem;
  margin-bottom: 25px;
  color: white;
}

.map-container {
  width: 100%;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
}

.btn-directions {
  padding: 12px 20px;
  background: white;
  color: #000;
  border: none;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
  .location-card {
    padding: 30px 20px;
  }

  .location-title {
    font-size: 1.6rem;
  }

  .map-container {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .location-card {
    width: 90%;
  }
  .location-title {
    font-size: 1.4rem;
  }

  .map-container {
    height: 200px;
  }

  .btn-directions {
    font-size: 0.95rem;
  }
}

/* contact us section  */

.sections-wrapper {
  max-width: 960px;
  margin: auto;
  padding: 40px 20px;
}

/* Shared Styles */
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.section-subtitle {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 30px;
  color: white;
}

/* Contact Section */
.contact-section {
  border: 1px solid white;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 50px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #ccc;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 5px #3498db;
}

.btn-primary {
  background: white;
  color: black;
  padding: 12px;
  border: none;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

/* Testimonials Section */
.testimonials-section {
  margin-bottom: 50px;
  text-align: center;
}

.testimonial {
  border: 1px solid white;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  margin: 15px auto;
  max-width: 600px;
  font-style: italic;
}

.testimonial h4 {
  margin-top: 10px;
  font-weight: normal;
  color: #e6e6e6;
}
.testimonial p {
  color: white;
}

/* FAQ Section */
.faq-section {
  margin-bottom: 50px;
}

.faq-item {
  border: 1px solid white;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 15px 20px;
  cursor: pointer;
}

.faq-item h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #ffffff;
}

.faq-answer {
  display: none;
  margin-top: 10px;
  color: white;
  font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.6rem;
  }

  .testimonial {
    font-size: 0.95rem;
  }

  .faq-item h3 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-form input,
  .contact-form textarea {
    font-size: 0.9rem;
  }

  .btn-primary {
    font-size: 0.95rem;
  }

  .testimonial {
    padding: 15px;
    width: 90%;
  }
}
/* footer section  */

/* Footer Styles */
.footer {
  border: 1px solid white;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 40px 20px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin: auto;
}

.footer-box {
  flex: 1 1 150px;
}

.footer-box h3,
.footer-box h4 {
  margin-bottom: 15px;
  color: orange;
}

.footer-box p,
.footer-box li {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-box ul li a:hover {
  color: orange;
}

.social-icons a {
  font-size: 1.2rem;
  margin-right: 10px;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease;
}

/* Bottom Footer */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: orange;
  border-top: 1px solid white;
  padding-top: 15px;
  position: relative;
}

.scroll-top {
  position: absolute;
  right: 20px;
  top: 10px;
  background: white;
  border: none;
  color: black;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: background 0.3s ease;
}

.scroll-top:hover {
  background: black;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-box {
    margin-bottom: 25px;
  }

  .scroll-top {
    position: static;
    margin-top: 10px;
  }
}
@media (max-width: 480px) {
  .footer-box {
    height: 100px;
    margin-bottom: 45px;
  }
}
