/* === Base Reset === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  padding-top: 80px; /* for fixed header */
  font-family: 'Raleway', sans-serif;
  color: white;
  background: url('../images/copenhagentravelproject1.jpg') no-repeat center center fixed;
  background-size: cover;
}

/* === Header === */
.main-header {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.main-header .container {
  max-width: 1200px;
  margin: auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color:  #2e2e2e;
  text-decoration: none;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.main-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #4b32c3;
}

/* === Hero === */
.hero {
  background: url('../images/copenhagentravelproject1.jpg') no-repeat center center;
  background-size: cover;
  height: 100vh;
  color:  #2e2e2e;;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 900;
}

.hero p {
  font-size: 1.5rem;
  margin: 20px 0;
}

/* === Button === */
.btn {
  background: white;
  color: black;
  padding: 10px 20px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #eee;
}

/* === Sections === */
.section,
.about-section,
.footer {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.section h2,
.section h5 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: white;
}

.section-label {
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: #ccc;
  margin-bottom: 0.5rem;
}

/* === Grid & Cards === */
.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
}

.card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  width: 300px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  color: white;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.card img {
  width: 100%;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.card h3 {
  margin-top: 0.5rem;
  font-size: 1.2rem;
}

.card p {
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

.card .btn {
  align-self: flex-start;
  margin-top: auto;
  background-color: #4b32c3;
  color: white;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 0.4rem;
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: background 0.3s;
}

.card .btn:hover {
  background-color: #37259e;
}

/* === About Section === */
.about-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.about-image {
  flex: 1 1 45%;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.about-text {
  flex: 1 1 50%;
  text-align: left;
}

.about-text h2,
.about-text h3,
.about-text p {
  color: white;
  text-align: left;
}

.about-text h2 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.about-text h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.6;
}

/* === Footer === */
.footer {
  background-color:  rgba(30, 30, 30, 0.9);
  background-size: cover;
  background-position: center;
  color: white;
}

.footer a {
  color: #ccc;
  text-decoration: underline;
}

.footer a:hover {
  color: white;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid > div {
  flex: 1 1 30%;
  min-width: 250px;
}

.footer-grid h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-grid p,
.footer-grid ul {
  font-size: 1rem;
  line-height: 1.6;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
}

.footer-grid li {
  margin-bottom: 0.5rem;
}

/* === Responsive === */
@media (max-width: 768px) {
  .about-grid,
  .footer-grid {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .about-text,
  .footer-grid > div {
    margin-bottom: 2rem;
  }

  .about-text h2,
  .about-text h3,
  .about-text p {
    text-align: center;
  }
}.gallery-section {
  background-color: rgba(0, 0, 0, 0.5);
  text-align: center;
}

.gallery-section h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.gallery-grid iframe {
  width: 300px;
  height: 540px;
  border-radius: 12px;
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  background: white;
}
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
}
