@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Manrope:wght@300;400;600;800&display=swap');

:root {
  --bg-primary: #111111;
  --bg-secondary: #181818;
  --accent: #c59d5f;
  --accent-hover: #b38b4d;
  --text-primary: #ffffff;
  --text-secondary: #999999;
  --border-color: rgba(255, 255, 255, 0.08);
  --font-header: 'Bebas Neue', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, .bebas {
  font-family: var(--font-header);
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

ul {
  list-style: none;
}

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

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

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Loader */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader {
  width: 50px;
  height: 50px;
  border: 3px solid var(--border-color);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 18px 40px;
  background-color: var(--accent);
  color: #000;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--font-header);
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-sm {
  padding: 10px 25px;
  font-size: 0.9rem;
}

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

.btn:hover {
  background-color: var(--text-primary);
  color: #000;
  transform: translateY(-3px);
}

.btn-outline:hover {
  background: var(--accent);
  color: #000;
}

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

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 30px 0;
  transition: var(--transition);
}

header.scrolled {
  background-color: rgba(17, 17, 17, 0.98);
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

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

.logo {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-header);
  letter-spacing: 3px;
}

nav ul {
  display: flex;
  gap: 40px;
}

nav ul li a {
  font-family: var(--font-header);
  font-size: 1.2rem;
  letter-spacing: 1px;
}

nav ul li a:hover {
  color: var(--accent);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mobile-menu-btn {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 2rem;
  cursor: pointer;
  display: none;
}

/* Hero */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(17,17,17,0.9) 0%, rgba(17,17,17,0.4) 100%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?q=80&w=2070&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  z-index: 0;
  animation: kenBurns 20s infinite alternate;
}

@keyframes kenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-content h4 {
  color: var(--accent);
  margin-bottom: 25px;
  font-size: 1.3rem;
  letter-spacing: 4px;
}

.hero-content h1 {
  font-size: clamp(3.5rem, 12vw, 7rem);
  line-height: 0.85;
  margin-bottom: 35px;
}

.hero-btns {
  display: flex;
  gap: 20px;
}

/* Marquee */
.marquee {
  background-color: var(--accent);
  padding: 15px 0;
  overflow: hidden;
  display: flex;
  position: relative;
  z-index: 10;
}

.marquee-content {
  display: flex;
  animation: marquee 25s linear infinite;
  min-width: 100%;
}

.marquee-content span {
  font-family: var(--font-header);
  font-size: 2rem;
  color: #000;
  padding-right: 60px;
  white-space: nowrap;
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

.about-img {
  position: relative;
}

.about-img img {
  border: 15px solid var(--bg-secondary);
  filter: grayscale(0.5);
  transition: var(--transition);
}

.about-img:hover img {
  filter: grayscale(0);
}

.exp-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--accent);
  padding: 30px;
  text-align: center;
  color: #000;
  min-width: 150px;
  box-shadow: 20px 20px 60px rgba(0,0,0,0.5);
}

.exp-badge h3 {
  font-size: 3rem;
  line-height: 1;
}

.exp-badge p {
  font-family: var(--font-header);
  text-transform: uppercase;
  font-size: 1rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-item i {
  color: var(--accent);
}

/* Services */
.services {
  background-color: var(--bg-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.service-card {
  padding: 50px 40px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  text-align: center;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--accent);
  transition: var(--transition);
  z-index: 0;
}

.service-card:hover::before {
  height: 5px;
}

.service-card:hover {
  transform: translateY(-15px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.service-icon {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.service-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.price {
  display: block;
  font-family: var(--font-header);
  color: var(--accent);
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
}

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

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

/* CTA */
.cta-section {
  background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1512690196252-7c7696a4034b?q=80&w=2000&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Hours & Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid var(--border-color);
}

.hours-table td {
  padding: 20px 0;
}

.hours-table td:last-child {
  text-align: right;
  color: var(--accent);
  font-weight: 800;
  font-family: var(--font-header);
  font-size: 1.2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.info-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.info-item i {
  color: var(--accent);
  width: 30px;
}

.info-item h3 {
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: 5px;
}

/* Footer */
footer {
  padding: 80px 0 40px;
  background: #0a0a0a;
  border-top: 1px solid var(--border-color);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border-color);
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  width: 50px;
  height: 50px;
  border: 1px solid var(--border-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.social-links a:hover {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

.footer-bottom {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

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

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

.fade-in {
  opacity: 0;
  animation: fadeIn 1s forwards;
}

.fade-in-delay {
  opacity: 0;
  animation: fadeIn 1s 0.5s forwards;
}

.slide-up {
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 1s 0.2s forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .hero-content h1 {
    font-size: 5rem;
  }
}

@media (max-width: 768px) {
  header {
    padding: 20px 0;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-primary);
    padding: 30px;
    border-bottom: 2px solid var(--accent);
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-btns {
    flex-direction: column;
  }

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

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

  .section-title h2 {
    font-size: 3rem;
  }
}
