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

html, body {
    overflow-x: clip;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
}

/*=========================
    SCROLL REVEAL -ANIMAATIOT
==========================*/

.section3 h5,
.section3 h2,
.card-container .a,
.card-container .b,
.card-container .c,
.card-container .d,
.section4-label,
.section4-title,
.section4-sub,
.section4-btns {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.6s ease;
}

.section3 h5.visible,
.section3 h2.visible,
.card-container .a.visible,
.card-container .b.visible,
.card-container .c.visible,
.card-container .d.visible,
.section4-label.visible,
.section4-title.visible,
.section4-sub.visible,
.section4-btns.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .section3 h5,
    .section3 h2,
    .card-container .a,
    .card-container .b,
    .card-container .c,
    .card-container .d,
    .section4-label,
    .section4-title,
    .section4-sub,
    .section4-btns {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media  (max-width:800px) {
    

/*=========================
    MOBILE-FIRST
==========================*/

body{
    flex-direction: column;
    display: flex;
    background: #ffffff;
    min-height: 100vh;
}


.show-nav {
  position: fixed;
  top: 0;
  left: 10px;
  right: 10px;
  background: linear-gradient(160deg, #1a1008 0%, #2a1c0a 100%);
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 89;
  border-radius: 0 0 28px 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  padding-bottom: 18px;
  transform: translateY(-100%);
  transition: transform 0.42s cubic-bezier(0.32, 0.72, 0, 1);
  overflow: hidden;
}

.show-nav::after {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  margin: 14px auto 0;
}

.show-nav a {
  color: white;
  text-decoration: none;
}

.show-nav.open {
  transform: translateY(72px);
}

.show-nav span {
  display: block;
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.show-nav span a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  font-size: 18px;
  font-family: "Archivo Black", sans-serif;
  color: rgba(255,255,255,0.92);
  transition: background 0.18s ease, color 0.18s ease;
}

.show-nav span a::after {
  content: '›';
  font-size: 22px;
  opacity: 0.4;
}

.show-nav span a:active {
  background: rgba(245,168,0,0.12);
  color: #F5A800;
}

.puh-mob {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 14px 16px 0;
  padding: 13px 20px;
  background: #F5A800;
  border-radius: 14px;
  font-size: 17px;
  font-family: "Archivo Black", sans-serif;
  color: #1a1008;
  font-weight: 900;
  text-decoration: none;
  transition: background 0.18s ease;
}

.puh-mob:active {
  background: #e09700;
}

.overlay{
    position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 88;
}

.overlay.open {
  opacity: 1;
  pointer-events: all;
}

/*============
    NAVBAR
==============*/

.nav-holder{
    max-height: 120px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    display: flex;
}

.nav-left-group{
    display: none;
}

.nav-holder2{
    display: none;
}

.navbar{
    position: fixed;
    max-height: 80px;
    width: 100%;
    z-index: 10;
    align-items: center;
    justify-content: center;
    display: flex;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
    padding: 25px;
    border-bottom: none;
    transition: background 0.25s ease;
}

.navbar.scrolled{
    background: black;
}

.logo{
    margin-top: 5px;
    border-radius: 50%;
    position: absolute;
    width: 60px;
    height: 60px;
}

.logo-desktop{
    display: none;
}

.hamburger{
    font-weight: bold;
    color: white;
    border: none;
    font-size: 40px;
    background: none;
}

.cart{
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Inter", sans-serif;
    border: none;
    background: none;
}

.cart-pic{
    width: 30px;
    height: 30px;
    margin-top: 3px;
    color: #fff;
    display: block;
    transition: transform 0.2s ease, color 0.2s ease;
}

.cart:hover .cart-pic{
    color: #F5A800;
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #F5A800;
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.85rem;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    pointer-events: none;
}

.viiva1{
    border: none;
    height: 2px;
    width: 100%;
    background: orange;
}


/*=====================
    SECTION1    
=======================*/

.section1{
    padding: 15px;
    color: white;
    flex-direction: column;
    background-position: center;
    background-size: cover;
    width: 100%;
   background-image:
    linear-gradient(180deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.45) 40%, rgba(0,0,0,0.85) 100%),
    url(pexels-cesar-o-neill-26650613-35628174.jpg);
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
    height: auto;
}

.hero1{
    line-height: 1;
    margin-top: 100px;
    font-size: 60px;
    font-weight: bold;
     font-family: "Bebas Neue", sans-serif;
}

.hero1 span{
    color: orange;
}

.hero2{
    font-size: 19px;
    margin-top: 30px;
    color: #adadad;
    font-weight: 600;
     font-family: "Inter", sans-serif;
}

.btn-container{
    margin-top: 40px;
}

.menu-btn{
    font-family: "Inter", sans-serif;
   background: #F5A800;
  color: #fff;
  padding: .85rem 2.2rem;
  border-radius: 50px;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(245,168,0,.4);
  transition: transform .2s, background .2s;
}

.menu-btn:hover{
    background: #D48A00;
  transform: translateY(-2px);
}

.tilaa-btn{
    margin-top: 5px;
    font-family: "Inter", sans-serif;
   background: transparent;
  color: #fff;
  padding: .85rem 2.2rem;
  border-radius: 50px;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,.5);
  cursor: pointer;
  transition: border-color .2s, color .2s;
}

.tilaa-btn:hover{
    border-color: #F5A800;
  color: #F5A800;
}

/*====================
    SECTION2
=====================*/

.section2{
   margin-top: 25px;
   padding: 0;
    color: white;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    height: auto;
}

.card1,
.card2,
.card3{
    font-family: 'Inter', sans-serif;
    width: 90%;
    margin-top: 15px;
      background: rgba(255,255,255,.14);
  border: 1.5px solid rgba(245,168,0,.55);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  text-align: center;
}

.section2 h1{
      font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: #F5A800;
  line-height: 1;
}

.section2 p{
      font-size: .75rem;
  color: rgba(255,255,255,.6);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: .2rem;
}


/*===================
    HIHNA   
====================*/

.hihna{
    height: 60px;
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
     overflow: hidden;
  padding: 1rem 0;
  white-space: nowrap;
  background: #F5A800;
  box-shadow: inset 0 10px 14px -10px rgba(0,0,0,.4), inset 0 -10px 14px -10px rgba(0,0,0,.3);
}

.hihna-inside{
    align-items: center;
    justify-content: center;
     display: inline-flex;
  animation: marquee 9s linear infinite;
}

.hihna span{
     font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 3px;
  padding: 0 2.5rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hero-gap{
    width: 100%;
    height: 50px;
    background: #1a1008;
}

/*===================
    SECTION3
====================*/

.section3{
    background: #FFF8EC;
   padding: 20px 15px 15px;
    color: black;
    flex-direction: column;
    background-position: center;
    background-size: cover;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
    height: auto;
    position: relative;
}

.section3::before{
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: #FFF8EC;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -6px 14px rgba(0,0,0,0.15);
    pointer-events: none;
}

.section3 h5{
    padding-top: 25px;
    padding-bottom: 80px;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 1.5rem;
    color: orange;
    font-family: 'Bebas Neue', sans-serif;
}

.section3 h2{
    margin-top: -80px;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 3rem;
    color: black;
    font-family: 'Bebas Neue', sans-serif;
}

.card-container{
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    display: grid;
     grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.card-container
.a,
.b,
.c,
.d {
    height: 250px;
    width: 95%;
    border-radius: 20px;
    overflow: hidden;
}

.card-container
.a,
.b,
.c,
.d p{
    padding-left: 25px;
    padding-top: 180px;
    font-size: 2.5rem;
    font-family: 'Bebas Neue', sans-serif;
    z-index: 5;
  color: white;
}

.a{
    margin-top: 20px;
    background-size: cover;
    background-position: center;
    background-image:  linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), /* Tummennus (0.6 = 60% peittÃ¤vyys) */
    url(kuva1.jpg);
}

.b{
     background-size: cover;
    background-position: center;
    background-image:  linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), /* Tummennus (0.6 = 60% peittÃ¤vyys) */
    url(kuva2.jpg);
}

.c{
     background-size: cover;
    background-position: center;
    background-image:  linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), /* Tummennus (0.6 = 60% peittÃ¤vyys) */
    url(kuva3.jpg);    
}

.d{
     background-size: cover;
    background-position: center;
    background-image:  linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), /* Tummennus (0.6 = 60% peittÃ¤vyys) */
    url(kuva4.jpg);
}

/*=====================
    SECTION4
=======================*/

.section4 {
    background: linear-gradient(135deg, #1a0a02 0%, #0a0503 60%, #1a0800 100%);
    padding: 70px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    width: 100%;
}

.section4::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(245,168,0,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.section4-inner {
    position: relative;
    z-index: 1;
    max-width: 100%;
}

.section4-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #F5A800;
    font-weight: 700;
    margin-bottom: 16px;
}

.section4-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    line-height: 1;
    color: #fff;
    margin-bottom: 20px;
}

.section4-title span {
    color: #F5A800;
}

.section4-sub {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 40px;
}

.section4-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.s4-btn-primary {
    background: #F5A800;
    color: #1a1008;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 15px;
    padding: 14px 36px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.s4-btn-primary:hover {
    background: #e09900;
    transform: translateY(-2px);
}

.s4-btn-secondary {
    background: transparent;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 36px;
    border-radius: 10px;
    border: 2px solid rgba(255,255,255,0.2);
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s;
}

.s4-btn-secondary:hover {
    border-color: #F5A800;
    color: #F5A800;
    transform: translateY(-2px);
}


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

footer{
      background: linear-gradient(135deg, #0a0503 0%, #150a02 50%, #0a0303 100%);
   padding: 25px;
    color: black;
    flex-direction: column;
    background-position: center;
    background-size: cover;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
    height: auto;
}

.logo2{
    border-radius: 50%;
    height: auto;
    width: 20%;
}

.low-hero{
    font-size: 15px;
    margin-top: 30px;
    color: #adadad;
    font-weight: 600;
     font-family: "Inter", sans-serif;
}




.auk{
     font-size: 20px;
    margin-top: 30px;
    color: white;
    font-weight: 600;
     font-family: "Inter", sans-serif;
}

.auk2{
    padding: 5px;
     font-size: 18px;
    margin-top: 30px;
    color: #adadad;
    font-weight: 600;
     font-family: "Inter", sans-serif;
}

}

.footer-new {
    background: linear-gradient(135deg, #0a0503 0%, #1a0a02 100%);
    border-top: 3px solid #F5A800;
    padding: 60px 40px 0;
    font-family: "Inter", sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 50px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    border-radius: 50%;
    width: 90px;
    height: 90px;
    object-fit: cover;
    margin-bottom: 16px;
    border: 2px solid #F5A800;
}

.footer-tagline {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.footer-heading {
    color: #F5A800;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 16px;
    font-weight: 700;
}

.footer-hours {
    border-collapse: collapse;
    color: #ccc;
    font-size: 14px;
}

.footer-hours td {
    padding: 4px 20px 4px 0;
}

.footer-hours td:last-child {
    color: #fff;
    font-weight: 700;
}

.footer-contact {
    color: #ccc;
    font-size: 14px;
    margin: 0 0 10px;
}

.footer-contact a {
    color: #F5A800;
    text-decoration: none;
    font-weight: 700;
}

.footer-order-btn {
    margin-top: 16px;
    background: #F5A800;
    color: #1a1008;
    font-weight: 800;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
}

.footer-order-btn:hover {
    background: #e09900;
}

.footer-bottom {
    border-top: 1px solid #2a1a08;
    text-align: center;
    padding: 18px 0;
}

.footer-bottom p {
    color: #555;
    font-size: 12px;
    margin: 0;
}

@media (max-width: 700px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-new {
        padding: 40px 24px 0;
    }
}













/*==================
    LAPTOP
====================*/


@media screen and (min-width: 800px)   {


    body{
        overflow-x: clip;
    }

    .show-nav{
        display: none;
    }

    /*============
    NAVBAR
    ==============*/

.nav-holder{
    max-height: 120px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    display: flex;
}

.nav-left-group{
    display: flex;
    align-items: center;
    gap: 50px;
}

.nav-holder2{
    display: flex;
    justify-content: flex-start;
    font-weight: bold;
    font-family: "Bebas Neue", sans-serif;
}

.nav-holder2 a{
    font-size: 22px;
    letter-spacing: 1px;
    padding: 10px 24px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    transition: color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.nav-holder2 a:hover{
    color: #F5A800;
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}


.navbar{
    position: absolute;
    max-height: 110px;
    width: 100%;
    z-index: 10;
    align-items: center;
    justify-content: center;
    display: flex;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
    padding: 25px;
    border-bottom: none;
}

.logo{
    display: none;
}

.logo-desktop{
    margin-left: 90px;
    border-radius: 50%;
    width: 70px;
    height: 70px;
}

.hamburger{
    display: none;
}

.cart{
    position: relative;
    cursor: pointer;
    margin-right: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Inter", sans-serif;
    border: none;
    background: none;
}

.cart-pic{
    width: 30px;
    height: 30px;
    color: #fff;
    display: block;
    transition: transform 0.2s ease, color 0.2s ease;
}

.cart:hover .cart-pic{
    color: #F5A800;
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #F5A800;
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.85rem;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    pointer-events: none;
}

.viiva1{
    border: none;
    height: 2px;
    width: 100%;
    background: orange;
}


/*=====================
    SECTION1    
=======================*/

.section1{
    min-height: 100vh;
    box-sizing: border-box;
    padding: 140px 80px 40px;
    color: white;
    flex-direction: column;
    background-position: center;
    background-size: cover;
    width: 100%;
   background-image:
    linear-gradient(180deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.45) 40%, rgba(0,0,0,0.85) 100%),
    url(pexels-cesar-o-neill-26650613-35628174.jpg);
    justify-content: center;
    align-items: flex-start;
    display: flex;
}

.hero1{
    line-height: 1;
    margin-top: 80px;
    font-size: 90px;
    font-weight: bold;
     font-family: "Bebas Neue", sans-serif;
}

.hero1 span{
    color: orange;
}

.hero2{
    max-width: 70%;
    font-size: 23px;
    margin-top: 12px;
    color: #adadad;
    font-weight: 600;
     font-family: "Inter", sans-serif;
}

.hero-actions-row{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    margin-top: 16px;
}

.btn-container{
    margin-top: 0;
}

.menu-btn{
    font-family: "Inter", sans-serif;
   background: #F5A800;
  color: #fff;
  padding: .95rem 2.5rem;
  border-radius: 50px;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(245,168,0,.4);
  transition: transform .2s, background .2s;
}

.menu-btn:hover{
    background: #D48A00;
  transform: translateY(-2px);
}

.tilaa-btn{
    margin-top: 5px;
    font-family: "Inter", sans-serif;
   background: transparent;
  color: #fff;
  padding: .95rem 2.5rem;
  border-radius: 50px;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,.5);
  cursor: pointer;
  transition: border-color .2s, color .2s;
}

.tilaa-btn:hover{
    border-color: #F5A800;
  color: #F5A800;
}


/*====================
    SECTION2
=====================*/

.section2{
    margin-top: 0;
    z-index: 2;
   padding: 15px;
    color: white;
    flex-direction: row;
    background-position: center;
    background-size: cover;
    width: auto;
    justify-content: flex-end;
    align-items: center;
    display: flex;
    height: auto;
}

.card1,
.card2,
.card3{
    font-family: 'Inter', sans-serif;
    margin-left: 5px;
    width: 170px;
    margin-top: 0;
      background: rgba(255,255,255,.14);
  border: 1.5px solid rgba(245,168,0,.55);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  text-align: center;
}

.section2 h1{
      font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem;
  color: #F5A800;
  line-height: 1;
}

.section2 p{
      font-size: .68rem;
  color: rgba(255,255,255,.6);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-top: .2rem;
}


/*===================
    HIHNA   
====================*/

.hihna{
    height: 100px;
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
     overflow: hidden;
  padding: 2rem 0;
  white-space: nowrap;
  background: #F5A800;
  box-shadow: inset 0 10px 14px -10px rgba(0,0,0,.4), inset 0 -10px 14px -10px rgba(0,0,0,.3);
}

.hihna-inside{
    align-items: center;
    justify-content: center;
     display: inline-flex;
  animation: marquee 9s linear infinite;
}

.hihna span{
     font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 3px;
  padding: 0 2.5rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hero-gap{
    width: 100%;
    height: 60px;
    background: #1a1008;
}

/*===================
    SECTION3
====================*/

.section3{
    background: #FFF8EC;
   padding: 20px 15px 15px;
    color: black;
    flex-direction: column;
    background-position: center;
    background-size: cover;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
    height: auto;
    position: relative;
}

.section3::before{
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: #FFF8EC;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -6px 14px rgba(0,0,0,0.15);
    pointer-events: none;
}

.section3 h5{
    padding-top: 25px;
    padding-bottom: 80px;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 1.5rem;
    color: orange;
    font-family: 'Bebas Neue', sans-serif;
}

.section3 h2{
    margin-top: -80px;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 3rem;
    color: black;
    font-family: 'Bebas Neue', sans-serif;
}

.card-container{
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    display: grid;
     grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.card-container
.a,
.b,
.c,
.d {
    height: 250px;
    width: 95%;
    border-radius: 20px;
    overflow: hidden;
}

.card-container
.a,
.b,
.c,
.d p{
    padding-left: 25px;
    padding-top: 180px;
    font-size: 2.5rem;
    font-family: 'Bebas Neue', sans-serif;
    z-index: 5;
  color: white;
}

.a{
    margin-top: 20px;
    background-size: cover;
    background-position: center;
    background-image:  linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), /* Tummennus (0.6 = 60% peittÃ¤vyys) */
    url(kuva1.jpg);
}

.b{
     background-size: cover;
    background-position: center;
    background-image:  linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), /* Tummennus (0.6 = 60% peittÃ¤vyys) */
    url(kuva2.jpg);
}

.c{
     background-size: cover;
    background-position: center;
    background-image:  linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), /* Tummennus (0.6 = 60% peittÃ¤vyys) */
    url(kuva3.jpg);    
}

.d{
     background-size: cover;
    background-position: center;
    background-image:  linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), /* Tummennus (0.6 = 60% peittÃ¤vyys) */
    url(kuva4.jpg);
}


.a:hover,
.b:hover,
.c:hover,
.d:hover{
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    transform: scale(1.05);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}


/*=====================
    SECTION4
=======================*/

.section4 {
    background: linear-gradient(135deg, #1a0a02 0%, #0a0503 60%, #1a0800 100%);
    padding: 100px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section4::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(245,168,0,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.section4-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.section4-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #F5A800;
    font-weight: 700;
    margin-bottom: 16px;
}

.section4-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5.5rem;
    line-height: 1;
    color: #fff;
    margin-bottom: 20px;
}

.section4-title span {
    color: #F5A800;
}

.section4-sub {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 40px;
}

.section4-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.s4-btn-primary {
    background: #F5A800;
    color: #1a1008;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 15px;
    padding: 14px 36px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.s4-btn-primary:hover {
    background: #e09900;
    transform: translateY(-2px);
}

.s4-btn-secondary {
    background: transparent;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 36px;
    border-radius: 10px;
    border: 2px solid rgba(255,255,255,0.2);
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s;
}

.s4-btn-secondary:hover {
    border-color: #F5A800;
    color: #F5A800;
    transform: translateY(-2px);
}


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

footer{
      background: linear-gradient(135deg, #0a0503 0%, #150a02 50%, #0a0303 100%);
   padding: 25px;
    color: black;
    flex-direction: column;
    background-position: center;
    background-size: cover;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
    height: auto;   
}

.logo2{
    border-radius: 50%;
    height: auto;
    width: 20%;
}

.low-hero{
    font-size: 15px;
    margin-top: 30px;
    color: #adadad;
    font-weight: 600;
     font-family: "Inter", sans-serif;
}




.auk{
     font-size: 20px;
    margin-top: 30px;
    color: white;
    font-weight: 600;
     font-family: "Inter", sans-serif;
}

.auk2{
    padding: 5px;
     font-size: 18px;
    margin-top: 30px;
    color: #adadad;
    font-weight: 600;
     font-family: "Inter", sans-serif;
}
}




@media screen and (min-width: 1800px)  {

    /*===================
        DESKTOP2
        Vain 1800px+ -kohtaiset erot; loput periytyy
        "min-width: 800px" -lohkosta (ei enää kopioitu tänne).
    =====================*/

.nav-holder{
    width: 80%;
}

.nav-holder2 a{
    transition: 0.1s ease;
}

.section1{
    height: calc(100vh - 100px);
    padding: 140px 180px 40px;
}

.hero1{
    margin-top: 0px;
    font-size: 136px;
}

.hero2{
    max-width: 40%;
    font-size: 29px;
    margin-top: 20px;
}

.btn-container{
    margin-top: 25px;
}

.menu-btn{
    padding: 1.2rem 3rem;
    font-size: 1.15rem;
}

.tilaa-btn{
    padding: 1.2rem 3rem;
    font-size: 1.15rem;
}

.logo2{
    height: 100px;
    width: 100px;
}

}
