/* Reset & box-sizing */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; width: 100%; }

/* Load custom fonts */
@font-face {
  font-family: 'lemonface';
  src: url('../fonts/LEMONMILK-BoldItalic.woff2') format('woff2'),
       url('../fonts/LEMONMILK-BoldItalic.woff') format('woff'),
       url('../fonts/LEMONMILK-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'lemonfacereg';
  src: url('../fonts/LEMONMILK-RegularItalic.woff2') format('woff2'),
       url('../fonts/LEMONMILK-RegularItalic.woff') format('woff'),
       url('../fonts/LEMONMILK-RegularItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'lemonfacelight';
  src: url('../fonts/LEMONMILK-LightItalic.woff2') format('woff2'),
       url('../fonts/LEMONMILK-LightItalic.woff') format('woff'),
       url('../fonts/LEMONMILK-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}


/* Global styles */
body {
  font-family: 'lemonfacelight', sans-serif;
  background-color: #000;
  color: #fff;
  overflow: auto; /* remove on scrollable pages like shop.html */
}

p { 
  font-family: 'lemonfacelight', sans-serif; 
  font-size: x-small;
}

/* Centered About text */
.about-text {
  font-family: 'lemonfacereg', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 0.5rem;
  width: 100%;
  height: 100vh;
  position: relative;
}

/* Hero section */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('../images/ogliceinmanderland.JPG') center center / cover no-repeat;
}

/* Hero text */
.hero-text {
  position: absolute;
  left: 48px;
  bottom: 48px;
  font-family: 'lemonface', sans-serif;
  font-size: clamp(2rem, 6vw, 5rem);
  color: #fff;
  text-shadow: -4px -4px 0 #000, 4px -4px 0 #000, -4px 4px 0 #000, 4px 4px 0 #000;
  z-index: 10;
}

/* Footer */
footer {
  position: fixed;
  bottom: 12px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  z-index: 10;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

/* Top-right menu */
.side-menu {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 30;
}

.menu-btn {
  font-family: 'lemonfacereg', sans-serif;
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.menu-content {
  display: none;
  flex-direction: column;
  margin-top: 0.5rem;
  background: black;
  border-radius: 6px;
  overflow: hidden;
  font-family: 'lemonfacelight', sans-serif;
}

.side-menu.open .menu-content { display: flex; }

.menu-content a {
  padding: 0.6rem 0.9rem;
  text-decoration: none;
  color: #111;
  display: block;
}

.menu-content a:hover { background: #eee; }

/* Back button */
.back-btn {
  position: fixed;
  top: 20px;
  left: 20px;
  font-family: 'lemonfacereg', sans-serif;
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  background: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  z-index: 50;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  transition: background 0.3s ease;
}

.back-btn:hover { background: none; }

/* Shop page layout */
.shop-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.shop-item {
  flex: 1 0 50%;
}

.shop-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.shop-item img:hover { transform: scale(1.02); }

.caption {
  text-align: center;
  margin-top: 10px;
  font-size: 1.2rem;
}
