/* =========================
   RESET
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Montserrat',sans-serif;
  background:#f7f7f7;
  color:#222;
}


/* =========================
   HEADER
========================= */

.header{

  background:#111;

  display:flex;

  justify-content:space-between;

  align-items:center;

  padding:20px 50px;

  position:sticky;

  top:0;

  z-index:1000;
}


/* LOGO */

.logo{

  display:flex;

  align-items:center;

  gap:15px;
}

.logo img{

  width:70px;
  border-radius: 10px;

  height:auto;
}

.logo span{

  color:#f4c542;

  font-size:34px;

  font-weight:800;

  letter-spacing:2px;
}


/* =========================
   NAVIGATION
========================= */

nav{

  display:flex;

  gap:30px;
}

nav a{

  color:white;

  text-decoration:none;

  font-weight:600;

  transition:0.3s;
}

nav a:hover{

  color:#f4c542;
}



/* =========================
   HERO
========================= */

.hero{

  position:relative;

  height:90vh;

  overflow:hidden;

  background:

  linear-gradient(
  rgba(0,0,0,0.55),
  rgba(0,0,0,0.55)
  ),

  url("bilder/toro-hero.jpeg");

  background-size:cover;

  background-position:center;

  display:flex;

  justify-content:center;

  align-items:center;

  text-align:center;

  padding:20px;
}


/* HERO SHOP IMAGE */


.hero-shop{

  position:absolute;

  right:40px;

  bottom:20px;

  width:280px;

  border-radius:25px;

  box-shadow:
  0 15px 40px rgba(0,0,0,0.45);

  opacity:0.92;

  z-index:1;
}

.back-arrow{
    position: fixed;
    bottom: 20px;
    right: 20px;

    width: 50px;
    height: 50px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: rgba(216,167,167,0.9);
    color: #red;

    text-decoration: none;
    font-size: 1.8rem;
    font-weight: bold;

    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);

    z-index: 1000;

    transition: transform 0.3s ease;
}

.back-arrow:hover{
    transform: translateY(-3px);
}

















/* OVERLAY */

.overlay{

  position:relative;

  z-index:2;
}

.overlay h1{

  color:#f4c542;

  font-size:80px;

  margin-bottom:20px;

  text-shadow:
  0 4px 15px rgba(0,0,0,0.7);
}

.overlay p{

  color:white;

  font-size:32px;

  font-weight:700;

  line-height:1.6;

  text-shadow:
  0 2px 10px rgba(0,0,0,0.8);
}


/* =========================
   BUTTON
========================= */

.btn{

  display:inline-block;

  margin-top:30px;

  padding:15px 35px;

  background:#c62828;

  color:white;

  text-decoration:none;

  border-radius:40px;

  font-weight:700;

  transition:0.3s;
}

.btn:hover{

  background:#a51f1f;

  transform:translateY(-2px);
}


/* =========================
   CATEGORIES
========================= */

.categories{

  background:white;

  padding:70px 50px;

  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(250px,1fr));

  gap:35px;

  position:relative;

  z-index:2;
}


/* CARD */

.card{

  background:#fffdf9;

  border-radius:22px;

  overflow:hidden;

  text-decoration:none;

  color:#222;

  display:block;

  transform:translateY(-4px);

  box-shadow:
  0 12px 28px rgba(0,0,0,0.14);

  transition:
  transform 0.3s ease,
  box-shadow 0.4s ease;
}


/* =========================
   LANGUAGE SWITCH
========================= */

.lang-switch{

  display:flex;

  justify-content:flex-end;

  align-items:center;

  gap:12px;

  padding:12px 30px;

  background:#111;
}


/* FLAGGEN */

.lang-switch img{

  width:34px;

  height:34px;

  object-fit:cover;

  border-radius:50%;

  transition:0.3s;

  cursor:pointer;

  box-shadow:
  0 5px 15px rgba(0,0,0,0.25);
}


/* HOVER */

.lang-switch img:hover{

  transform:scale(1.08);
}


/* MOBILE */

@media(max-width:768px){

.lang-switch{

  justify-content:center;

  padding:10px;
}

}

/* HOVER */

.card:hover{

  transform:
  translateY(-12px)
  scale(1.02);

  box-shadow:
  0 22px 45px rgba(0,0,0,0.22);
}


/* IMAGE */

.card img{

  width:100%;

  height:240px;

  object-fit:cover;

  display:block;
}


/* TITLE */

.card h2{

  text-align:center;

  padding:20px;

  font-size:24px;

  color:#222;
}


/* =========================
   ABOUT SECTION
========================= */

.about-section{

  padding:100px 50px;

  background:#111;

  color:white;

  text-align:center;
}

.about-image{

  width:100%;

  max-width:900px;

  border-radius:25px;

  margin-bottom:40px;

  box-shadow:
  0 20px 45px rgba(0,0,0,0.35);
}

.about-section h2{

  color:#f4c542;

  font-size:50px;

  margin-bottom:25px;
}

.about-section p{

  max-width:900px;

  margin:auto;

  font-size:22px;

  line-height:1.8;
}


/* =========================
   CONTACT SECTION
========================= */

.contact-section{

  padding:80px 50px;

  background:#181818;
}

.contact-grid{

  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(280px,1fr));

  gap:35px;
}


/* CONTACT CARDS */

.contact-card{

  background:#111;

  color:white;

  border-radius:24px;

  padding:40px 30px;

  box-shadow:
  0 10px 30px rgba(0,0,0,0.30);

  transition:
  transform 0.3s ease,
  box-shadow 0.3s ease;
}

.contact-card:hover{

  transform:translateY(-8px);

  box-shadow:
  0 18px 40px rgba(0,0,0,0.45);
}

.contact-card h2{

  color:#f4c542;

  margin-bottom:25px;

  font-size:28px;
}

.contact-card p{

  font-size:18px;

  line-height:1.8;
}

.contact-card a{

  color:#f4c542;

  text-decoration:none;

  font-weight:600;
}


/* BUSINESS CARD */

.business-card{

  width:100%;

  border-radius:20px;

  transform:rotate(-2deg);

  box-shadow:
  0 15px 35px rgba(0,0,0,0.35);

  transition:
  transform 0.4s ease,
  box-shadow 0.4s ease;
}

.business-card:hover{

  transform:
  rotate(0deg)
  translateY(-10px)
  scale(1.02);

  box-shadow:
  0 25px 50px rgba(0,0,0,0.45);
}


/* =========================
   MAP
========================= */

.map-section{

  padding:
  0 50px 80px;

  background:#181818;
}

.map-box{

  overflow:hidden;

  border-radius:25px;

  box-shadow:
  0 8px 25px rgba(0,0,0,0.25);
}

.map-box iframe{

  width:100%;

  height:450px;

  border:none;
}


/* =========================
   FOOTER
========================= */

footer{

  background:#111;

  color:white;

  text-align:center;

  padding:35px;
}


/* SOCIALS */

.socials{

  margin-top:20px;
}

.socials a{

  color:white;

  font-size:24px;

  margin:0 12px;

  transition:0.3s;
}

.socials a:hover{

  color:#f4c542;
}


/* =========================
   MOBILE
========================= */

@media(max-width:768px){

  .header{

    flex-direction:column;

    gap:20px;

    padding:20px;
  }

  nav{

    flex-direction:column;

    text-align:center;

    gap:15px;
  }

  .logo span{

    font-size:28px;
  }

  .hero{

    height:75vh;
  }

  .overlay h1{

    font-size:48px;
  }

  .overlay p{

    font-size:22px;
  }

  .hero-shop{

    position:absolute;

    width:260px;

    right:0;
  }

  .categories{

    grid-template-columns:1fr;

    padding:40px 20px;

    gap:25px;
  }

  .card{

    transform:none;
  }

  .card img{

    height:220px;
  }

  .card h2{

    font-size:22px;
  }

  .about-section{

    padding:70px 20px;
  }

  .about-section h2{

    font-size:38px;
  }

  .about-section p{

    font-size:20px;
  }

  .contact-section,
  .map-section{

    padding:50px 20px;
  }

}
/* =========================
   BURGER MENU
========================= */

.burger{

  display:none;

  font-size:30px;

  color:white;

  cursor:pointer;
}


/* MOBILE */

@media(max-width:768px){

  .burger{

    display:block;
  }

  nav{

    display:none;

    flex-direction:column;

    position:absolute;

    top:90px;

    right:20px;

    background: rgba(15,15,15,0.82);

    padding:25px;

    border-radius:20px;

    box-shadow:
    0 15px 35px rgba(0,0,0,0.35);
  }

  nav.active{

    display:flex;
  }

}



/* =========================
   ABOUT HERO
========================= */

.about-hero{

  height:70vh;

  background:

  linear-gradient(
  rgba(0,0,0,0.55),
  rgba(0,0,0,0.55)
  ),

  url("bilder/toro-hero.jpeg");

  background-size:cover;

  background-position:center;

  display:flex;

  justify-content:center;

  align-items:center;

  text-align:center;

  padding:20px;
}

.about-hero .overlay h1{

  color:#f4c542;

  font-size:70px;

  margin-bottom:20px;

  text-shadow:
  0 5px 20px rgba(0,0,0,0.7);
}

.about-hero .overlay p{

  color:white;

  font-size:28px;

  font-weight:600;

  line-height:1.6;

  text-shadow:
  0 3px 12px rgba(0,0,0,0.8);
}







/* =========================
   STORY SECTION
========================= */

.story-section{

  padding:100px 50px;

  background:#111;

  color:white;
}

.story-grid{

  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(320px,1fr));

  gap:50px;

  align-items:center;
}


/* IMAGE */

.story-image img{

  width:100%;

  border-radius:28px;

  box-shadow:
  0 20px 45px rgba(0,0,0,0.35);
}


/* TEXT */

.story-text h2{

  color:#f4c542;

  font-size:46px;

  margin-bottom:30px;
}

.story-text p{

  font-size:21px;

  line-height:1.9;
}



/* =========================
   SPECIAL SECTION
========================= */

.special-section{

  padding:100px 50px;

  background:#181818;

  text-align:center;
}

.special-section h2{

  color:#f4c542;

  font-size:52px;

  margin-bottom:60px;
}


/* GRID */

.special-grid{

  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(250px,1fr));

  gap:35px;
}


/* CARD */

.special-card{

  background:#111;

  border-radius:25px;

  overflow:hidden;

  box-shadow:
  0 15px 35px rgba(0,0,0,0.30);

  transition:
  transform 0.4s ease,
  box-shadow 0.4s ease;
}

.special-card:hover{

  transform:
  translateY(-10px);

  box-shadow:
  0 25px 45px rgba(0,0,0,0.45);
}


/* IMAGE */

.special-card img{

  width:100%;

  height:250px;

  object-fit:cover;
}


/* TITLE */

.special-card h3{

  color:white;

  padding:22px;

  font-size:28px;
}



/* =========================
   ATMOSPHERE SECTION
========================= */

.atmosphere-section{

  height:60vh;

  background:

  linear-gradient(
  rgba(0,0,0,0.55),
  rgba(0,0,0,0.55)
  ),

  url("bilder/toro-hero.jpeg");

  background-size:cover;

  background-position:center;

  display:flex;

  justify-content:center;

  align-items:center;

  text-align:center;

  padding:20px;
}

.atmosphere-section h2{

  color:#f4c542;

  font-size:54px;

  margin-bottom:25px;

  text-shadow:
  0 5px 20px rgba(0,0,0,0.8);
}

.atmosphere-section p{

  color:white;

  font-size:24px;

  line-height:1.7;

  max-width:850px;

  text-shadow:
  0 3px 10px rgba(0,0,0,0.8);
}



/* =========================
   CTA SECTION
========================= */

.cta-section{

  padding:100px 20px;

  background:#111;

  text-align:center;

  color:white;
}

.cta-section h2{

  color:#f4c542;

  font-size:52px;

  margin-bottom:25px;
}

.cta-section p{

  font-size:24px;

  margin-bottom:40px;
}



/* =========================
   MOBILE
========================= */

@media(max-width:768px){

  .about-hero{

    height:60vh;
  }

  .about-hero .overlay h1{

    font-size:44px;
  }

  .about-hero .overlay p{

    font-size:22px;
  }

  .story-section{

    padding:70px 20px;
  }

  .story-text h2{

    font-size:36px;
  }

  .story-text p{

    font-size:19px;
  }

  .special-section{

    padding:70px 20px;
  }

  .special-section h2{

    font-size:40px;
  }

  .special-card h3{

    font-size:24px;
  }

  .atmosphere-section{

    height:50vh;
  }

  .atmosphere-section h2{

    font-size:38px;
  }

  .atmosphere-section p{

    font-size:20px;
  }

  .cta-section{

    padding:70px 20px;
  }

  .cta-section h2{

    font-size:38px;
  }

  .cta-section p{

    font-size:20px;
  }

}