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

body {
  font-family: 'Georgia', serif;
  color: #333;
  background-color: #f8f8f8;
}

a {
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.logo {
  font-size: 30px;
  font-weight: bold;
  color: #FFD700;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-links {
  list-style: none;
}

.nav-links li {
  display: inline-block;
  margin-left: 20px;
}

.nav-links a {
  color: #000;
  font-size: 18px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #FFD700;
}

/* Hero Section */
.hero {
  height: 100vh;
  background-image: url('Gletscher_1.JPG');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-overlay {
  background: rgba(255, 255, 255, 0.5);
  padding: 50px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

.hero h1 {
  color: #FFD700;
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
}

.hero p {
  color: #000;
  font-size: 24px;
}

.cta-button {
  padding: 12px 24px;
  background-color: #000;
  color: #FFD700;
  border: 2px solid #FFD700;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border-radius: 30px;
}

.cta-button:hover {
  background-color: #FFD700;
  color: #000;
  transform: scale(1.05);
}

/* About Section */
.about {
  padding: 100px 0;
  background-color: #e6f7ff;
  text-align: center;
}

.section-title {
  font-size: 36px;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
}

.about p {
  font-size: 20px;
  line-height: 1.8;
  margin-top: 20px;
  color: #000;
}


/* Gallery Section */
.gallery {
  padding: 80px 0;
  background-color: #ffffff;
  text-align: center;
}

.section-title {
  font-size: 36px;
  color: #FFD700;
  margin-bottom: 40px;
}

.gallery-pyramid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.top-image img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.6s ease-in-out;
}

.bottom-images {
  display: flex;
  gap: 20px;
}

.bottom-image img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.6s ease-in-out;
}

.top-image img:hover, .bottom-image img:hover {
  transform: scale(1.1);
}


/* Contact Section */
.contact {
  padding: 100px 0;
  background-color: #e6f7ff;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 500px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 2px solid #000;
  background-color: #fff;
  font-size: 16px;
  border-radius: 10px;
}

.submit-button {
  padding: 15px;
  background-color: #000;
  color: #FFD700;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border-radius: 30px;
}

.submit-button:hover {
  background-color: #FFD700;
  color: #000;
  transform: scale(1.05);
}

/* Footer */
footer {
  padding: 20px;
  background-color: #000;
  color: #FFD700;
  text-align: center;
}
