/* =====================
   BASE
===================== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #000;
  color: #fff;
}

/* =====================
   LAYOUT
===================== */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.section {
  padding: 100px 20px;
}
.section-intro {
  max-width: 600px;
  margin-bottom: 20px;
  color: #aaa;
}
/* =====================
   HEADER / NAV
===================== */
header {
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid #222;
}

.logo {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  transition: color 0.2s ease;
}

.logo:hover {
  color: #e10600;
}

nav {
  display: flex;
  align-items: center;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

nav a:hover {
  color: #e10600;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* =====================
   TYPOGRAPHY
===================== */
h1 {
  font-size: clamp(48px, 8vw, 100px);
  line-height: 1.1;
  font-weight: 700;
}

h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 10px;
}

p {
  font-size: 18px;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 12px;
}

.big-text {
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.1;
  max-width: 900px;
}

/* =====================
   HERO
===================== */
.hero {
  min-height: 90vh;
  background: url('images/hero.jpg') center 20% / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.hero-sub {
  max-width: 500px;
  margin-top: 15px;
  color: #ccc;
}

/* =====================
   GRID
===================== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.grid img {
  width: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.2s ease;
.portrait-grid img
   aspect-ratio: 3 / 4;
}

/* LANDSCAPE */
.landscape-grid img {
  aspect-ratio: 4 / 3;
}

.grid img:hover {
  transform: scale(1.02);
}
.premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* FEATURED IMAGE */
.premium-grid .featured {
  grid-column: span 2;
}

.premium-grid .featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* STANDARD IMAGES */
.premium-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
}
   /* PORTRAIT */
.portrait-grid img {
  aspect-ratio: 3 / 4;
}

/* LANDSCAPE */
.landscape-grid img {
  aspect-ratio: 4 / 3;
}
.premium-grid img:hover {
  transform: scale(1.03);
}
/* =====================
   BUTTONS
===================== */
.btn {
  background: #e10600;
  color: #fff;
  padding: 14px 24px;
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.2s ease;
}

.btn:hover {
  background: #b00500;
}

.btn-outline {
  display: inline-block;
  padding: 14px 22px;
  border: 2px solid #e10600;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  background: #e10600;
}

/* =====================
   VIDEO
===================== */
.video-item {
  position: relative;
  cursor: pointer;
}

.video-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  background: rgba(0,0,0,0.6);
  padding: 10px 20px;
  border-radius: 50%;
}

/* =====================
   LIGHTBOX
===================== */
#lightbox,
#video-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

#lightbox img {
  max-width: 90%;
  max-height: 85%;
}

#video-frame {
  width: 90%;
  height: 60%;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  cursor: pointer;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  cursor: pointer;
}

.prev { left: 20px; }
.next { right: 20px; }

/* =====================
   ABOUT
===================== */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 850px;
}

.about-image {
  width: 100%;
  display: block;
  margin-bottom: 20px;
}

.about-closing {
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.1;
  font-weight: 700;
  max-width: 850px;
}

/* =====================
   CONTACT FORM
===================== */
form {
  margin-top: 20px;
}

.form-input {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  background: #111;
  border: 1px solid #333;
  color: #fff;
  font-size: 16px;
  border-radius: 4px;
  outline: none;
  box-sizing: border-box;
}

.form-input:focus {
  border-color: #e10600;
}

textarea.form-input {
  height: 120px;
  resize: vertical;
}

select.form-input {
  appearance: none;
  background: #111;
  color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg fill='white' height='10' viewBox='0 0 24 24' width='10'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
}

/* =====================
   TESTIMONIALS
===================== */
.testimonial {
  margin-top: 40px;
  max-width: 700px;
  border-left: 3px solid #e10600;
  padding-left: 20px;
}

.quote {
  font-size: 22px;
  line-height: 1.4;
  font-weight: 500;
  color: #fff;
}

.author {
  margin-top: 10px;
  font-size: 14px;
  color: #888;
}

/* =====================
   FOOTER
===================== */
.footer {
  text-align: center;
  padding: 40px 20px;
  color: #777;
  border-top: 1px solid #222;
}

.contact-trust {
  font-size: 14px;
  color: #777;
  margin: 30px 0 20px;
  max-width: 500px;
}

/* =====================
   WHATSAPP
===================== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 55px;
  height: 55px;
  background: #ffff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25D366;
  z-index: 9999;
  transition: transform .2s ease;
}
.whatsapp-float:hover {
}
.whatsapp-float img {
  width: 26px;
  height: 26px;
}

/* =====================
   MOBILE
===================== */
@media (max-width: 768px) {

  header {
    padding: 18px 20px;
  }

  .logo {
    font-size: 16px;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #000;
    display: none;
    flex-direction: column;
    border-top: 1px solid #222;
  }

  nav a {
    padding: 16px;
    font-size: 18px;
    border-bottom: 1px solid #222;
    text-align: center;
  }

  nav.active {
    display: flex;
  }

  .container {
    padding: 20px;
  }

  .section {
    padding: 50px 20px;
  }

  .hero {
    min-height: auto;
    padding: 80px 20px;
  }

  h1 { font-size: 36px; }
  h2 { font-size: 26px; }
  p { font-size: 17px; }

  .grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .premium-grid {
    grid-template-columns: 1fr;
  }

  .premium-grid .featured {
    grid-column: span 1;
  }

  .grid img {
    height: auto;
  }

  .btn {
    display: block;
    width: calc(100% - 40px);
    margin: 25px auto 0;
    padding: 16px;
    font-size: 18px;
    text-align: center;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  #video-frame {
    height: 40%;
  }
}
