/* ---------- Privacy Policy Page Styles ---------- */

/* Section Background */
.privacy-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #111 0%, #1a1a1a 100%);
  font-family: 'Montserrat', sans-serif;
  color: #ccc;
}

/* ---------- Hero Section ---------- */
.hero {
  background: url('../../images/petersen_museum.jpg') center/cover no-repeat;
  height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  padding: 30px 50px;
  text-align: center;
  animation: fadeIn 1s ease-out;
}

.hero h1 {
  font-size: 3rem;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

/* ---------- Content Container ---------- */
.container {
  max-width: 950px;
  margin: 80px auto;
  background: #1a1a1a;
  padding: 60px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.65);
  animation: fadeIn 0.9s ease-out;
}

/* ---------- Headings ---------- */
.container h1, .container h2 {
  font-family: 'Montserrat', sans-serif;
  color: #e10600;
  margin-bottom: 25px;
  font-weight: 700;
}

.container h1 {
  font-size: 2.4rem;
  margin-bottom: 40px;
  text-align: center;
}

.container h2 {
  font-size: 1.6rem;
  border-left: 4px solid #e10600;
  padding-left: 12px;
  margin-top: 40px;
}

/* ---------- Text ---------- */
.container p {
  margin-bottom: 20px;
  color: #ccc;
  font-size: 1.05rem;
  line-height: 1.9;
  text-align: justify;
}

/* ---------- Links ---------- */
.container a {
  color: #e10600;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

a:hover {
  text-decoration: underline;
  color: #ff3333;
}

a.back-link {
  display: inline-block;
  margin-top: 45px;
  font-size: 1rem;
}

/* ---------- Contact Section ---------- */
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin: 40px 0;
  justify-content: space-between;
}

.contact-item {
  flex: 1 1 280px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: #111;
  padding: 22px;
  border: 1px solid #2a2a2a;
  box-shadow: 0 6px 18px rgba(0,0,0,0.55);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.65);
}

.icon-box {
  background: #e10600;
  color: #fff;
  font-size: 1.4rem;
  padding: 14px;
  border-radius: 50%;
  min-width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(225,6,0,0.4);
}

.contact-details h3 {
  font-size: 1.15rem;
  margin: 0 0 6px;
  color: #fff;
  font-weight: 600;
}

.contact-details p,
.contact-details a {
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-details a:hover {
  color: #ff3333;
  text-decoration: underline;
}

/* Map */
.contact-map {
  margin-top: 35px;
  /* border-radius: 12px; */
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.6);
}

/* ---------- Footer (Inside Privacy Content) ---------- */
.site-footer {
  text-align: center;
  padding: 30px;
  background: #1a1a1a;
  color: #888;
  font-size: 0.95rem;
  border-top: 1px solid #333;
  margin-top: 70px;
}
.go-home-link {
    display: inline-block;
    margin-top: 10px;
    color: red;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1em;
  }

  .go-home-link:hover {
    text-decoration: underline;
  }

/* ---------- Animation ---------- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .hero {
    height: 350px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .container {
    padding: 30px 20px;
    margin: 60px 15px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .contact-wrapper {
    flex-direction: column;
  }

  .contact-item {
    flex: 1 1 100%;
  }
}
