/* ---------- GOOGLE FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;600;700&family=Rubik:wght@300;400;500;700&display=swap');

/* ---------- VARIABLES ---------- */
:root {
  --primary-color: #eb0028;
  /* Red */
  --secondary-color: #d4af37;
  /* Gold */
  --bg-color: #000000;
  --bg-dark: #111111;
  --bg-light: #1a1a1a;
  --text-color: #ffffff;
  --text-muted: #b3b3b3;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Open Sans', sans-serif;
  --transition: all 0.3s ease;
}

/* ---------- RESET & BASE ---------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.8;
  overflow-x: hidden;
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

p {
  margin-bottom: 20px;
}

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

ul {
  list-style: none;
}

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

/* ---------- UTILITIES ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 100px 0;
}

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

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

.text-primary {
  color: var(--primary-color) !important;
}

.text-gold {
  color: var(--secondary-color) !important;
}

.d-flex {
  display: flex;
}

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

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

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

.gap-20 {
  gap: 20px;
}

/* Grid System */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

[class*="col-"] {
  padding: 0 15px;
  width: 100%;
}

@media (min-width: 768px) {
  .col-1 {
    width: 8.33%;
  }

  .col-2 {
    width: 16.66%;
  }

  .col-3 {
    width: 25%;
  }

  .col-4 {
    width: 33.33%;
  }

  .col-5 {
    width: 41.66%;
  }

  .col-6 {
    width: 50%;
  }

  .col-7 {
    width: 58.33%;
  }

  .col-8 {
    width: 66.66%;
  }

  .col-9 {
    width: 75%;
  }

  .col-10 {
    width: 83.33%;
  }

  .col-11 {
    width: 91.66%;
  }

  .col-12 {
    width: 100%;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border: 1px solid var(--primary-color);
  background: var(--primary-color);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition);
}

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

.btn-outline {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
}

/* ---------- HEADER ---------- */
#header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
  transition: var(--transition);
}

#header.scrolled {
  position: fixed;
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  padding: 10px 0;
}

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

.logo img {
  height: 50px;
  width: auto;
}

/* Navigation */
.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
}

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

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #111;
  min-width: 200px;
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  border-top: 2px solid var(--primary-color);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 10px 20px;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--primary-color);
  color: #fff;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

/* ---------- HERO SLIDER ---------- */
.hero-slider {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}

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

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

/* Hero Content */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 3;
  width: 90%;
  max-width: 900px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  letter-spacing: 4px;
  color: var(--secondary-color);
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease 0.5s both;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 80px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.1;
  animation: fadeInUp 1s ease 0.8s both;
}

.hero-btn {
  animation: fadeInUp 1s ease 1.1s both;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.slider-arrow:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.slider-prev {
  left: 40px;
}

.slider-next {
  right: 40px;
}

.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active,
.dot:hover {
  background: #fff;
  border-color: #fff;
  transform: scale(1.2);
}


/* ---------- ANIMATIONS ---------- */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes zoomIn {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.1);
  }
}

/* ---------- CONTENTS ---------- */
.section-title {
  font-size: 48px;
  margin-bottom: 20px;
}

.section-text {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.8;
  font-weight: 300;
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
}

.card img {
  width: 100%;
  transition: var(--transition);
}

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

/* Header Text Styles */
.sub-heading {
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--secondary-color);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

/* ---------- PARALLAX / OPENING HOURS ---------- */
.section-parallax {
  position: relative;
  background: url('../images/slider-03.jpg') fixed center center;
  background-size: cover;
  padding: 120px 0;
  color: #fff;
}

.hero-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.hours-split-container {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}

.hours-left {
  flex: 1;
  padding-right: 40px;
  display: flex;
  align-items: center;
}

.hours-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.special-item h3 {
  color: var(--primary-color);
  font-size: 18px;
  margin-bottom: 10px;
}

.special-item p {
  color: #ccc;
  font-size: 16px;
}

/* ---------- FOOTER ---------- */
footer {
  background: #0a0a0a;
  padding: 80px 0 30px;
  border-top: 1px solid #222;
  text-align: center;
  position: relative;
}

.footer-floating-icon {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--bg-color);
  border: 1px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 24px;
}

.footer-logo {
  max-width: 150px;
  margin: 0 auto 30px;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.footer-contact {
  color: #ccc;
  margin-bottom: 40px;
}

.footer-contact p {
  margin-bottom: 10px;
}

.copyright {
  border-top: 1px solid #1a1a1a;
  padding-top: 30px;
  font-size: 14px;
  color: #666;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .hero-title {
    font-size: 60px;
  }

  .slider-arrow {
    display: none;
  }

  .hours-split-container {
    flex-direction: column;
    gap: 40px;
  }

  .hours-left {
    padding-right: 0;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .header-container {
    position: relative;
  }

  .mobile-toggle {
    display: block;
    z-index: 1001;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #000;
    flex-direction: column;
    padding: 80px 30px;
    transition: var(--transition);
    z-index: 1000;
  }

  .nav-menu.active {
    right: 0;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 36px;
  }
}