/* ===========================
   BURALUX - Landing Page Styles
   Color Scheme: White / Gold
   =========================== */

:root {
  --black: #ffffff;
  --black-light: #faf8f2;
  --black-medium: #f5f0e6;
  --white: #1a1a1a;
  --white-off: #2a2a2a;
  --gray: #888888;
  --gray-light: #555555;
  --gray-dark: #aaaaaa;
  --gold: #c9a84c;
  --gold-light: #dfc06b;
  --gold-dark: #a88a30;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--white);
  background: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--gold-dark);
}

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

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

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-block;
  padding: 14px 40px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-gold {
  background: var(--gold);
  color: #ffffff;
}

.btn-gold:hover {
  background: var(--gold-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

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

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-logo:hover {
  color: var(--gold-dark);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-link {
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-picker {
  position: relative;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 4px;
  padding: 6px 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--white);
}

.lang-toggle:hover {
  border-color: var(--gold);
}

.lang-toggle img {
  display: block;
  border-radius: 2px;
}

.lang-arrow {
  transition: transform 0.3s ease;
}

.lang-picker.open .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--black);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  z-index: 1001;
  min-width: 140px;
  overflow: hidden;
}

.lang-picker.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--gray-light);
  transition: all 0.2s ease;
}

.lang-option:hover {
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold);
}

.lang-option.active {
  color: var(--gold);
}

.lang-option img {
  display: block;
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Nav overlay for mobile */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}

/* Close button inside mobile menu */
.nav-close-wrapper {
  display: none;
  width: 100%;
  text-align: right;
  padding: 0 24px;
  position: absolute;
  top: 24px;
  right: 0;
}

.nav-close {
  background: none;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  font-size: 1.75rem;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  line-height: 1;
}

.nav-close:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at center, #ffffff 0%, #f5f0e6 70%);
}

.hero-content {
  text-align: center;
  padding: 0 24px;
}

.hero-logo {
  width: 520px;
  max-width: 90vw;
  margin: 0 auto 40px;
  filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.25));
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--gray);
  letter-spacing: 4px;
  margin-bottom: 48px;
}

/* ===========================
   SECTIONS
   =========================== */
.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--black);
}

.section-light {
  background: var(--black-light);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 400;
  text-align: center;
  letter-spacing: 2px;
  color: var(--white);
}

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto 50px;
}

.section-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1.8;
}

/* ===========================
   ABOUT
   =========================== */
.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-text {
  margin-bottom: 60px;
}

.about-text p {
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1.9;
  margin-bottom: 20px;
  text-align: center;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature {
  text-align: center;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--gold);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature h3 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--white);
}

.feature p {
  font-size: 0.875rem;
  color: var(--gray);
  font-weight: 300;
}

/* ===========================
   SERVICES
   =========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.service-card {
  border: 1px solid rgba(201, 168, 76, 0.25);
  background: rgba(201, 168, 76, 0.03);
  transition: all 0.4s ease;
}

.service-card:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.07);
  transform: translateY(-4px);
}

.service-header {
  padding: 40px 36px 24px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.service-header h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--gold-dark);
  margin-bottom: 6px;
}

.service-subtitle {
  font-size: 0.8125rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}

.service-body {
  padding: 30px 36px 40px;
}

.service-desc {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 28px;
}

.service-list {
  list-style: none;
  margin-bottom: 32px;
}

.service-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--gray-light);
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.pricing {
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding-top: 24px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.9375rem;
  color: var(--gray-light);
}

.price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-dark);
}

.price-note {
  font-size: 0.8125rem;
  color: var(--gray);
  margin-top: 14px;
  font-style: italic;
}

.price-highlight {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
}

.cta-block {
  text-align: center;
  padding-top: 20px;
}

.cta-block p {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 24px;
}

/* ===========================
   GALLERY
   =========================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}

.gallery-item-large {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background 0.3s ease;
}

.gallery-item:hover::after {
  background: rgba(201, 168, 76, 0.1);
}

/* ===========================
   TRANSFERS
   =========================== */
.transfers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.transfer-card {
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.25);
  transition: all 0.4s ease;
}

.transfer-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.transfer-image {
  overflow: hidden;
  aspect-ratio: 16/10;
}

.transfer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.transfer-card:hover .transfer-image img {
  transform: scale(1.05);
}

.transfer-info {
  padding: 28px 30px;
}

.transfer-info h3 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--gold-dark);
  margin-bottom: 6px;
}

.transfer-info p {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--gray);
}

/* ===========================
   TEAM
   =========================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.team-member {
  text-align: center;
}

.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.team-avatar-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  object-fit: cover;
  object-position: center 20%;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.15);
}

.team-member h3 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}

.team-member p {
  font-size: 0.875rem;
  color: var(--gray);
  font-weight: 300;
}

/* ===========================
   CONTACT
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
}

.contact-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--gold);
  margin-top: 2px;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

.contact-item h4 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}

.contact-item p {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1.7;
}

.contact-item a {
  color: var(--gray-light);
}

.contact-item a:hover {
  color: var(--gold);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--white);
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.2);
  outline: none;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.07);
}

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

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--black-medium);
  padding: 60px 0 0;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  text-align: center;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--gray);
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact p {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--gray);
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-contact a {
  color: var(--gray);
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--gray);
  font-weight: 300;
}

/* ===========================
   TOAST
   =========================== */
.toast {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--gold);
  color: #ffffff;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
  z-index: 9999;
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ===========================
   ANIMATIONS
   =========================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .services-grid {
    gap: 20px;
  }

  .service-header,
  .service-body {
    padding-left: 28px;
    padding-right: 28px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item-large {
    grid-column: span 2;
  }

  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 2.25rem;
  }

  /* Mobile Nav */
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--black);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(201, 168, 76, 0.2);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08);
  }

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

  .nav-close-wrapper {
    display: block;
  }

  .nav-link {
    font-size: 0.9375rem;
    letter-spacing: 2px;
  }

  /* Hero */
  .hero-logo {
    width: 380px;
  }

  .hero-tagline {
    font-size: 0.8125rem;
    letter-spacing: 2px;
  }

  .hero-subtitle {
    font-size: 0.8125rem;
    letter-spacing: 2px;
  }

  /* About */
  .about-features {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item-large {
    grid-column: span 1;
  }

  /* Transfers */
  .transfers-grid {
    grid-template-columns: 1fr;
  }

  /* Team */
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 56px 0;
  }

  .section-title {
    font-size: 1.875rem;
  }

  .container {
    padding: 0 16px;
  }

  .btn {
    padding: 12px 32px;
    font-size: 0.8125rem;
  }

  .hero-logo {
    width: 320px;
  }

  .hero-tagline {
    font-size: 0.75rem;
  }

  .service-header,
  .service-body {
    padding-left: 20px;
    padding-right: 20px;
  }

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

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

  .price {
    font-size: 1.25rem;
  }
}
