*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial, sans-serif;
  background: #fff;
}

/* top bar */

.top-bar{
  width:100%;
  height:40px;
  background:#98008f;
  color:white;

  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:0 30px;
  font-size:15px;
  font-weight:bold;
}

.left-info{
  display:flex;
  align-items:center;
  gap:15px;
}

.socials{
  display:flex;
  align-items:center;
  gap:15px;
}

.socials .fa-brands{
  cursor: pointer;
}

/* header */

header{
  width:100%;
  height:80px;
  background: #FFFFE2;

  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:0 30px;
}

/* logo */

.logo img{
  width:120px;
  height:auto;
}

/* menu */

.menu{
  list-style:none;
  display:flex;
  gap:30px;
  align-items:center;
}

.menu .fa-brands{
  cursor: pointer;
}

.menu li{
  position:relative;
}

.menu li a{
  text-decoration:none;
  color:#86007D;
  font-size:19px;
  font-weight:500;

  display:flex;
  align-items:center;
  gap:10px;
  position: relative;
}

.menu > li > a::after {
  content: "";
  width: 0%;
  position: absolute;
  bottom: -5px;
  height: 3px;
  background: #86007D;
  display: block;
  margin: auto;
  transition: width 0.3s ease;
}

.menu > li:hover > a::after {
  width: 100%;
}

.menu li a i {
  padding: 5px;
  cursor: pointer;
}

/* dropdown */

.submenu{
  position:absolute;
  top:100%;
  left:0;

  display:none;
  list-style:none;
  z-index: 100;
}

.submenu li{
  width:170px;
  border:1px solid #86007D;
  background:#FFFFE2;
}

.submenu li a{
  padding:10px;
  font-size:20px;
}

/* hover */

.dropdown:has(i:hover) .submenu,
.submenu:hover {
  display: block;
}

/* languages */

.languages{
  display:flex;
  align-items:center;
  gap:12px;
}

.languages a,
.languages span{
  text-decoration:none;
  color:#86007D;
  font-size:15px;
  font-weight:700;
}

.languages a.lang-active{
  text-decoration:underline;
  text-underline-offset:3px;
}

/* hero */

.hero{
  position:relative;
  width:100%;
  height: 900px;
  background: url("photo 1.png") center/cover no-repeat;
  display:flex;
  justify-content:center;
  align-items:center;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.60);
}

.hero-content{
  position:relative;
  text-align:center;
  color:#FFFFE2;
  z-index:2;
  padding:20px;
}

.hero-content h1{
  font-size:72px;
  font-family: Georgia, serif;
  font-weight:500;
  margin-bottom:25px;
}

.hero-content p{
  font-size:28px;
  line-height:1.6;
  color:#FFFFE2;
  margin-bottom:35px;
}

.hero-btn{
  display:inline-block;
  padding:18px 45px;
  background:#FFFFE2;
  color:#86007D;
  font-size:34px;
  text-decoration:none;
  transition:0.3s;
}

.hero-btn:hover{
  background:#86007D;
  color:#FFFFE2;
}

/* Interior */

.interior-section {
  position: relative;
  padding: 50px 40px;
  background: #fff;
}

.interior-img-wrap {
  width: 85%;
  border: 3px solid #86007D;
  position: relative;
  z-index: 1;
}

.interior-img-wrap img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  display: block;
}

.interior-text-wrap {
  position: absolute;
  bottom: 100px;
  right: 40px;
  width: 500px;
  background: #FFFFE2;
  border: 3px solid #86007D;
  padding: 35px 30px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.interior-text-wrap p {
  font-size: 20px;
  color: #86007D;
  line-height: 1.5;
  font-family: Arial, sans-serif;
}

.interior-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #86007D;
  color: #FFFFE2;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 1px;
  width: fit-content;
  transition: 0.3s;
}

.interior-btn:hover {
  background: #FFFFE2;
  color: #86007D;
  outline: 2px solid #86007D;
}

/* promocja */

.promo-section {
  background: #fff;
  padding: 60px 40px 70px;
  text-align: center;
}

.section-title {
  font-family: Georgia, serif;
  font-size: 52px;
  font-weight: 400;
  color: #86007D;
  margin-bottom: 45px;
}

.promo-cards {
  display: flex;
  gap: 25px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.promo-card {
  flex: 1;
  max-width: 380px;
  border: 9px solid #86007D;
  background: #86007D;
  display: flex;
  flex-direction: column;
  position: relative;
}

.promo-card::before {
  top: -3px;
  left: -3px;
}

.promo-card::after {
  bottom: -3px;
  right: -3px;
}

.card-img-wrap {
  width: 100%;
  height: 550px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.card-img-wrap::before {
  top: 0;
  right: 0;
}

.card-img-wrap::after {
  bottom: 0;
  left: 0;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; 
  transform: scale(1.04); 
  transition: transform 0.4s ease;
}

.promo-card:hover .card-img-wrap img {
  transform: scale(1.08);
}

.card-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  background: #86007D;
}

.card-body h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  font-family: Georgia, serif;
}

.card-body p {
  font-size: 14px;
  color: #fff;
  line-height: 1.4;
  text-align: left;
}

.card-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #FFFFE2;
  color: #86007D;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 1px;
  margin-top: 6px;
  transition: 0.3s;
}

.card-btn:hover {
  background: #86007D;
  color: #FFFFE2;
  outline: 2px solid #FFFFE2; 
}

/* kawa i herbata */

.coffee-section {
  background: #fff;
  padding: 60px 40px 70px;
  text-align: center;
}

.section-title-serif{
  font-family: Georgia, serif;
  font-size:52px;
  font-weight:400;
  color:#86007D;
  margin-bottom:40px;
}

.coffee-content {
  display: flex;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.coffee-half {
  flex: 1;
  position: relative;
}

.coffee-half img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  display: block;
}

.coffee-divider{
  width:5px;
  background:#86007D;
  flex-shrink:0;
  margin:0 0px;
}

.coffee-left {
  display: block;
}

.coffee-right {
  display: block;
}

.coffee-textbox {
  background: #FFFFE2;
  border: 3px solid #86007D;
  padding: 22px 28px;
  font-size: 22px;
  color: #86007D;
  font-weight: 600;
  font-family: Arial, serif;
  line-height: 1.4;
  position: absolute;
  z-index: 5;
  width: 250px;
}

.coffee-textbox-left {
  top: 20px;
  left: -170px;
}

.coffee-textbox-right {
  bottom: 20px;
  right: -170px;
}

/* deserty */

.desserts-section{
  background:#fff;
  padding:60px 40px 70px;
  text-align:center;
}

.desserts-content{
  display:flex;
  align-items:stretch;
  max-width:1200px;
  margin:0 auto;
}

.desserts-text{
  background:#86007D;
  flex:0 0 350px;
  padding:40px 35px;
  text-align:left;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:27px;
}

.desserts-text h3{
  font-family:Georgia, serif;
  font-size:40px;
  font-weight:900;
  color:#FFFFE2;
  line-height:1.25;
  letter-spacing:0.5px;
}

.desserts-text p{
  font-size:20px;
  color:#FFFFE2;
  line-height:1.6;
}

.desserts-img{
  flex:1;
  overflow:hidden;
}

.desserts-img img{
  width:100%;
  height:100%;
  min-height:360px;
  object-fit:cover;
  display:block;
}

/* footer */

.footer{
  background:#86007D;
  color:#fff;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:50px;
  padding:60px 190px 40px;
  flex-wrap:wrap;
}

/* brand */

.footer-brand{
  flex:0 0 320px;
}

.footer-logo{
  margin-bottom:20px;
  line-height:1;
}

.footer-logo img{
  height:60px;
  width:auto;
  display:block;
}

.footer-desc{
  font-size:15px;
  color:#e6c7e4;
  line-height:1.7;
  margin-bottom:24px;
}

.footer-socials{
  display:flex;
  gap:12px;
}

.footer-socials a{
  width:42px;
  height:42px;
  border-radius:50%;
  border:2px solid #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:18px;
  text-decoration:none;
  transition:0.3s;
}

.footer-socials a:hover{
  background:#fff;
  color:#86007D;
}

/* quick links */

.footer-links{
  flex:0 0 180px;
}

.footer-links h4,
.footer-info h4{
  font-size:22px;
  font-weight:700;
  color:#fff;
  margin-bottom:18px;
}

.footer-links ul{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.footer-links ul li{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:16px;
  color:#e6c7e4;
}

.footer-links ul li i{
  font-size:14px;
  color:#e6c7e4;
}

.footer-links ul li a{
  color:#e6c7e4;
  text-decoration:none;
  transition:0.2s;
}

.footer-links ul li a:hover{
  color:#fff;
}

/* info */

.footer-info{
  flex:0 0 260px;
}

.info-list{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-bottom:28px;
}

.info-list li{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:16px;
  color:#e6c7e4;
}

.info-list li i{
  font-size:18px;
  color:#fff;
  width:20px;
  text-align:center;
}

.hours-title{
  margin-bottom:10px !important;
}

.hours-text{
  font-size:16px;
  color:#e6c7e4;
}

/* footer bottom */

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.35);
  text-align:center;
  padding:18px 30px;
  font-size:14px;
  color:#e6c7e4;
}

/* nav active link */

.nav-active {
  text-decoration: none !important;
}

/* wydarzenia */

.events-page{
  background:#fff;
  padding:50px 40px 70px;
  max-width:1100px;
  margin:0 auto;
}

.events-page-title{
  font-family:Georgia, serif;
  font-size:52px;
  font-weight:400;
  color:#86007D;
  text-align:center;
  margin-bottom:50px;
}

.event-block{
  margin-bottom:55px;
  position:relative;
}

.event-visual{
  position:relative;
  z-index:2;
  display:flex;
  align-items:stretch;
  width:100%;
  min-height:150px;
}

.event-visual.ev-reversed{
  flex-direction:row-reverse;
}

.event-visual:not(.ev-reversed) .event-img-wrap{
  justify-content:flex-end;
  padding-right:70px;
}

.event-visual.ev-reversed .event-img-wrap{
  justify-content:flex-start;
  padding-left:70px;
}

.event-img-wrap{
  width:100%;
  display:flex;
  overflow:hidden;
}

.event-img-wrap img{
  width:60%;
  height:250px;
  object-fit:cover;
  display:block;
}

.event-info{
  position:absolute;
  bottom:-18px;
  width:350px;
  background:#98008f;
  color:#FFFFE2;
  padding:40px 30px 10px;
  z-index:5;

  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:6px;
}

.ev-left{
  left:0;
}

.ev-right{
  right:0;
}

.event-info h3{
  font-size:25px;
  line-height:1.25;
  font-weight:700;
  color:#FFFFE2;
  text-decoration:underline;
  text-underline-offset:2px;
  text-decoration-thickness:1px;
}

.ev-date,
.ev-loc{
  font-size:15px;
  color:#FFFFE2;
  display:flex;
  align-items:center;
  gap:5px;
}

.ev-date i,
.ev-loc i{
  color:#FFFFE2;
  font-size:20px;
  width:20px;
}

.event-desc{
  position:relative;
  z-index:1;
  background:#98008f;
  margin-top:-150px;
  padding:190px 30px 40px;
}

.event-desc p{
  font-size:15px;
  color:#FFFFE2;
  line-height:1.55;
}

/* kawiarnia */

/* o nas */

.onas-section{
  padding:60px 40px 70px;
  background:#fff;
  text-align:center;
}

.onas-content{
  display:flex;
  align-items:stretch;
  max-width:1100px;
  margin:0 auto;
  gap:0;
}

.onas-img-wrap{
  flex:0 0 47%;
  border:3px solid #86007D;
  overflow:hidden;
}

.onas-img-wrap img{
  width:100%;
  height:100%;
  min-height:380px;
  object-fit:cover;
  display:block;
}

.onas-text-wrap{
  flex:1;
  background:#fff;
  border-left:none;
  padding: 40px 50px;
  text-align:left;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:24px;
}

.onas-heading{
  font-family:Georgia, serif;
  font-size:40px;
  font-weight:400;
  color:#86007D;
  line-height:1.2;
}

.onas-text-wrap p{
  font-size:18px;
  color:#86007D;
  line-height:1.75;
}

/* sprawia */

.features-section{
  padding:60px 40px 70px;
  background:#fff;
  text-align:center;
}

.features-title{
  font-family:Georgia, serif;
  font-size:36px;
  font-weight:400;
  color:#86007D;
  margin-bottom:50px;
  max-width:850px;
  margin-left:auto;
  margin-right:auto;
}

.features-row{
  display:flex;
  justify-content:center;
  gap:30px;
  flex-wrap:wrap;
  max-width:1500px;
  margin:0 auto;
}

.feature-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
}

.feature-circle{
  width:160px;
  height:160px;
  border-radius:50%;
  overflow:hidden;
  border:3px solid #86007D;
  flex-shrink:0;
}

.feature-circle img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.feature-item p{
  font-size:18px;
  color:#86007D;
  text-align:center;
  line-height:1.4;
  font-weight:500;
}

/* galeria */

.gallery-section{
  padding:60px 40px 70px;
  background:#fff;
  text-align:center;
}

.gallery-grid{
  columns:4;
  column-gap:10px;
  max-width:1100px;
  margin:0 auto;
}

.gallery-grid img{
  width:100%;
  display:block;
  margin-bottom:10px;
  break-inside:avoid;
  object-fit:cover;
}

/* opinie */

.reviews-section{
  padding:60px 40px 70px;
  background:#fff;
  text-align:center;
}

.reviews-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:25px;
  max-width:950px;
  margin:0 auto;
}

.review-card{
  border:2px solid #86007D;
  padding:25px 28px;
  background:#fff;
  text-align:left;
}

.review-top{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:14px;
}

.review-avatar{
  width:62px;
  height:62px;
  border-radius:50%;
  object-fit:cover;
  flex-shrink:0;
  border:2px solid #86007D;
}

.review-meta{
  display:flex;
  flex-direction:column;
  gap:5px;
}

.review-name{
  font-weight:700;
  font-size:17px;
  color:#222;
}

.review-stars{
  color:#86007D;
  font-size:16px;
  display:flex;
  gap:3px;
}

.review-text{
  font-size:15px;
  color:#444;
  line-height:1.65;
}

/* lokalizacja */

.location-section{
  padding:60px 40px 70px;
  background:#fff;
  text-align:center;
}

.map-wrap{
  max-width:1100px;
  margin:0 auto;
  border:3px solid #86007D;
  overflow:hidden;
  line-height:0;
}

.map-wrap iframe{
  display:block;
  width:100%;
  height:420px;
  border:0;
}

/* kontakt */

.kontakt-section{
  padding:55px 60px 80px;
  background:#fff;
  max-width:1200px;
  margin:0 auto;
  text-align: center
}

.kontakt-content{
  display:flex;
  align-items:flex-start;
  gap:50px;
  margin-top:10px;
}

.kontakt-form-wrap{
  flex:0 0 48%;
}

.kontakt-form-title{
  font-family:Arial, sans-serif;
  font-size:32px;
  font-weight:700;
  color:#86007D;
  margin-bottom:28px;
  text-align:left;
}

.kontakt-form{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.kontakt-input{
  width:100%;
  padding:16px 18px;
  border:2px solid #86007D;
  background:#fff;
  font-size:17px;
  color:#86007D;
  font-family:Arial, sans-serif;
  transition:border-color 0.2s;
}

.kontakt-input::placeholder{
  color:#86007D;
  opacity:0.5;
}

.kontakt-input:focus{
  border-color:#5a005a;
}

.kontakt-textarea{
  width:100%;
  padding:16px 18px;
  border:2px solid #86007D;
  background:#fff;
  font-size:17px;
  color:#86007D;
  font-family:Arial, sans-serif;
  resize:vertical;
  min-height:150px;
  transition:border-color 0.2s;
}

.kontakt-textarea::placeholder{
  color:#86007D;
  opacity:0.5;
}

.kontakt-textarea:focus{
  border-color:#5a005a;
}

.kontakt-btn{
  padding:18px;
  background:#86007D;
  color:#fff;
  font-size:20px;
  font-weight:700;
  border:none;
  cursor:pointer;
  letter-spacing:1px;
  transition:0.3s;
  width:fit-content;
  min-width:170px;
}

.kontakt-btn:hover{
  background:#5a005a;
}

.kontakt-cards{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:20px;
}

.kontakt-card{
  background:#FFFFE2;
  border:2px solid #86007D;
  padding:28px 30px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:8px;
}

.kontakt-icon{
  font-size:42px;
  color:#86007D;
  margin-bottom:4px;
}

.kontakt-card h4{
  font-size:22px;
  font-weight:700;
  color:#86007D;
}

.kontakt-card p{
  font-size:17px;
  color:#86007D;
  line-height:1.45;
}

/* menu */

.menu-section{
  padding:55px 60px 50px;
  background:#fff;
  max-width:1200px;
  margin:0 auto;
}

.menu-section-title{
  font-family:Georgia, serif;
  font-size:52px;
  font-weight:400;
  color:#86007D;
  text-align:center;
  margin-bottom:40px;
}

.menu-grid{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:30px 20px;
}

.menu-item{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.menu-item img{
  width:100%;
  aspect-ratio:1 / 1;
  object-fit:cover;
  display:block;
}

.menu-item-name{
  font-family:Arial, sans-serif;
  font-size:20px;
  font-weight:800;
  color:#86007D;
  text-decoration:underline;
  text-underline-offset:3px;
  text-decoration-thickness:1.5px;
  line-height:1.3;
  cursor:pointer;
  transition:color 0.2s;
}

.menu-item-name:hover{
  color:#5a005a;
}

.menu-item p{
  font-size:15px;
  color:#86007D;
  line-height:1.5;
  margin:0;
  font-weight:500;
}

/* hamburger menu */

#menu-toggle{
  display:none;
}

.menu-icon{
  display:none;
  font-size:28px;
  color:#86007D;
  cursor:pointer;
  z-index:200;
}

/* responsive tablet <= 800px */

@media (max-width: 800px){

  /* top bar */
  .top-bar{
    flex-direction:column;
    height:auto;
    padding:10px 20px;
    gap:6px;
    text-align:center;
  }
  .left-info, .socials{
    justify-content:center;
  }

  /* header */
  header{
    flex-wrap:wrap;
    height:auto;
    padding:12px 20px;
    gap:10px;
  }

  .menu-icon{
    display:block;
    order:3;
  }

  .languages{
    order:2;
    margin-left:auto;
  }

  nav{
    order:4;
    width:100%;
    display:none;
  }

  #menu-toggle:checked ~ nav{
    display:block;
  }

  .menu{
    flex-direction:column;
    gap:0;
    background:#FFFFE2;
    border-top:2px solid #86007D;
  }

  .menu > li{
    border-bottom:1px solid rgba(134,0,125,0.15);
  }

  .menu li a{
    padding:14px 20px;
    font-size:18px;
  }

  .submenu{
    position:static;
    display:none;
    border-top:1px solid rgba(134,0,125,0.1);
  }

  .dropdown:has(i:hover) .submenu,
  .dropdown:hover .submenu,
  .submenu:hover{
    display:block;
  }

  .submenu li{
    width:100%;
    border:none;
    border-bottom:1px solid rgba(134,0,125,0.08);
  }

  .submenu li a{
    padding:12px 30px;
    font-size:16px;
  }

  /* hero */
  .hero{
    height:500px;
  }
  .hero-content h1{
    font-size:42px;
  }
  .hero-content p{
    font-size:18px;
  }
  .hero-btn{
    font-size:22px;
    padding:14px 30px;
  }

  /* Interior */
  .interior-section{
    padding:30px 20px;
  }
  .interior-img-wrap{
    width:100%;
  }
  .interior-img-wrap img{
    height:400px;
  }
  .interior-text-wrap{
    position:relative;
    bottom:auto;
    right:auto;
    width:100%;
    margin-top:-40px;
    z-index:2;
  }

  .promo-section{
    padding:40px 20px 50px;
  }
  .section-title{
    font-size:38px;
  }
  .promo-cards{
    flex-direction:column;
    align-items:center;
  }
  .promo-card{
    max-width:500px;
    width:100%;
  }
  .card-img-wrap{
    height:400px;
  }

  .coffee-section{
    padding:40px 20px 50px;
  }
  .coffee-content{
    flex-direction:column;
    align-items:center;
  }
  .coffee-half img{
    height:350px;
  }
  .coffee-divider{
    width:100%;
    height:5px;
  }
  .coffee-textbox{
    position:relative;
    top:auto !important;
    bottom:auto !important;
    left:auto !important;
    right:auto !important;
    width:100%;
    text-align:center;
  }

  .desserts-section{
    padding:40px 20px 50px;
  }
  .desserts-content{
    flex-direction:column;
  }
  .desserts-text{
    flex:unset;
    width:100%;
    padding:30px 25px;
  }
  .desserts-text h3{
    font-size:30px;
  }
  .desserts-text p{
    font-size:20px;
  }

  .onas-section{
    padding:40px 20px 50px;
  }
  .onas-content{
    flex-direction:column;
  }
  .onas-img-wrap{
    flex:unset;
    width:100%;
  }
  .onas-text-wrap{
    padding:30px 25px;
  }
  .onas-heading{
    font-size:30px;
  }

  .features-section{
    padding:40px 20px 50px;
  }
  .features-title{
    font-size:28px;
  }
  .features-row{
    gap:20px;
  }
  .feature-circle{
    width:120px;
    height:120px;
  }

  .gallery-section{
    padding:40px 20px 50px;
  }
  .gallery-grid{
    columns:2;
  }

  .reviews-section{
    padding:40px 20px 50px;
  }
  .reviews-grid{
    grid-template-columns:1fr;
  }

  .location-section{
    padding:40px 20px 50px;
  }
  .map-wrap iframe{
    height:300px;
  }

  .section-title-serif{
    font-size:38px;
    margin-bottom:30px;
  }

  .footer-inner{
    padding:40px 30px 30px;
    gap:30px;
  }
  .footer-brand{
    flex:unset;
    width:100%;
  }
  .footer-links{
    flex:unset;
  }
  .footer-info{
    flex:unset;
  }

  .events-page{
    padding:40px 20px 50px;
  }
  .events-page-title{
    font-size:38px;
    margin-bottom:35px;
  }
  .event-img-wrap img{
    width:100%;
  }

  .kontakt-section{
    padding:40px 20px 50px;
  }
  .kontakt-content{
    flex-direction:column;
    gap:30px;
  }
  .kontakt-form-wrap{
    flex:unset;
    width:100%;
  }

  .menu-section{
    padding:40px 20px 40px;
  }
  .menu-section-title{
    font-size:38px;
  }
  .menu-grid{
    grid-template-columns:repeat(3, 1fr);
    gap:20px 15px;
  }
}

/* responsive tablet <= 576px */

@media (max-width:576px){

  .top-bar{
    font-size:12px;
    padding:8px 12px;
  }
  .left-info{
    gap:8px;
  }
  .left-info span{
    font-size:11px;
  }
  .socials span{
    display:none;
  }

  header{
    padding:10px 15px;
  }
  .logo img{
    width:110px;
  }

  .hero{
    height:380px;
  }
  .hero-content h1{
    font-size:28px;
    margin-bottom:15px;
  }
  .hero-content p{
    font-size:14px;
    margin-bottom:20px;
  }
  .hero-content p br{
    display:none;
  }
  .hero-btn{
    font-size:18px;
    padding:12px 25px;
  }

  .interior-img-wrap img{
    height:250px;
  }
  .interior-text-wrap{
    padding:20px;
  }
  .interior-text-wrap p{
    font-size:16px;
  }

  .section-title{
    font-size:28px;
    margin-bottom:30px;
  }
  .card-img-wrap{
    height:300px;
  }
  .card-body h3{
    font-size:18px;
  }

  .coffee-half img{
    height:250px;
  }
  .coffee-textbox{
    font-size:18px;
    padding:16px 20px;
  }

  .desserts-text{
    padding:25px 20px;
  }
  .desserts-text h3{
    font-size:24px;
  }
  .desserts-text p{
    font-size:17px;
  }

  .onas-img-wrap img{
    min-height:250px;
  }
  .onas-heading{
    font-size:24px;
  }
  .onas-text-wrap p{
    font-size:15px;
  }
  .onas-text-wrap{
    padding:25px 20px;
  }

  .features-title{
    font-size:22px;
    margin-bottom:30px;
  }
  .features-row{
    gap:20px;
  }
  .feature-circle{
    width:100px;
    height:100px;
  }
  .feature-item p{
    font-size:14px;
  }

  .gallery-grid{
    columns:2;
    column-gap:6px;
  }
  .gallery-grid img{
    margin-bottom:6px;
  }

  .review-card{
    padding:18px 16px;
  }
  .review-avatar{
    width:50px;
    height:50px;
  }
  .review-name{
    font-size:15px;
  }
  .review-text{
    font-size:14px;
  }

  .map-wrap iframe{
    height:230px;
  }

  .section-title-serif{
    font-size:30px;
    margin-bottom:25px;
  }

  .footer-inner{
    flex-direction:column;
    padding:30px 20px 25px;
    gap:25px;
  }
  .footer-logo{
    font-size:40px;
  }
  .footer-desc{
    font-size:14px;
  }
  .footer-links h4,
  .footer-info h4{
    font-size:19px;
  }
  .footer-bottom{
    font-size:12px;
    padding:14px 15px;
  }

  .events-page-title{
    font-size:30px;
    margin-bottom:25px;
  }
  .event-visual,
  .event-visual.ev-reversed{
    flex-direction:column;
  }
  .event-info{
    position:relative;
    bottom:auto;
    width:100%;
  }
  .ev-left, .ev-right{
    left:auto;
    right:auto;
  }
  .event-desc{
    padding:18px 12px 14px;
  }
  .event-desc p{
    font-size:12px;
  }

  .kontakt-form-title{
    font-size:24px;
  }
  .kontakt-input,
  .kontakt-textarea{
    font-size:15px;
    padding:14px 14px;
  }
  .kontakt-btn{
    font-size:17px;
    width:100%;
  }
  .kontakt-icon{
    font-size:34px;
  }
  .kontakt-card h4{
    font-size:18px;
  }
  .kontakt-card p{
    font-size:15px;
  }

  .menu-section-title{
    font-size:30px;
    margin-bottom:25px;
  }
  .menu-grid{
    grid-template-columns:repeat(2, 1fr);
    gap:18px 12px;
  }
  .menu-item-name{
    font-size:16px;
  }
  .menu-item p{
    font-size:13px;
  }
}

/* skip to content */
.skip-link {
  position: absolute;
  top: -120px;
  left: 16px;
  background: #86007D;
  color: #fff;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: bold;
  z-index: 99999;
  text-decoration: none;
  border: 3px solid #fff;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 10px;
}

/* focus visible */
*:focus-visible {
  outline: 3px solid #FFD700 !important;
  outline-offset: 3px !important;
  box-shadow: 0 0 0 6px rgba(255,215,0,0.3) !important;
}
*:focus:not(:focus-visible) {
  outline: none;
}

/* high contrast button */
.hc-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99999;
  background: #86007D;
  color: #fff;
  border: 2px solid #fff;
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.5px;
  transition: background 0.2s, color 0.2s;
}
.hc-btn:hover {
  background: #5a005a;
}

/* high contrast mode */
html.high-contrast {
  --hc: 1;
}
html.high-contrast body {
  filter: contrast(1.8) saturate(0) brightness(1.1);
}
html.high-contrast .hc-btn {
  filter: invert(1);
  background: #000;
  color: #fff;
  border-color: #fff;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 900px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
}

.slider-controls {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.slider-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: 2px solid #fff;
  cursor: pointer;
  transition: background 0.3s;
  min-width: 24px;
  min-height: 24px; 
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-dot::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  transition: background 0.3s;
}

.slider-dot.active::after,
.slider-dot:hover::after {
  background: #fff;
}

.slider-pause {
  background: none;
  border: 2px solid #fff;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  min-width: 24px;
  min-height: 24px;
}
.slider-pause:hover {
  background: rgba(255,255,255,0.2);
}

@media (max-width: 992px) {
  .hero-slider { height: 500px; }
}
@media (max-width: 576px) {
  .hero-slider { height: 380px; }
}

/* lightbox */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 99998;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox-overlay.open {
  display: flex;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border: 3px solid #86007D;
  display: block;
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 26px;
  font-size: 44px;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  padding: 4px 8px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.lightbox-close:hover {
  color: #86007D;
}
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(134,0,125,0.7);
  border: 2px solid #fff;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  padding: 10px 16px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: #86007D; }

.gallery-grid img {
  cursor: zoom-in;
  transition: opacity 0.2s, transform 0.2s;
}
.gallery-grid img:hover {
  opacity: 0.85;
  transform: scale(1.02);
}

a:focus-visible, 
button:focus-visible, 
input:focus-visible, 
textarea:focus-visible {
  outline: 3px solid #86007D !important;
  outline-offset: 3px !important;
}

.socials a, 
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  min-height: 24px;
  padding: 4px;
  text-decoration: none;
  color: inherit;
}
