/* ======================
   Alapbeállítások
====================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #fafafa;
  color: #333;
  text-align: center;
  line-height: 1.6;
  font-size: 16px;
}

/* ======================
   Header
====================== */
header {
  background-color: #ffffff;
  padding: 30px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

header h1 a {
  font-size: 2.8rem;
  color: #2c2c2c;
  text-decoration: none;
  letter-spacing: 2px;
  font-weight: 700;
  transition: color 0.3s;
}

header h1 a:hover {
  color: #ff6b6b;
}

header h2 {
  font-size: 1.8rem;
  color: #444;
  margin-top: 5px;
  font-weight: 500;
}

.header-subtitle {
  font-size: 1rem;
  color: #777;
  margin-top: 8px;
  font-weight: 400;
}

/* ======================
   Contact info
====================== */
nav.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 15px;
  font-size: 0.95rem;
  color: #555;
  gap: 5px;
}

nav.contact-info a {
  color: #555;
  text-decoration: none;
  margin: 0 5px;
  transition: color 0.3s;
}

nav.contact-info a:hover {
  color: #ff6b6b;
}

/* ======================
   Sidebar / Menu
====================== */
.sidebar-menu {
  margin: 40px 0;
}

.sidebar-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0;
  align-items: center;
}

.sidebar-menu li,
.sidebar-menu a {
  font-size: 1.2rem;
  cursor: pointer;
  padding: 12px 25px;
  border-radius: 15px;
  transition: all 0.3s ease;
  color: #2c2c2c;
  font-weight: 500;
}

.sidebar-menu li:hover,
.sidebar-menu a:hover {
  background-color: #fff0f0;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

/* ======================
   Menu items / cards
====================== */
.menu-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
  padding: 30px 20px;
}

.menu-item {
  background-color: #ffffff;
  border-radius: 25px;
  border: 1px solid #eee;
  padding: 20px;
  width: 320px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.menu-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 20px;
}

.menu-item h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #2c2c2c;
  font-weight: 600;
}

.menu-item p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 15px;
}

.menu-item ul {
  list-style: none;
  padding: 0;
}

.menu-item li {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #444;
  transition: color 0.3s;
}

.menu-item li:hover {
  color: #ff6b6b;
}

/* ======================
   Scroll to top
====================== */
.scroll-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scroll-to-top:hover {
  transform: scale(1.2);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.scroll-to-top i {
  color: #ff6b6b;
  font-size: 1.2rem;
}

/* ======================
   Footer / Delivery info
====================== */
.delivery-info {
  margin: 50px 0;
  font-size: 0.95rem;
  color: #555;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* ======================
   Accordion / details
====================== */
details {
  padding: 18px 22px;
  line-height: 1.6;
  background-color: #fff7f7;
  border-radius: 15px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

details[open] {
  background-color: #fff0f0;
}

/* ======================
   Responsive
====================== */
@media (min-width: 768px) {
  .sidebar-menu ul {
    flex-direction: row;
    justify-content: center;
    gap: 25px;
  }

  .menu-item {
    width: 340px;
  }
}

@media (max-width: 500px) {
  header h1 {
    font-size: 2rem;
  }

  header h2 {
    font-size: 1.2rem;
  }

  .menu-item {
    width: 90%;
  }

  .sidebar-menu ul {
    flex-direction: column;
    gap: 10px;
  }
  /* ======================
   Sütemények / Rétesek
====================== */
.box-down {
  background-color: #fff7f7;
  border-radius: 20px;
  border: 1px solid #ffeaea;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  padding: 20px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.box-down:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.box-down img {
  width: 100%;
  max-width: 300px;
  height: 180px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 15px;
}

.box-down h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: #2c2c2c;
}

.box-down p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 8px;
  line-height: 1.5;
}

.box-down ul {
  list-style: disc inside;
  padding-left: 20px;
  margin-top: 10px;
}

.box-down ul li {
  margin-bottom: 6px;
  color: #444;
  transition: color 0.3s;
}

.box-down ul li:hover {
  color: #ff6b6b;
}

/* Responsive sütemények */
@media (max-width: 500px) {
  .box-down {
    width: 90%;
    padding: 15px;
  }

  .box-down img {
    height: 160px;
  }
}
.sweets-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 20px;
}

.sweet-card {
  background-color: #fff;
  border-radius: 25px;
  border: 1px solid #eee;
  padding: 20px;
  width: 300px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.sweet-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.sweet-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 15px;
}

.sweet-info h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: #2c2c2c;
}

.sweet-info p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 10px;
}

.sweet-info ul {
  list-style: disc inside;
  padding-left: 0;
  text-align: left;
}

.sweet-info li {
  margin-bottom: 6px;
  color: #444;
}
}
