:root {
  --gold: #c6a96b;
  --gold-light: #dfc896;
  --black: #0a0a0a;
  --dark-grey: #1a1a1a;
  --light-grey: #f9f9f9;
  --white: #ffffff;
  --text-main: #1a1a1a;
  --text-muted: #666666;
  --font-serif: "Playfair Display", "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

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

.section-padding {
  padding: 100px 0;
}

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

/* Navigation */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 30px 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--white);
}

.nav-links a {
  color: var(--white);
  margin-left: 30px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 300;
}

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

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

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.hero-text h1 {
  font-size: clamp(4rem, 10vw, 7rem);
  margin-bottom: 1rem;
}

.subtitle {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 200;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.cta-button {
  display: inline-block;
  padding: 18px 45px;
  border: 1px solid var(--white);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  transition: 0.4s ease;
}

.cta-button:hover {
  background: var(--white);
  color: var(--black);
}

/* About Section */
.about {
  background-color: var(--white);
  text-align: center;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.about-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 2;
}

/* Marketplace Section */
.marketplace {
  background-color: var(--light-grey);
  text-align: center;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.platform-card {
  background: var(--white);
  padding: 50px 30px;
  border: 1px solid #ebebeb;
  transition: 0.5s ease;
}

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

.platform-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.platform-card p {
  color: var(--text-muted);
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.visit-link {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 600;
}

/* Gallery Section */
.gallery {
  display: flex;
  height: 500px;
}

.gallery-item {
  flex: 1;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s ease;
  filter: grayscale(20%);
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: grayscale(0%);
}

/* Contact Section */
.contact {
  background: var(--white);
}

.contact-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 50px;
  gap: 60px;
}

.contact-info {
  flex: 1;
}

.info-item {
  margin-bottom: 30px;
}

.info-item h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 5px;
}

.info-item p {
  font-size: 1.1rem;
  font-weight: 300;
}

.contact-cta {
  flex: 1;
  background: var(--light-grey);
  padding: 40px;
  border-left: 3px solid var(--gold);
}

.contact-cta p {
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Footer */
footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 0;
}

.footer-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 0.3em;
}

.footer-links a {
  margin: 0 15px;
  font-size: 0.8rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.copyright {
  font-size: 0.75rem;
  color: #555;
  margin-top: 10px;
}

/* Legal Pages */
.legal-page {
  background-color: var(--white);
  color: var(--text-main);
  line-height: 1.8;
}

.legal-header {
  background: var(--black);
  position: relative;
  padding: 20px 0;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section h3 {
  font-size: 1.2rem;
  color: var(--black);
  margin-bottom: 15px;
  font-family: var(--font-sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.back-link {
  display: inline-block;
  margin-top: 40px;
  color: var(--gold);
  font-weight: 500;
  border-bottom: 1px solid transparent;
}

.back-link:hover {
  border-bottom-color: var(--gold);
}

.tc { text-align: center; }

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  z-index: 1001;
  transition: 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
}

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

.fade-up {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.hero-text h1.fade-up { animation-delay: 0.3s; }
.subtitle.fade-up { animation-delay: 0.6s; }
.cta-button.fade-up { animation-delay: 0.9s; }

/* Responsive */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .contact-content { flex-direction: column; gap: 40px; }
  .hero-text h1 { font-size: 3.5rem; }
  .gallery { flex-direction: column; height: auto; }
  .gallery-item { height: 300px; }
}
