:root {
  /* pulled from logo gradient – adjust if necessary */
  --gold-light: #c89f6e;
  --gold-dark: #7a5d2b;
  --text-dark: #212121;
  --text-light: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}

body {
  background: #f5f5f5;
  color: var(--text-dark);
  line-height: 1.6;
}

/* ----------  HERO  ---------- */
header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  padding: 2rem 1.5rem;
  background-image: url("paradiseBg.gif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-light);
  z-index: 0;
  overflow: hidden;
}
  header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3); 
    z-index: 1;
  }

  header > * {
    position: relative;
    z-index: 2; /* make sure text/content appears above overlay */
  }
.logo {
  width: 250px;
  height: auto;
  background-color : white;
  border-radius : 50%;
  margin-bottom: 1.75rem;
  /* Transparent PNG/SVG ensures no white circle */
}

h1 {
  font-size: 2.4rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

p.sub-headline {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.cta-btn {
  display: inline-block;
  background: #fff;
  color: var(--gold-dark);
  padding: 0.9rem 2.2rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cta-btn:hover {
  background: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

/* ----------  ABOUT  ---------- */
section.about {
  max-width: 900px;
  margin: -4rem auto 4rem;
  background: #fff;
  border-radius: 10px;
  padding: 3rem 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

section.about h2 {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--gold-dark);
}

section.about p {
  text-align: center;
  max-width: 730px;
  margin: 0 auto;
  font-size: 1.05rem;
  opacity: 0.9;
}

/* ----------  PRICE LIST  ---------- */
section.prices {
  max-width: 900px;
  margin: 4rem auto;
  background: #fff;
  border-radius: 10px;
  padding: 3rem 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

section.prices h2 {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 2rem;
  color: var(--gold-dark);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e5e5e5;
  font-size: 1rem;
}
.price-item:last-child {
  border-bottom: none;
}
.price-item span:first-child {
  font-weight: 500;
}
.price-item span:last-child {
  font-weight: 600;
  color: var(--gold-dark);
}

/* ----------  INSTAGRAM FEED  ---------- */
section.instagram {
    max-width: 900px;
    margin: 2rem auto;
    background: #fff;
    border-radius: 10px;
    padding: 2rem 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

section.instagram h2 {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 2rem;
  color: var(--gold-dark);
}

.insta-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.insta-wrapper iframe {
  width: 100%;
  border: none;
  overflow: hidden;
  
}

.impressum-content{
  max-width: 900px;
  margin: 4rem auto;
  background: #fff;
  border-radius: 10px;
  padding: 3rem 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* ----------  FOOTER  ---------- */
footer {
  background: var(--gold-dark);
  color: var(--text-light);
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.9rem;
}

.social-links a {
  margin: 0 0.5rem;
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
}
.social-links a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
}

@media (max-width: 600px) {
  section.about p {
    font-size: 1rem;
    text-align: left;
  }

  
}

