/* ==========================================================================
   INDIEDRINKS.DIRECT — Styles
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.btn-primary {
  background: #171fee;
  color: #fff;
}

.btn-primary:hover {
  background: #1218cc;
  transform: translateY(-1px);
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #000;
  z-index: 1000;
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  min-width: 150px;
  height: auto;
  max-height: 50px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: opacity 0.3s;
}

.nav-links a:hover {
  opacity: 0.7;
}

.nav-social {
  display: flex;
  gap: 16px;
}

.nav-social a {
  color: #fff;
  transition: opacity 0.3s;
}

.nav-social a:hover {
  opacity: 0.7;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1010;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}

.hero-content h1 {
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}

.scroll-arrow {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ==========================================================================
   SECTIONS — General
   ========================================================================== */
.section {
  padding: 120px 0;
}

.section--gray {
  background: #f5f5f5;
}

.section--white {
  background: #fff;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: #222;
}

.section-subtitle {
  font-size: 18px;
  font-weight: 300;
  text-align: center;
  color: #666;
  margin-bottom: 60px;
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
#about {
  padding: 120px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #222;
}

.about-text p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  color: #555;
}

.image-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.image-grid-2x2 img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
#services {
  padding: 150px 0 180px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.card {
  background: #fff;
  padding: 40px 32px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  object-fit: contain;
}

.card h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  color: #222;
}

.card p {
  font-size: 15px;
  font-weight: 300;
  color: #666;
  line-height: 1.7;
}

/* ==========================================================================
   SHORTCUT
   ========================================================================== */
.shortcut {
  position: relative;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.shortcut-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.shortcut-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}

.shortcut-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 24px;
}

.shortcut-content h2 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.shortcut-content p {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
}

/* ==========================================================================
   WHY US
   ========================================================================== */
.section--whyus {
  padding: 165px 0 180px;
}

.whyus-list {
  max-width: 700px;
  margin: 0 auto;
}

.whyus-item {
  text-align: center;
  margin-bottom: 60px;
}

.whyus-item:last-child {
  margin-bottom: 0;
}

.whyus-icon {
  margin-bottom: 20px;
}

.whyus-icon img,
.whyus-icon svg {
  width: 48px;
  height: 48px;
  margin: 0 auto;
  display: block;
}

.whyus-item h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
  color: #222;
}

.whyus-item p {
  font-size: 16px;
  font-weight: 300;
  color: #666;
  line-height: 1.7;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
#faq {
  padding: 120px 0;
}

.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-item:first-child {
  border-top: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #222;
  text-align: left;
}

.faq-question:hover {
  color: #171fee;
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 0 24px;
  font-size: 15px;
  font-weight: 300;
  color: #555;
  line-height: 1.8;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}

.contact-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 60px 24px;
  width: 100%;
}

.contact-content h2 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.contact-subtitle {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 48px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #171fee;
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
}

.contact-form .btn {
  align-self: center;
  margin-top: 8px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #fff;
  padding: 90px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 14px;
  font-weight: 300;
  color: #999;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: #999;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #171fee;
}

/* ==========================================================================
   LAZY LOADING — fade-in
   ========================================================================== */
.lazy-bg {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.lazy-bg.loaded {
  opacity: 1;
}

/* ==========================================================================
   RESPONSIVE — 960px
   ========================================================================== */
@media (max-width: 960px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #000;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 0;
    transition: right 0.35s ease;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links a {
    display: block;
    padding: 16px 0;
    font-size: 16px;
  }

  .nav-social {
    margin-top: 32px;
  }

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

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .shortcut-content h2 {
    font-size: 32px;
  }
}

/* ==========================================================================
   RESPONSIVE — 640px
   ========================================================================== */
@media (max-width: 640px) {
  .hero-content h1 {
    font-size: 28px;
    letter-spacing: 1.5px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .section-title {
    font-size: 28px;
  }

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

  .shortcut {
    height: 480px;
  }

  .shortcut-content h2 {
    font-size: 26px;
  }

  .contact-content h2 {
    font-size: 30px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .image-grid-2x2 img {
    height: 150px;
  }

  .btn {
    padding: 14px 32px;
  }

  /* Disable parallax on mobile for performance */
  .hero-bg,
  .shortcut-bg {
    background-attachment: scroll;
  }
}
