:root {
  --bg: #000000;
  --text: #ffffff;
  --orange: #f5a623;
  --blue: #00a8e8;
  --gray: #a0a0a0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5vw;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  z-index: 1000;
  padding: 1rem 0;
  transition: padding 0.3s;
}

.header.scrolled {
  padding: 0.8rem 0;
}

.logo {
  display: flex;
  align-items: center;
  font-size: clamp(1.8rem, 5vw, 2.4rem);
}

.logo img {
  height: clamp(50px, 12vw, 70px);
  margin-right: 1rem;
}

.nav {
  display: flex;
  gap: 2.5rem;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover {
  color: var(--orange);
}

/* Hero */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85)),
              url('https://images.prismic.io/luxdeco-dev/Yjk1M2ZmYmMtMjYxOC00YTQyLWFkNTQtMzFlOTY5YWFmNDdl_black-and-gold-luxury-interiors_09557ad5-6b02-4c51-8a22-d5508564fd54.jpg?auto=compress,format&w=1200&q=100') center/cover;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: clamp(3.5rem, 9vw, 8rem);
  color: var(--orange);
  margin-bottom: 1rem;
}

.hero p {
  font-size: clamp(1.2rem, 3.5vw, 1.6rem);
  max-width: 800px;
  margin: 0 auto;
}

/* Sections */
.section {
  padding: 12vh 0;
}

h2 {
  font-size: clamp(3rem, 7vw, 5rem);
  text-align: center;
  color: var(--blue);
  margin-bottom: 3rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: #1a1a1a;
  padding: 2.5rem;
  border: 1px solid #333;
  border-radius: 12px;
  transition: all 0.4s;
}

.service-card:hover {
  border-color: var(--orange);
  transform: translateY(-8px);
}

.service-card h3 {
  color: var(--blue);
  margin-bottom: 1rem;
}

/* Slider Gallery */
.gallery {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  margin: 3rem 0;
}

.slider {
  width: 100%;
}

.slides {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.slides img {
  min-width: 100%;
  height: 65vh;
  object-fit: cover;
  pointer-events: none; /* Helps prevent interaction */
  user-select: none;
  -webkit-user-drag: none;
}

/* Anti-download protection */
.slides img {
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.slides img::selection {
  background: transparent;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.65);
  color: var(--orange);
  border: none;
  font-size: 3.5rem;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
}

.slider-btn:hover {
  background: var(--orange);
  color: #000;
  transform: translateY(-50%) scale(1.1);
}

#prev { left: 2rem; }
#next { right: 2rem; }

/* Contact */
.contact p {
  font-size: 1.4rem;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.contact a {
  color: var(--blue);
  text-decoration: none;
}

.contact a:hover {
  color: var(--orange);
}

/* Footer */
footer {
  padding: 5rem 0 3rem;
  text-align: center;
  color: var(--gray);
  border-top: 1px solid #222;
}

/* Responsive */
@media (max-width: 768px) {
  .slides img { height: 50vh; }
  .slider-btn {
    width: 55px;
    height: 55px;
    font-size: 2.5rem;
  }
  #prev { left: 1rem; }
  #next { right: 1rem; }
}