/* ============================================
   LUXURY WATCHES - Design #055
   Ultra-Luxury Watch Brand
   Cinematic Light Reflections
   ============================================ */

/* CSS Variables */
:root {
  --gold: #c9a962;
  --gold-light: #d4b87a;
  --gold-dark: #a88a4a;
  --silver: #e5e5e5;
  --silver-dark: #c0c0c0;
  --black: #0a0a0a;
  --black-light: #1a1a1a;
  --black-lighter: #2a2a2a;
  --white: #ffffff;
  --white-muted: rgba(255,255,255,0.7);
  --white-dim: rgba(255,255,255,0.4);
  --playfair: 'Playfair Display', Georgia, serif;
  --montserrat: 'Montserrat', Arial, sans-serif;
  --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-gold: 0 0 30px rgba(201, 169, 98, 0.3);
  --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.5);
}

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

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

body {
  font-family: var(--montserrat);
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Light Reflections Overlay */
.light-reflection {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  background: 
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(201, 169, 98, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(229, 229, 229, 0.05) 0%, transparent 50%),
    linear-gradient(135deg, transparent 40%, rgba(201, 169, 98, 0.03) 50%, transparent 60%);
  animation: lightShift 15s ease-in-out infinite;
}

@keyframes lightShift {
  0%, 100% { opacity: 0.6; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(20px); }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--playfair);
  font-weight: 400;
  letter-spacing: 0.05em;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
  font-size: 1rem;
  color: var(--white-muted);
  letter-spacing: 0.03em;
}

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

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

/* Gold Text */
.text-gold {
  color: var(--gold);
}

.text-silver {
  color: var(--silver);
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition);
  background: transparent;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 1rem 0;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

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

.nav-logo {
  font-family: var(--playfair);
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-logo span {
  font-size: 0.6em;
  color: var(--silver);
  display: block;
  letter-spacing: 0.3em;
  margin-top: -5px;
}

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

.nav-links a {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

/* Mobile Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  width: 30px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

@media (max-width: 992px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--black);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: var(--transition);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  }
  .nav-links.open { right: 0; }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 50%, rgba(201, 169, 98, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 70% 30%, rgba(229, 229, 229, 0.1) 0%, transparent 30%),
    linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
}

.hero-shine {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(201, 169, 98, 0.1) 40%,
    rgba(201, 169, 98, 0.2) 50%,
    rgba(201, 169, 98, 0.1) 60%,
    transparent 80%
  );
  transform: translateX(-100%) skewX(-15deg);
  animation: heroShine 8s ease-in-out infinite;
}

@keyframes heroShine {
  0% { transform: translateX(-100%) skewX(-15deg); }
  20% { transform: translateX(200%) skewX(-15deg); }
  100% { transform: translateX(200%) skewX(-15deg); }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-subtitle {
  font-size: 0.9rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.3s;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-title span {
  color: var(--gold);
  display: block;
}

.hero-desc {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.7s;
}

/* Watch Image in Hero */
.watch-display {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto 3rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.9s;
}

.watch-face {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: 
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2) 0%, transparent 30%),
    linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  box-shadow: 
    0 0 60px rgba(201, 169, 98, 0.4),
    inset 0 0 30px rgba(0,0,0,0.3),
    0 20px 60px rgba(0,0,0,0.5);
  animation: watchRotate 10s ease-in-out infinite;
}

@keyframes watchRotate {
  0%, 100% { transform: translate(-50%, -50%) rotateY(0deg); }
  50% { transform: translate(-50%, -50%) rotateY(15deg); }
}

.watch-face::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
}

.watch-face::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--black-light) 0%, var(--black) 100%);
  border: 3px solid var(--gold);
}

.watch-bezel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 4px solid;
  border-color: var(--silver) var(--gold) var(--gold) var(--silver);
  animation: bezelSpin 20s linear infinite;
}

@keyframes bezelSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 3rem;
  font-family: var(--montserrat);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: var(--transition);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 1.1s;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 1.3s;
}

.scroll-indicator span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; height: 60px; }
  50% { opacity: 1; height: 80px; }
}

/* Section Styles */
.section {
  padding: 8rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto;
}

/* Parallax Section */
.parallax-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background: 
    radial-gradient(circle at 50% 50%, rgba(201, 169, 98, 0.1) 0%, transparent 50%),
    var(--black);
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.7);
}

.parallax-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: linear-gradient(145deg, var(--black-light) 0%, var(--black) 100%);
  padding: 3rem;
  border: 1px solid rgba(201, 169, 98, 0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: var(--transition);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 169, 98, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 2rem;
  position: relative;
}

.feature-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.feature-icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  color: var(--black);
  z-index: 1;
}

.feature-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.feature-desc {
  font-size: 0.95rem;
  line-height: 1.8;
}

/* Collection Grid */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.collection-item {
  position: relative;
  height: 450px;
  overflow: hidden;
  cursor: pointer;
  background: var(--black-light);
}

.collection-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.watch-silhouette {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: 
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15) 0%, transparent 40%),
    linear-gradient(135deg, var(--silver-dark) 0%, var(--silver) 50%, var(--silver-dark) 100%);
  box-shadow: 
    0 0 40px rgba(229, 229, 229, 0.3),
    inset 0 0 20px rgba(0,0,0,0.2);
  transition: var(--transition);
  position: relative;
}

.collection-item:hover .watch-silhouette {
  transform: scale(1.1);
  box-shadow: 
    0 0 80px rgba(201, 169, 98, 0.5),
    inset 0 0 30px rgba(0,0,0,0.3);
}

.watch-silhouette::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 15%;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  border: 2px solid rgba(201, 169, 98, 0.3);
}

.collection-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(0deg, var(--black) 0%, transparent 100%);
  transform: translateY(50px);
  transition: var(--transition);
}

.collection-item:hover .collection-overlay {
  transform: translateY(0);
}

.collection-name {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.collection-price {
  color: var(--gold);
  font-size: 1.1rem;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 992px) {
  .about-grid { grid-template-columns: 1fr; }
}

.about-image {
  position: relative;
  height: 500px;
}

.about-image-main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  box-shadow: var(--shadow-gold);
}

.about-image-frame {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 80%;
  border: 2px solid var(--gold);
  border-radius: 50%;
  opacity: 0.3;
  animation: frameRotate 30s linear infinite;
}

@keyframes frameRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.about-content h2 {
  margin-bottom: 2rem;
}

.about-text {
  margin-bottom: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(201, 169, 98, 0.2);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--playfair);
  font-size: 2.5rem;
  color: var(--gold);
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-muted);
}

/* Services Section */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.service-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background: linear-gradient(145deg, var(--black-light) 0%, var(--black) 100%);
  border: 1px solid rgba(201, 169, 98, 0.1);
  transition: var(--transition);
}

@media (max-width: 768px) {
  .service-item {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.service-item:hover {
  border-color: var(--gold);
  transform: translateX(10px);
}

.service-number {
  font-family: var(--playfair);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.3;
}

.service-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.service-desc {
  font-size: 0.95rem;
}

/* Gallery Masonry */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  background: var(--black-light);
}

.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

@media (max-width: 768px) {
  .gallery-item.wide { grid-column: span 1; }
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--black-lighter) 0%, var(--black) 100%);
  transition: var(--transition);
}

.gallery-item:hover .gallery-placeholder {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--black) 100%);
}

.gallery-placeholder-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.3;
  transition: var(--transition);
}

.gallery-item:hover .gallery-placeholder-icon {
  opacity: 0.6;
  transform: scale(1.2);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-zoom {
  width: 50px;
  height: 50px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transform: scale(0);
  transition: var(--transition);
}

.gallery-item:hover .gallery-zoom {
  transform: scale(1);
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

@media (max-width: 992px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info h3 {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
}

.contact-text h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.contact-text p {
  font-size: 0.95rem;
}

.contact-form {
  background: linear-gradient(145deg, var(--black-light) 0%, var(--black) 100%);
  padding: 3rem;
  border: 1px solid rgba(201, 169, 98, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem;
  background: var(--black);
  border: 1px solid rgba(201, 169, 98, 0.2);
  color: var(--white);
  font-family: var(--montserrat);
  font-size: 1rem;
  transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201, 169, 98, 0.1);
}

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

.form-btn {
  width: 100%;
}

/* Docs Section */
.docs-container {
  max-width: 900px;
  margin: 0 auto;
}

.docs-toc {
  background: var(--black-light);
  padding: 2rem;
  margin-bottom: 3rem;
  border: 1px solid rgba(201, 169, 98, 0.1);
}

.docs-toc h3 {
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.docs-toc-list {
  list-style: none;
}

.docs-toc-list a {
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(201, 169, 98, 0.1);
  color: var(--white-muted);
  font-size: 0.95rem;
}

.docs-toc-list a:hover {
  color: var(--gold);
  padding-left: 10px;
}

.docs-section {
  background: var(--black-light);
  padding: 3rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(201, 169, 98, 0.1);
}

.docs-section h2 {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}

.docs-section p {
  margin-bottom: 1.5rem;
}

.docs-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.docs-section li {
  color: var(--white-muted);
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  background: var(--black);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(201, 169, 98, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-family: var(--playfair);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-desc {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 169, 98, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold);
  color: var(--black);
}

.footer-title {
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--white-muted);
  font-size: 0.95rem;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 169, 98, 0.1);
}

.footer-bottom p {
  font-size: 0.85rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

/* Video Background Alternative */
.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.6);
}

/* Page Specific */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding-top: 100px;
  background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 100%, rgba(201, 169, 98, 0.1) 0%, transparent 50%);
}
