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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0d0d0d;
  color: #ffffff;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  background-color: #1a1a1a;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 10;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  height: 3px;
  width: 25px;
  background: #fff;
  margin-bottom: 4px;
  border-radius: 3px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1.3rem;
}

.nav-links li a:hover {
  color: #ffffff;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    padding: 1rem;
    display: block;
    border-top: 1px solid #333;
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
              url('../assets/images/landscape.jpg') no-repeat center center/cover;
  filter: blur(1px);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 3rem 4rem;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: #ccc;
}

.cta-button {
  padding: 0.8rem 1.5rem;
  background-color: #2ecc71;
  color: #fff;
  border: none;
  text-decoration: none;
  border-radius: 25px;
  transition: background-color 0.3s ease;
  font-weight: bold;
}

.cta-button:hover {
  background-color: #27ae60;
}

/* 📱 Mobile Friendly Adjustments */
@media (max-width: 600px) {
  .hero-content {
    padding: 2rem 1.2rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .cta-button {
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
  }
}

/* Footer */
.footer {
  text-align: center;
  padding: 1.5rem 0;
  background-color: #1a1a1a;
  color: #888;
  font-size: 0.9rem;
}

/* Gallery Page */
.gallery-section {
  padding: 2rem;
  text-align: center;
}

.gallery-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #f4f4f4;
}

/* Masonry-style layout */
.gallery-grid {
  column-count: 3;
  column-gap: 1rem;
  padding: 1rem;
}

@media (max-width: 1000px) {
  .gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    column-count: 1;
  }
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 2rem;
  padding: 0.5rem;
  border-radius: 10px;
  background-color: #000;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.05);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  background-color: #111;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

/* About Page */
.about-section {
  padding: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 3rem;
}

.about-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #f4f4f4;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.about-photo {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.about-text {
  font-size: 1.1rem;
  color: #ddd;
  max-width: 700px;
}

@media (min-width: 768px) {
  .about-content {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }

  .about-photo {
    margin-right: 2rem;
  }
}

@media (min-width: 1200px) {
  .about-text {
    font-size: 1.25rem;
    line-height: 1.8;
  }

  .about-title {
    font-size: 3rem;
  }
}

/* Purchase Page */
.purchase-section {
  padding: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.purchase-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #f4f4f4;
}

.purchase-intro {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.print-options {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.print-card {
  background-color: #1a1a1a;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255,255,255,0.05);
}

.print-card h3 {
  color: #2ecc71;
  margin-bottom: 0.5rem;
}

.print-card p {
  color: #ddd;
}

.qr-section {
  text-align: center;
}

.qr-section h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  color: #ffffff;
}

.qr-section p {
  color: #ccc;
  margin-bottom: 1rem;
}

.qr-image {
  width: 200px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Contact Page */
.contact-section {
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #f4f4f4;
}

.contact-intro {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 8px;
  background-color: #1f1f1f;
  color: #ffffff;
  font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
}

.contact-form button {
  background-color: #2ecc71;
  color: white;
  padding: 0.8rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #27ae60;
}

.thank-you-message {
  margin-top: 2rem;
  background-color: rgba(46, 204, 113, 0.1);
  border: 1px solid #2ecc71;
  color: #dfffe0;
  padding: 1.5rem;
  border-radius: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  font-style: italic;
  box-shadow: 0 0 12px rgba(46, 204, 113, 0.2);
  animation: fadeInSlide 1.2s ease-out both;
}

@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}