/*
Theme Name: MinimalCorfu
Theme URI: https://example.com
Author: Teo
Description: Ultra-lightweight WordPress theme with one template, responsive, and clean.
Version: 1.0
License: GNU General Public License v2 or later
*/

body {
  font-family: system-ui, sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #222;
  line-height: 1.6;
}

.container {
  max-width: 1170px;
  padding:15px;
  margin: 0 auto;
  padding: 1rem;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: #fff;
  padding: 0 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 1000;
  transition: transform 0.3s ease;
}

header.hidden {
  transform: translateY(-100%);
}
.menu-container {
  max-width: 1170px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-weight: bold;
  font-size: 1.5rem;
  padding:8px;
}

.hamburger {
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

nav {
  display: none;
  position: absolute;
  top: 100px;
  right: 1rem;
  background: #fff;
  border: 1px solid #ddd;
  padding: 1rem;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

nav.active {
  display: block;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav li {
  margin-bottom: 0.5rem;
}

nav li:last-child {
  margin-bottom: 0;
}

nav a {
  display: block;
  padding: 0.5rem;
  color: #222;
  text-decoration: none;
}

nav a:hover {
  background: #f2f2f2;
}

footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  background: #f5f5f5;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}

a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Minimal lightbox */
.lightbox-overlay {
  position: fixed;
  top:0; left:0;
  width:100%; height:100%;
  background: rgba(0,0,0,0.8);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:2000;
}

.lightbox-overlay img {
  max-width:90%;
  max-height:90%;
  box-shadow: 0 0 20px #000;
}

.lightbox-overlay .lightbox-close {
  position:absolute;
  top:20px; right:30px;
  color:#fff;
  font-size:2rem;
  cursor:pointer;
}

.lightbox-overlay .lightbox-nav {
  position:absolute;
  top:50%;
  font-size:3rem;
  color:#fff;
  cursor:pointer;
  user-select:none;
}

.lightbox-overlay .prev { left:20px; }
.lightbox-overlay .next { right:20px; }

/* ===============================
   CUSTOM CSS
   Add your overrides here
=============================== */