/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/photo_background.webp') no-repeat center center/cover;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  text-align: center;
  color: #fff;
  animation: fadeIn 2s ease-in-out;
}

.overlay h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4em;
  margin-bottom: 10px;
}

.overlay p {
  font-size: 1.5em;
}

/* Gallery Section */
.gallery {
  padding: 60px 20px;
  text-align: center;
}

.gallery h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
  font-family: 'Playfair Display', serif;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.grid img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

/* About and Contact Sections */
.about,
.contact {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
}

.about h2,
.contact h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.about p,
.contact p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1em;
  line-height: 1.8;
}

.contact a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

.contact a:hover {
  text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #E1306C;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s;
}

.instagram-link:hover {
  color: #C13584;
}

.instagram-link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  transition: fill 0.3s;
}




/* Horizontal Scroll Gallery */
.scroll-gallery {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
}

.scroll-gallery img {
  width: 300px;
  flex-shrink: 0;
  border-radius: 10px;
  scroll-snap-align: center;
  cursor: pointer;
  transition: transform 0.3s;
}

.scroll-gallery img:hover {
  transform: scale(1.05);
}

/* Lightbox styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
}

.lightbox .close {
  position: absolute;
  top: 40px;
  right: 60px;
  font-size: 3rem;
  color: white;
  cursor: pointer;
}
.site-footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 0.95em;
}

.site-footer a {
  color: #E1306C;
  text-decoration: none;
  font-weight: bold;
}

.site-footer a:hover {
  text-decoration: underline;
}

.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  font-size: 0.95em;
  max-width: 600px;
  z-index: 1000;
  display: none;
  animation: fadeIn 0.5s ease;
}

.cookie-popup a {
  color: #E1306C;
  text-decoration: underline;
}

.cookie-popup .close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.5em;
  color: #fff;
  cursor: pointer;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
.modal-content {
  background-color: #fff;
  color: #333;
  padding: 30px;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 10px;
  text-align: left;
}

.modal-content h2 {
  font-size: 2em;
  margin-bottom: 15px;
}

.modal-content ul {
  padding-left: 20px;
  list-style: disc;
  margin-top: 10px;
}

.modal-content li {
  margin-bottom: 10px;
}
