:root {
  --rois-beige: #f1e7db;
  --rois-cream: #f9f5ef;
  --rois-brown: #5c4b3b;
  --rois-gold: #c6a77b;
  --rois-dark: #2a2017;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--rois-cream);
  color: var(--rois-dark);
  scroll-behavior: smooth;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

/* 🔸 Nawigacja */
.nav-light {
  background: rgba(249, 245, 239, 0.9);
  backdrop-filter: blur(10px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav-light.scrolled {
  background: rgba(249, 245, 239, 0.98);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.nav-link {
  position: relative;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--rois-gold);
  transition: width 0.3s ease;
}
.nav-link:hover {
  color: var(--rois-gold);
}
.nav-link:hover::after {
  width: 100%;
}

/* 🔸 Przyciski */
.btn-primary {
  background-color: var(--rois-brown);
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--rois-gold);
  transition: width 0.3s ease;
  z-index: 0;
}
.btn-primary:hover::before {
  width: 100%;
}
.btn-primary:hover {
  color: var(--rois-dark);
}
.btn-primary span {
  position: relative;
  z-index: 1;
}

/* 🔸 Hero */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(42,32,23,0.4), rgba(42,32,23,0.5)),
              url('../assets/images/back.webp') center/cover no-repeat;
  z-index: -1;
}

/* 🔸 Karty */
.card {
  background-color: var(--rois-cream);
  border-radius: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

/* 🔸 Sekcja tytułu */
.section-title {
  display: inline-block;
  position: relative;
  margin-bottom: 2.5rem;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--rois-gold);
  border-radius: 2px;
}

.map-container {
    flex: 1;
}

.map-container {
	border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
        
.map-container iframe {
	width: 100%;
    height: 450px;
    border: none;
}

.menu-item-image {
    height: 250px;
    overflow: hidden;
	border-radius: 1.5rem;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.menu-item-image:hover img {
    transform: scale(1.1);
}

.logo h1 {
    font-family: "Binotari", "Times New Roman", serif;
    font-style: normal;
    color: #ffffff;
    font-size: 2rem;
    /*font-weight: bold; /* Didot wygląda lepiej z pogrubieniem */
    letter-spacing: 1px;
    /* Dodaje elegancji */
}

.logo {
    display: inline-block;
    /* Zapobiega dziwnym marginesom */
    text-decoration: none;
}

.logo-img {
    height: 50px;
    /* Dostosuj wysokość */
    width: auto;
    /* Zachowaj proporcje */
    transition: transform 0.3s ease;
    /* Efekt hover */
}

.logo-img:hover {
    transform: scale(1.1);
    /* Lekkie powiększenie przy najechaniu */
}

.logo-visit-img {
    height: 80px;
    /* Dostosuj wysokość */
    width: auto;
	padding: 0.5rem;
    /* Zachowaj proporcje */
    /* transition: transform 0.3s ease;
    /* Efekt hover */
}

.logo-visit-img:hover {
    /* transform: scale(1.1);
    /* Lekkie powiększenie przy najechaniu */
}

/* 🔸 Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  background-color: var(--rois-cream);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 1rem 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
.mobile-menu.active {
  display: flex;
}