@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');

body {
  margin: 0;
  font-family: 'Playfair Display', serif;
  background-color: #111;
  color: white;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  background-color: black;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.05);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.navbar-left {
  font-size: 24px;
  font-weight: bold;
  color: white;
}

.navbar-links {
  display: flex;
  gap: 30px;
}

.navbar a {
  color: white;
  text-decoration: none;
  position: relative;
  font-weight: 500;
  font-size: 16px;
}

.navbar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0%;
  background-color: white;
  transition: width 0.3s ease-in-out;
}

.navbar a:hover::after {
  width: 100%;
}

/* Carousel */
.carousel-section {
  margin-top: 80px; /* push below navbar */
}

.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 600px;
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
}

.carousel-item {
  min-width: 100%;
  position: relative;
}

.slide-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: filter 0.3s ease;
}

.luxury-btn {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-size: 18px;
  padding: 23px 33px;
  border-radius: 3px;
  background: transparent;
  color: #ccc;
  border: 3px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.luxury-btn:hover {
  color: white;
}

.luxury-btn::before,
.luxury-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.luxury-btn::before {
  border: 3px solid rgba(255,255,255,0.2);
  z-index: 1;
}

.luxury-btn:hover::before {
  opacity: 0;
}

.luxury-btn::after {
  border: 3px solid white;
  opacity: 0;
  transform: scale(1.1,1.3);
  z-index: 0;
}

.luxury-btn:hover::after {
  opacity: 1;
  transform: scale(1,1);
}

/* Carousel controls */
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0 12px;
  cursor: pointer;
  z-index: 3;
}

.carousel-control.prev {
  left: 10px;
}

.carousel-control.next {
  right: 10px;
}

/* Info Section (two-column) */
.info-section {
  background: #111;
  color: #fff;
  padding: 60px 20px;
}

.info-section.two-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  gap: 40px;
  padding: 60px 20px;
}

.info-section.two-column .info-content {
  flex: 0 0 auto;
  max-width: 600px;
}

.info-section.two-column .info-image {
  flex: 0 0 auto;
  max-width: 900px;
  display: flex;
  justify-content: center;
}

.info-section.two-column .info-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

/* Center vertically on desktop */
@media (min-width: 768px) {
  .info-section.two-column {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .info-section.two-column .info-content {
    margin-right: 20px;
  }
}

/* Footer */
.site-footer {
  background: #111;
  color: #fff;
  padding: 40px 20px 20px;
  font-size: .95rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-left {
  text-align: center;
}

.footer-left h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.footer-map iframe {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  border: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: .85rem;
  color: #888;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .navbar .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-links {
    flex-wrap: wrap;
    padding-top: 10px;
  }

  .carousel {
    height: 400px;
  }

  .info-section.two-column {
    flex-direction: column;
    padding: 40px 10px;
  }
  .info-section.two-column .info-content,
  .info-section.two-column .info-image {
    max-width: 100%;
  }
}