@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
  --primary-color: #d4af37; /* Luxury Gold */
  --secondary-color: #cba358; /* Muted Gold */
  --bg-color: #0f1011; /* Deep Charcoal/Black */
  --bg-color-alt: #1a1b1d; /* Slightly lighter Charcoal */
  --text-main: #ffffff;
  --text-muted: #a0a0a0;
  --accent-color: #27282b;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
  --transition: all 0.3s ease-in-out;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 1px;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

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

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

/* Utilities */
.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

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

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  cursor: pointer;
  background: transparent;
  transition: var(--transition);
}

.btn:hover {
  background: var(--primary-color);
  color: var(--bg-color);
}

.btn-solid {
  background: var(--primary-color);
  color: var(--bg-color);
}

.btn-solid:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* Navigation */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 0;
  background: rgba(15, 16, 17, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.logo span {
  color: var(--primary-color);
}

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

.nav-links a {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-main);
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  margin-top: 0;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

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

.slide-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 20px;
  transform: translateY(20px);
  transition: transform 1s ease, opacity 1s ease;
}

.slide.active .slide-content {
  transform: translateY(0);
}

.slide-content h1 {
  font-size: 3.5rem;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 2rem;
  letter-spacing: 2px;
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.2;
}

.slider-dots {
  position: absolute;
  bottom: 40px;
  width: 100%;
  text-align: center;
  z-index: 4;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: transparent;
  border: 2px solid white;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: #e60000;
  border-color: #e60000;
}

@media screen and (max-width: 768px) {
  .slide-content h1 { font-size: 2.2rem; }
}

/* Offerings Grid */
.offerings {
  background: var(--bg-color-alt);
}

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

.card {
  background: var(--bg-color);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: var(--transition);
  group: card;
}

.card-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.card-body {
  padding: 2rem;
  text-align: center;
}

.card-body h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--text-main);
}

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

/* Intro Section */
.intro {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.intro-text {
  flex: 1;
}

.intro-image {
  flex: 1;
  position: relative;
}

.intro-image img {
  box-shadow: -20px 20px 0px rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(255,255,255,0.05);
}

/* Brands Section */
.brands-section {
  background: var(--bg-color-alt);
}

.brand-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 4rem;
  margin-top: 3rem;
}

.brand-logos h4 {
  font-size: 2rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.brand-logos h4:hover {
  opacity: 1;
  color: var(--primary-color);
}

/* Footer Section */
footer {
  background: var(--bg-color);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h3 {
  color: var(--text-main);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-col p, .footer-col a {
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  display: block;
}

.footer-col a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Animations Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-in-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Generic Header for Subpages */
.page-header {
  padding: 10rem 0 5rem;
  background: var(--bg-color-alt);
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.page-header h1 {
  font-size: 3rem;
  color: var(--primary-color);
}

/* Responsive */
@media screen and (max-width: 900px) {
  h1 { font-size: 2.5rem; }
  .intro { flex-direction: column; }
}

@media screen and (max-width: 768px) {
  .logo { font-size: 1.2rem; }
  .nav-links {
    position: fixed;
    right: -100%;
    top: 70px;
    flex-direction: column;
    background: var(--bg-color);
    width: 60%;
    height: 100vh;
    padding: 2rem;
    transition: right 0.3s ease;
    border-left: 1px solid rgba(255,255,255,0.05);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .menu-toggle {
    display: block;
  }
}
