/* ========================= */
/* RESET */
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

body {
   font-family: Arial, sans-serif;
   background: #e9e5dd;
   color: #111;
}




.hero{
  background:url("Assets/pictures/palme\ 2.jpg") center/cover no-repeat;

    /* Parallax */
    background-attachment:fixed;
    background-position:center;
    background-size:cover;
}






/* SPLIT SECTION */
.split-section {
   display: flex;
   padding: 100px 10%;
   gap: 60px;
   align-items: center;
}

.split-img {
   flex: 1;
   height: 400px;
   background: url("Assets/pictures/schatten.jpg") center/cover no-repeat;
   clip-path: ellipse(50% 50%);
}








/* TRAVEL GRID */
.travel-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin:100px 10%;
}
.grid-item{
height:200px;
border-radius:15px;

transition:0.4s;
}
.grid-item:hover{
transform:scale(1.05);
}

.grid-item{
height:200px;
background-size:cover;
background-position:center;
}

/* einzelne Bilder */
.grid-item:nth-child(1){
background-image:url("Assets/pictures/matcha\ best.jpg");
}

.grid-item:nth-child(2){
background-image:url("Assets/pictures/Bildkomposition.jpg");
}

.grid-item:nth-child(3){
background-image:url("Assets/pictures/Donau\ Evening.jpg");
}

.grid-item:nth-child(4){
background-image:url("Assets/pictures/Spaghetti.jpg");
}

.grid-item:nth-child(5){
background-image:url("Assets/pictures/Brandytop.jpg");
}

.grid-item:nth-child(6){
background-image:url("Assets/pictures/Straße\ in\ Sardinien.jpg");


}

/* ========================= */
/* AESTHETIC TABLE */
/* ========================= */

.table-section {
    margin: 120px 10%;
    text-align: center;
}

.table-title {
    font-size:46px;
font-weight:500;
line-height:1.2;
margin-bottom:20px;
font-family:'Playfair Display', serif;
font-style: italic;
}

/* Container zentriert */
.table-container {
    display: flex;
    justify-content: center;
}

/* Tabelle */
.aesthetic-table {
    width: 70%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Zellen */
.aesthetic-table td {
    padding: 18px 25px;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

/* linke Spalte */
.aesthetic-table td:first-child {
    font-weight: bold;
    color: #555;
    width: 40%;
}

/* rechte Spalte */
.aesthetic-table td:last-child {
    color: #333;
}

/* Linien */
.aesthetic-table tr:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Hover Effekt (Pinterest Style ✨) */
.aesthetic-table tr:hover {
    background: rgba(255,255,255,0.9);
    transform: scale(1.01);
}

/* sanfte Animation beim Laden */
.aesthetic-table {
    opacity: 0;
    transform: translateY(40px);
    animation: tableFade 1.5s ease forwards;
}

@keyframes tableFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   TABLET (max 992px)
========================= */
@media (max-width: 992px) {

  .hero {
    background-attachment: scroll;
    height: 60vh;
  }
  .hero-title{
    font-size:50px;
letter-spacing:3px;
  }

  /* SPLIT SECTION */
  .split-section {
    flex-direction: column;
    padding: 80px 8%;
    gap: 40px;
  }

  .split-img {
    width: 100%;
    height: 350px;
  }

  /* TRAVEL GRID */
  .travel-grid {
    grid-template-columns: repeat(2, 1fr);
    margin: 80px 8%;
  }

  /* TABLE */
  .aesthetic-table {
    width: 90%;
  }

  .table-title {
    font-size: 38px;
  }
}


/* =========================
   MOBILE (max 600px)
========================= */
@media (max-width: 600px) {

  /* SPLIT SECTION */
  .split-section {
    padding: 60px 6%;
    gap: 30px;
  }

  .split-img {
    height: 260px;
    clip-path: ellipse(60% 45%);
  }

  /* TRAVEL GRID */
  .travel-grid {
    grid-template-columns: 1fr;
    margin: 60px 6%;
    gap: 20px;
  }

  .grid-item {
    height: 180px;
  }

  /* TABLE */
  .table-section {
    margin: 80px 6%;
  }

  .aesthetic-table {
    width: 100%;
  }

  .aesthetic-table td {
    padding: 14px 16px;
    font-size: 14px;
  }

  .table-title {
    font-size: 30px;
  }
}