/* Global styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f5f5f7;
  color: #111827;
  line-height: 1.6;
}

/* Layout helpers */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

/* Navbar */
.site-header {
  background: #111827;
  color: #f9fafb;
}

.navbar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.05em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: #38bdf8;
}

/* Hero */
.hero {
  padding: 4rem 1.5rem;
  text-align: center;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.hero-content p {
  max-width: 600px;
  margin: 0.5rem auto 1.5rem;
  color: #4b5563;
}

.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: #2563eb;
  color: #f9fafb;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary:hover {
  background: #1d4ed8;
}

/* Sections */
.section {
  padding: 2.5rem 1.5rem;
}

.section h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.section p {
  color: #4b5563;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.card {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}

.card h3 {
  margin-bottom: 0.5rem;
}

/* Footer */
.site-footer {
  background: #111827;
  color: #9ca3af;
  text-align: center;
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
}
.logo img {
  height: 120px;
}

body {
  background-color: #ffffff;
  background-image: repeating-linear-gradient(
    45deg,
    #f7f7f7 0px,
    #f7f7f7 2px,
    #ffffff 2px,
    #ffffff 6px
  );
}
/* Shop Page */
/* NAVBAR */
.site-header {
  background: #111827;
  color: #f9fafb;
}

.navbar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: #38bdf8;
}

/* SHOP PAGE */
.shop-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  text-align: center;
}

/* TITLE IMAGE */
.shop-title-img {
  display: block;
  margin: 2rem auto 1rem;
  max-width: 400px;
  width: 80%;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
  filter: drop-shadow(0 0 12px rgba(56, 189, 248, 0.4));
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* INFO BOX */
.shop-info-box {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  max-width: 700px;
  margin: 0 auto 2rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  text-align: center;
}

.shop-info-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.shop-email {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

.shop-email:hover {
  text-decoration: underline;
}

/* DIVIDER */
.shop-divider {
  margin: 2rem auto;
  max-width: 700px;
  border: none;
  border-top: 1px solid #e5e7eb;
}

/* SHOP OPTIONS */
.shop-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* SHOP CARDS */
.shop-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  transition: 0.2s ease;
}

.shop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* SHOP IMAGES */
.shop-img {
  width: 70%;
  max-width: 150px;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/* CONTACT PAGE */
.contact-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  text-align: center;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.contact-description {
  color: #4b5563;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Info Box */
.contact-info-box {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.contact-email {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

.contact-email:hover {
  text-decoration: underline;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 1rem;
}

.contact-btn {
  background: #2563eb;
  color: white;
  padding: 0.9rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s ease;
}

.contact-btn:hover {
  background: #1e40af;
}
/* CONTACT PAGE */
.contact-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  text-align: center;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.contact-description {
  color: #4b5563;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Info Box */
.contact-info-box {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.contact-email {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

.contact-email:hover {
  text-decoration: underline;
}

/* Facebook Button */
.facebook-btn {
  display: inline-block;
  background: #1877f2;
  color: white;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 0.5rem;
}

.facebook-btn:hover {
  background: #0f5dc9;
}

/* FAQ SECTION */
.faq-section {
  margin: 3rem 0;
  text-align: left;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.faq-item {
  background: #ffffff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  margin-bottom: 1rem;
}

.faq-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.faq-item p {
  color: #4b5563;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 1rem;
}

.contact-btn {
  background: #2563eb;
  color: white;
  padding: 0.9rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s ease;
}

.contact-btn:hover {
  background: #1e40af;
}
.facebook-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 0.5rem;
}
/* GALLERY PAGE */
/* GALLERY PAGE */
.gallery-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  text-align: center;
}

.gallery-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.gallery-description {
  color: #4b5563;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* ITEMS */
.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  background: #ffffff;
  transition: 0.3s ease;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: 0.3s ease;
}

/* HOVER EFFECT */
.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* LIGHTBOX POPUP */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 3rem;
  color: white;
  cursor: pointer;
  font-weight: bold;
}
.gallery-title-img {
  display: block;
  margin: 2rem auto 1rem;
  max-width: 400px;
  width: 80%;
  filter: drop-shadow(0 0 12px rgba(56, 189, 248, 0.4));
}
.hero-img {
  display: block;
  margin: 2rem auto;
  max-width: 600px;   /* reduce this number to make it smaller */
  width: 90%;
  border-radius: 12px;
}
.contact-title-img {
  display: block;
  margin: 2rem auto 1rem;
  max-width: 400px;
  width: 80%;
  filter: drop-shadow(0 0 12px rgba(56, 189, 248, 0.4));
}
.home-banner-img {
  display: block;
  margin: 2rem auto;
  width: 75%;          /* This makes it exactly 3/4 width */
  max-width: 1100px;   /* Prevents it from getting too huge on big screens */
  border-radius: 12px; /* Optional: looks clean */
}
.home-banner-img {
  display: block;
  margin: 2rem auto;
  width: 75%;          /* This makes it exactly 3/4 width */
  max-width: 1100px;   /* Prevents it from getting too huge */
  border-radius: 12px; /* Optional: looks clean */
  cursor: pointer;     /* Shows a hand cursor when hovering */
}
.home-banner-img:hover {
  transform: scale(1.02);
  transition: 0.25s ease;
}
model-viewer:fullscreen {
  height: 100vh !important;
  width: 100vw !important;
  background: #000;
}
/* A320 INFO SECTION */
.a320-divider {
  margin: 3rem auto;
  max-width: 900px;
  border: none;
  border-top: 2px solid #e5e7eb;
}

.a320-info-section {
  text-align: center;
  margin: 3rem auto 5rem;
  max-width: 900px;
  padding: 2rem 0;
  border-top: 2px solid #e5e7eb;   /* clean divider */
}

.a320-info-img {
  width: 28%;               /* smaller than the 3D model */
  max-width: 260px;         /* hard limit */
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: 0.3s ease;
  cursor: pointer;
  margin-top: 1rem;
}

.a320-info-img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.a320-info-text {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: #4b5563;
  line-height: 1.6;
}
