/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and Fonts */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #111;
  color: #fff;
}

/* Header */
header {
  background-color: #222;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header img {
  height: 60px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  color: #f44336;
}

/* Hero Section */
.hero {
  padding: 40px 20px;
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px #000;
}

.hero p {
  font-size: 1.5rem;
  text-shadow: 1px 1px 3px #000;
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* Footer */
footer {
  background-color: #222;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  font-size: 0.9rem;
}

.gallery {
  padding: 60px 20px;
  text-align: center;
}

.gallery h1 {
  margin-bottom: 40px;
  font-size: 2.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border: 4px solid #f44336;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

.gallery h2 {
  margin-top: 60px;
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: #f44336;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.map-container {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

main {
  padding-top: 100px;
  max-width: 800px;
  margin: auto;
}

.contact-section {
  padding: 20px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: #111;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.logo img {
  height: 60px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a.active,
nav ul li a:hover {
  color: #f00; /* Highlight color */
}

a {
  color: #f00;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
