/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #fdfdfd;
  color: #333;
  line-height: 1.6;
}

/* Layout */
.container {
  max-width: 800px;
  margin: auto;
  padding: 2rem;
  text-align: center;
}

header {
  background-color: #ffe58a;
  color: #111;
  padding: 3rem 1rem;
  border-bottom: 4px solid #ffcc00;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

nav {
  margin-top: 1rem;
}

nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

/* Section spacing */
main section {
  padding: 2rem 1rem;
}

/* Services section */
.services ul {
  list-style: none;
  padding-top: 1rem;
}

.services li {
  margin: 0.5rem 0;
}

/* Gallery styling */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.gallery-grid img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 10px;
  border: 2px solid #ddd;
  display: block;
  margin: auto;
}

/* About & contact block styling */
.about, .contact, .contact-form {
  background-color: #f9f9f9;
  margin: 1.5rem 0;
  border-left: 5px solid #ffcc00;
  padding: 1.5rem;
}

/* Footer */
footer {
  text-align: center;
  background-color: #333;
  color: white;
  padding: 1rem;
  font-size: 0.9rem;
}

/* Contact form styles */
form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: auto;
}

form input,
form textarea {
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

form button {
  background-color: #ffcc00;
  border: none;
  padding: 0.75rem;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
}

form button:hover {
  background-color: #e6b800;
}

.form-note {
  font-size: 0.85rem;
  color: #666;
  margin-top: 1rem;
  text-align: center;
}

/* Lightbox styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.lightbox.hidden {
  display: none;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1;
}

.lightbox-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.lightbox-inner img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.lightbox-left,
.lightbox-right {
  position: absolute;
  top: 0;
  height: 100%;
  width: 40%;
  cursor: pointer;
  z-index: 3;
}

.lightbox-left {
  left: 0;
}

.lightbox-right {
  right: 0;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 3rem;
  color: white;
  cursor: pointer;
  font-weight: bold;
  z-index: 4;
}
