/* css/common.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  overflow-x: hidden;
}


body {
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  line-height: 1.6;
  font-family: 'Playfair Display', serif;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}


.btn {
  display: inline-block;
  background-color: #d4a743;
  color: #fff;
  padding: 12px 24px;
  font-weight: bold;
  margin-top: 20px;
  border: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #b78f34;
}

.hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

img {
  max-width: 100%;
  height: auto;
}

#disclaimer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto; /* Make the entire overlay scrollable */
  padding: 40px 20px; /* Responsive padding */
  z-index: 9999;
}

.disclaimer-content {
  max-width: 600px;
  background: #2c3148;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  margin: auto;
}

@media (max-width: 600px) {
  .disclaimer-content {
    max-height: 80vh;
    overflow-y: auto;
  }
}


.hero {
  width: 100%;
  min-height: 100vh;
  background-image: url('../images/hero.jpeg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  box-sizing: border-box;
  position: relative;
}

.hero-overlay {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: white;
}

@media (max-width: 600px) {
  .hero {
    min-height: 70vh;
    background-size: contain;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 0.9rem;
  }
}


.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-slider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

.hero-slider .prev,
.hero-slider .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 15px;
  cursor: pointer;
  font-size: 24px;
}

.hero-slider .prev { left: 20px; }
.hero-slider .next { right: 20px; }
