
body {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  background-color: #f7f3ec;
  color: #3b3a30;
  line-height: 1.6;}

header {
  background-color: #fff;
  border-bottom: 1px solid #ddd5c9;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #7b5e3c;
  font-weight: 700;}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;}

.nav-links a {
  text-decoration: none;
  color: #7b5e3c;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;}

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


.hero {
  position: relative;
  height: 60vh;
  overflow: hidden;}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;   
  object-position: center;
  display: block;}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #f2e8d5;
  text-shadow: 0 0 10px rgba(0,0,0,0.5);
  padding: 0 1rem;}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  margin: 0;
  font-weight: 700;}

.hero-text p {
  font-size: 1.3rem;
  margin-top: 0.5rem;}
  
#siena-hero {
    background: rgba(42, 72, 38, 0.5);
    padding: 40px 60px;
    border-radius: 10px;          
    color: #f2e8d5;
    text-align: center;}

#kultur-hero {
    background: rgba(42, 72, 38, 0.5); 
    padding: 40px 60px;
    border-radius: 10px;          
    color: #f2e8d5;
    text-align: center;}

main {
  max-width: 1000px;
  margin: 3rem auto 4rem auto;
  padding: 0 1rem;}

.content-section {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 5rem;
  flex-wrap: wrap;}

.content-section.reverse {
  flex-direction: row-reverse;}

.text {
  flex: 1 1 400px;}

.text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: #7b5e3c;
  margin-bottom: 1rem;
  font-weight: 700;}

.text p {
  font-size: 1.1rem;
  color: #4a4a3d;}

.image {
  flex: 1 1 400px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(123,94,60,0.25);}

.image img {
  width: 100%;
  display: block;
  height: auto;
  object-fit: cover;
  border-radius: 6px;}
  


footer {
  text-align: center;
  padding: 1.5rem 1rem;
  background-color: #e6dece;
  color: #7b5e3c;
  font-size: 0.9rem;
  font-family: 'Raleway', sans-serif;}


@media (max-width: 1000px) {
  main {
    padding: 0 1.5em;
  }

  .hero-text h1 {
    font-size: 3em;
  }
}


@media (max-width: 768px) {


  .topbar {
    flex-direction: column;
    gap: 0.8em;
    text-align: center;}

  .nav-links {
    flex-wrap: wrap;
    gap: 1em;
    justify-content: center;}

  .hero {
    height: 50vh;}

  .hero-text h1 {
    font-size: 2.4em;}

  .hero-text p {
    font-size: 1.1em;}


  .content-section {
    flex-direction: column;      
    gap: 2em;}

  .content-section .text {
    text-align: center;}

  .text, .image {
    flex: 1 1 100%;
    max-width: 100%;}

  .text h2 {
    font-size: 2em;}

  .text p {
    margin: 0 0.5em;}
}


@media (max-width: 500px) {
  header {
    padding: 0.8em 1em;}

  .logo {
    font-size: 1.6em;}

  .nav-links {
    gap: 0.6em;}

  .nav-links a {
    font-size: 0.95em;}

  .hero {
    height: 45vh;}

  .hero-text h1 {
    font-size: 1.9em;}

  .hero-text p {
    font-size: 1em;}

  main {
    margin-top: 2em;}

  .content-section .text {
    text-align: center;}

  .text h2 {
    font-size: 1.8em;}

  .text p {
    font-size: 1em;
    margin: 0 0.5em;}
}


