/* General Body Styling */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4e3;
}

/* Fixed Navbar Styling */
.navbar {
  background-color: #f4f4e3;
  border-bottom: 2px solid #224224;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  position: fixed; 
  z-index: 1000;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;  /* Ensures items don't overflow */
}

/* Logo & Text Adjustments */
.navbar-logo {
  display: flex;
  align-items: center;
  color: #224224;
}

.navbar-icon {
  height: 100px; /* Adjust icon to match homepage */
  width: auto;
  margin-right: 10px;
}

.navbar-text {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2rem;
  line-height: 1.2;
}

/* Menu & Hover Effects */
.menu {
  list-style: none;
  display: flex;
  gap: 10px;  /* Reduce gap to ensure items fit */
  margin: 0;
  padding: 0;
  overflow: auto;  /* Allow horizontal scrolling if needed */
}

.menu li {
  margin-left: 20px;
}

.menu a {
  text-decoration: none;
  color: #224224;
  padding: 5px 8px;
  font-size: 1rem
  transition: background-color 0.3s ease;
}

/* Responsive Navbar */
@media screen and (max-width: 768px) {
  .menu {
    gap: 8px; /* Reduce gaps on smaller screens */
  }

  .menu a {
    font-size: 0.9rem;
  }
}

.menu a:hover {
  background-color: #d7c6aa;
  border-radius: 4px;
}

/* Dropdown Menu Popup */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #d7c6aa;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  border-radius: 4px;
}

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

.dropdown-content a {
  text-decoration: none;
  color: #224224;
  padding: 10px;
  display: block;
}

/* Hero Section */
.hero {
  background-image: url('../IMAGES/LAskyline.jpg');
  background-size: cover;
  background-position: center;
  height: 60vh;
  margin-bottom: 20px;  /* Space below the hero image */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 0;
  position: relative;
}

.hero-text {
  background: rgba(0, 0, 0, 0.5); /* Overlay for readability */
  padding: 20px;
  border-radius: 8px;
}

/* Content Wrapper */
.content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 20px;
  height: calc(100vh - 100px - 20px); /* Adjusted for navbar & spacing */
}

/* Left & Right Sections */
.left-section,
.right-section {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

/* Slideshow */
.slideshow-container {
  position: relative;
  max-width: 100%;
}

.slideshow img {
  width: 50%; /* Display at half size */
  border-radius: 8px;
  display: none;
}

.slideshow img:first-child {
  display: block;
}

/* Slideshow Navigation */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: #224224;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(255, 255, 255, 0.8);
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(255, 255, 255, 1);
}

/* Card Styling */
.card {
  background-color: #d7c6aa;
  border-radius: 10px;
  padding: 20px;
  margin: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
  }

  .left-section, .right-section {
    width: 100%;
  }

  .hero {
    height: 40vh;
  }
}
