@charset "UTF-8";


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
}

.navbar {
	display: flex;
	justify-content: center;
	align-items: center; 
    background-color: #3e1f14;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar .logo {
    width: 100px;
	position: center; 
}


.nav-links {
    display: flex;
    justify-content: center;
    list-style-type: none;
    padding: 10px 90px; 
}

.nav-links li {
    margin: 20px 20px;
}

.nav-links a {
    color: #f8f8f8;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px 15px;
    display: block;
}

.nav-links a:hover {
    background-color: #b88e00; 
    border-radius: 5px;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #3e1f14;
    min-width: 160px;
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #f8f8f8;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #b88e00;
    border-radius: 5px;
}

@media screen and (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .dropdown-content {
        min-width: 100%;
    }
}


.hero {
    position: relative;
    height: 100vh; 
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
}
	
  .carousel {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-images {
  display: flex;
  transition: transform 1s ease-in-out;
}

.carousel-images img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}


.hero-text {
    position: absolute;
    color: #f8f8f8;
    text-align: center;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hero .btn {
    padding: 10px 20px;
    background-color: #b88e00;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
}

.hero .btn:hover {
    background-color: #9a7d00;
}


.history-section {
  background-color: #f4f4f4;
  padding: 50px 0;
}

.history-section .container {
  width: 80%;
  margin: 0 auto;
  max-width: 1200px;
}

.history-section h3 {
  font-size: 2 rem;
  color: #333;
  margin-bottom: 20px;
}

.history-section p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 20px;
}

.history-section h3 {
  font-size: 2rem;
  margin-top: 30px;
  margin-bottom: 15px;
}

.history-section ul {
  list-style: none;
  padding: 0;
}

.history-section ul li {
  margin: 10px 0;
}

.history-section a {
  color: #007BFF;
  text-decoration: none;
}

.history-section a:hover {
  text-decoration: underline;
}

.history-section .image-container {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.history-section .image-container img {
  width: 48%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.attractions-section {
	background-color: #f4f4f4;
	padding: 50px 0; 
}

.attractions-section .container {
  width: 80%;
  margin: 0 auto;
  max-width: 1200px;
}

.attractions-section h1 {
   color: #333;
  font-size: 2em; 
  margin-bottom: 20px;
}

.attractions-section h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.attractions-section p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 20px;
}

.attractions-section h3 {
  font-size: 1.2rem;
  color: #555; 
  margin-top: 30px;
  margin-bottom: 15px;
}

.images {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.image-item {
    width: 30%;
    margin-bottom: 20px;
}

.image-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.image-item p {
    margin-top: 8px;
    font-size: 1em;
    color: #555;
}

.video-container {
    margin-bottom: 20px;
    text-align: center;
}

.video-container video {
    width: 100%;
    max-width: 800px;  
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.video-container p {
    font-size: 1.2em;
    color: #555;
    margin-top: 10px;
}