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

body {
  font-family: 'Garamond', serif;
  line-height: 1.6;
  background: #fff;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
  background-color: white;
  border-bottom: 1px solid #ccc;
  height: 60px;
}

.logo {
  font-size: 2.5rem;
  font-weight: bold;
}

.contact-btn {
    background-color: #333;
    color: white !important;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: #555;
}

.main-nav .nav-links {
  display: flex;
  list-style: none;
  justify-content: end;
  gap: 1.6rem;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-size: 0.95rem;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: black;
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Dropdown Menu Styles */
.nav-links .dropdown {
  position: relative;
}

.nav-links .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  list-style: none;
  padding: 0.5rem 0;
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 150px;
  z-index: 999;
}

.nav-links .dropdown-menu li a {
  display: block;
  padding: 0.5rem 1rem;
  color: black;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links .dropdown-menu li a:hover {
  background-color: #f0f0f0;
}

/* Show dropdown on hover */
.nav-links .dropdown:hover .dropdown-menu {
  display: block;
}


/* Hero Section */
.hero {
  background: url('hero-background.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 150px 20px;
}

.hero-text p {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.hero-text h1 {
  font-size: 2.5rem;
  line-height: 1.5;
  color: peachpuff;
}

.hero-text h2 {
  font-size: 3.5rem;
  line-height: 2.5;
}

/* Carousel */
.carousel {
  position: relative;
  max-width: 800px;
  margin: 50px auto;
}

.carousel-track-container {
  overflow: hidden;
  width: 100%;
}

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

.carousel-images img {
  width: 100%;
  max-width: 800px;
  flex-shrink: 0;
}

/* Buttons */
.carousel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.7);
  border: none;
  cursor: pointer;
  z-index: 1;
  padding: 0.3rem 0.6rem;
}

.carousel .prev {
  left: 10px;
}

.carousel .next {
  right: 10px;
}


/* Footer */
footer {
  background: #f5f5f5;
  padding: 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

footer h3 {
  margin-bottom: 10px;
}

footer a {
  text-decoration: none;
  color: black;
}
