/* --- Variables & Reset --- */
:root {
  --color-gold: #008697;
  --color-orange: #008697;
  --color-charcoal: #000000;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-off-white: #ffffff;
  --color-overlay: rgba(255, 255, 255, 0.9);
  --color-teal: #008697;

  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Roboto', sans-serif;

  --transition-slow: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  --transition-fast: 0.3s ease;
}

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

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

/* --- Preloader --- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(228, 178, 87, 0.3);
  border-radius: 50%;
  border-top-color: var(--color-gold);
  animation: spin 1s ease-in-out infinite;
}

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

body.loading .preloader {
  opacity: 1;
  visibility: visible;
}

body:not(.loading) .preloader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.loading {
  overflow: hidden;
}

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

ul {
  list-style: none;
}

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

/* --- Typography --- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-gold {
  background-color: var(--color-gold);
  color: var(--color-black);
}

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

.btn-outline-gold {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn-outline-gold:hover {
  background-color: var(--color-gold);
  color: var(--color-black);
}

.btn-transparent {
  border-color: #000000;
  color: #000000;
  background-color: transparent;
}

.btn-transparent:hover {
  background-color: #000000;
  color: #ffffff;
}

.btn-hero {
  background-color: transparent;
  color: #000000;
  border: 2px solid #000000;
  padding: 0.7rem 1.8rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
}

.btn-hero.active {
  background-color: #008697;
  /* Turquoise */
  color: #000000;
  border-color: #008697;
}

.btn-hero:hover {
  background-color: #008697;
  /* Turquoise on hover/touch */
  color: #000000;
  border-color: #008697;
}

.btn-hero.active:hover {
  background-color: #008697;
  border-color: #008697;
  color: #000;
}

.btn-link {
  border-bottom: 2px solid var(--color-gold);
  padding: 0.5rem 0;
  color: var(--color-charcoal);
  font-family: var(--font-heading);
  font-weight: 700;
}

.btn-link:hover {
  color: var(--color-gold);
}

/* --- Premium Buttons --- */
.btn-primary-gold {
  background: linear-gradient(135deg, #e4b257 0%, #c49642 100%);
  color: #000;
  border-radius: 50px;
  padding: 1.2rem 3rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 320px;
}

.btn-outline-white {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 0.8rem 1.5rem;
  font-size: 0.8rem;
  flex: 1;
  text-align: center;
}


/* --- Navigation & Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  /* Extremely high to stay in front */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  background: transparent;
  /* Immersion restored */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-left,
.header-right {
  flex: 1;
}

.header-left {
  display: flex;
  justify-content: flex-start;
}

.header-right {
  display: flex;
  justify-content: flex-end;
}

.header-center {
  flex: 0 0 auto;
  text-align: center;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(-15px);
  pointer-events: none;
}

.site-header.scrolled {
  background: #ffffff;
  /* White when scrolling */
  padding: 0.7rem 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  z-index: 1001;
}

.menu-toggle .bar {
  width: 25px;
  height: 2px;
  background-color: #ffffff;
  transition: 0.3s;
}

.site-header.scrolled .menu-toggle .bar {
  background-color: #000000;
  /* Black bars on white background */
}

.menu-toggle:hover .bar {
  background-color: #1a1a1a;
}

.site-header.scrolled .header-center {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.logo-text {
  font-family: var(--font-heading);
  color: #ffffff;
  /* White by default */
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  display: block;
  letter-spacing: 2px;
  text-align: center;
}

.site-header.scrolled .logo-text {
  color: #000000;
  /* Black on White background */
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--color-gold);
  letter-spacing: 4px;
  display: block;
  margin-top: 4px;
  opacity: 0.8;
  font-weight: 400;
}

.header-btn-box {
  background-color: #008697;
  /* Teal Box */
  padding: 0.7rem 1.6rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  color: #1a1a1a !important;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.header-btn-box:hover {
  background-color: #ffffff;
  color: #000000 !important;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.nav-actions {
  display: none;
}

/* --- Off-Canvas Menu --- */
.off-canvas-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background-color: var(--color-white);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  flex-direction: column;
  padding: 4rem 2rem 2rem;
  overflow-y: auto;
  overflow-x: hidden;
}

.off-canvas-menu.active {
  transform: translateX(0);
}

.close-menu {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: #000000;
  font-size: 2rem;
  cursor: pointer;
}

.main-nav ul {
  margin-top: 2rem;
}

.main-nav li {
  margin-bottom: 2rem;
}

.main-nav a {
  color: #000000;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav a:hover {
  color: #008697;
  padding-left: 10px;
}

.menu-footer {
  margin-top: auto;
  color: #000000;
  font-size: 0.9rem;
}

.social-links {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.social-links .icons {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  font-family: var(--font-heading);
  font-size: 1rem;
}

@media (max-width: 480px) {
  .off-canvas-menu {
    padding: 3rem 2rem;
  }

  .main-nav a {
    font-size: 1.5rem;
  }

  .main-nav li {
    margin-bottom: 1.2rem;
  }
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding-left: 10%;
}

.hero-slider,
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out, transform 6s linear;
  transform: scale(1);
  z-index: 0;
  display: flex;
  /* Default display */
}

.mobile-only {
  display: none !important;
}

.slide.active {
  opacity: 1;
  transform: scale(1.1);
  /* Gentle Zoom Effect */
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 800px;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-actions .btn {
  margin: 0;
}

.hero-actions > .btn:first-child {
  width: 100%;
  max-width: 340px;
}

.hero-subtitle {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 5px;
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
  font-weight: 300;
  text-transform: uppercase;
  color: #ffffff;
}

.hero-main-title {
  display: block;
  font-size: clamp(3rem, 10vw, 7rem);
  text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
  color: #fff;
}

.hero-divider {
  display: none;
  /* Only show on mobile */
}

.hero-section .hero-description {
  font-size: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: 2.5rem;
  max-width: 600px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
  color: #fff;
}

.hero-secondary-actions {
  display: flex;
  gap: 1.5rem;
  /* Match mobile button width style for desktop */
  width: 100%;
  max-width: 340px;
}

.btn-primary-gold:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

.scroll-indicator {
  position: absolute;
  bottom: 80px;
  /* Above sticky footer */
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  z-index: 3;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.scroll-indicator .line {
  width: 1px;
  height: 40px;
  background-color: #ffffff;
  animation: fadeInOut 2s infinite;
}

@keyframes fadeInOut {

  0%,
  100% {
    opacity: 0.2;
  }

  50% {
    opacity: 1;
  }
}

/* --- Content Blocks (Main Layout) --- */
.content-block {
  display: flex;
  flex-wrap: wrap;
  min-height: 80vh;
  /* Large sections */
}

.content-block.left-image {
  flex-direction: row-reverse;
}

.image-container {
  flex: 1;
  min-width: 300px;
  background-size: cover;
  background-position: center;
  min-height: 400px;
}

.text-container {
  flex: 1;
  min-width: 300px;
  padding: 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.bg-dark {
  background-color: var(--color-white);

}

.text-white {
  color: #000000;

}

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

.text-light {
  color: #000000;

}

.sub-heading {
  color: var(--color-gold);
  font-size: 1rem;
  margin-bottom: 1rem;
  font-family: var(--font-body);
  /* Monospaced or simple */
}

.heading {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--color-charcoal);
}

.text-white {
  color: #000000;

}

.separator {
  width: 60px;
  height: 3px;
  background-color: var(--color-charcoal);
  margin-bottom: 2rem;
}

.separator.bg-gold {
  background-color: var(--color-gold);
}

.description {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

/* --- Marquee Section --- */
.marquee-section {
  padding: 6rem 0;
  overflow: hidden;
  background-color: #ffffff;

}

.section-header {
  margin-bottom: 4rem;
  text-align: center;
}

.marquee-wrapper {
  width: 100%;
}

.marquee-container {
  display: flex;
  gap: 2rem;
  padding-right: 2rem;
  width: max-content;
  animation: scrollMarquee 40s linear infinite;
  will-change: transform;
}

.dish-card {
  min-width: 300px;
  min-width: 300px;
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.05);

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.dish-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.dish-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-info {
  padding: 2rem;
}

.card-info h3 {
  margin-bottom: 0.5rem;
  color: var(--color-charcoal);
  font-size: 1.2rem;
}

.card-info p {
  color: #000000;

  font-size: 0.9rem;
}

@keyframes scrollMarquee {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Modal Popup Styles */
.dish-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
}

.dish-modal.active {
  display: flex;
}

.dish-modal-content {
  position: relative;
  width: 90vw;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dish-modal-content img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.dish-modal-close {
  position: fixed;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 50px;
  font-weight: bold;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 10001;
}

.dish-modal-close:hover {
  color: #E4B257;
}

.dish-modal-title {
  position: fixed;
  bottom: 30px;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
  font-size: 2rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* --- Sticky Footer --- */
.sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: var(--color-white);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3rem;
  color: #000000;
  font-family: var(--font-heading);
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.footer-info {
  display: flex;
  gap: 2rem;
}

.footer-actions {
  display: flex;
  gap: 2rem;
}

.footer-actions a {
  font-weight: 700;
}

/* --- Main Footer --- */
.site-footer {
  padding: 2.5rem 1rem 4.5rem;
  background-color: var(--color-white);
  color: var(--color-black);
  border-top: 1px solid rgba(0, 0, 0, 0.05);

}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  text-align: left;
}

.footer-left {
  flex: 1;
}

.footer-right {
  flex: 0 0 auto;
}

.footer-contact-info h4 {
  color: var(--color-gold);
  font-family: var(--font-heading);
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.footer-contact-info p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.footer-socials {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  transition: transform 0.3s ease;
}

.footer-socials a:hover {
  transform: translateY(-3px);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-nav a {
  color: #000000;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

.copyright-bar {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.copyright-bar p {
  font-size: 0.8rem;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 1.5rem;
  }

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

/* --- Animations --- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
  .site-header {
    padding: 0.6rem 0.8rem;
    gap: 0.5rem;
  }

  .header-left,
  .header-right {
    flex: 0 0 auto;
    /* Let content dictate width on mobile */
  }

  .header-center {
    flex: 1;
    /* Allow center to take available space */
    padding: 0 5px;
    min-width: 0;
  }

  .header-btn-box {
    display: block;
    font-size: 0.55rem;
    padding: 0.35rem 0.6rem;
    white-space: nowrap;
    letter-spacing: 0.5px;
  }

  .logo-text {
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    white-space: nowrap;
    line-height: 1.1;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100vw - 120px);
  }



  .hero-section {
    justify-content: center;
    text-align: center;
    padding-left: 0;
  }

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

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

  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }

  /* Premium Mobile Hero */
  .hero-section {
    height: 100vh;
    padding: 0;
    justify-content: center;
    align-items: flex-start;
  }

  .hero-content {
    margin-top: 15vh;
    padding: 0 2rem;
    width: 100%;
    z-index: 10;
  }

  .hero-text-wrapper {
    margin-bottom: 2rem;
  }

  .hero-subtitle {
    display: block;
    color: #ffffff;
    font-size: 0.9rem;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
  }

  .hero-main-title {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
  }


  .hero-divider {
    width: 100px;
    height: 1px;
    background: linear-gradient(to right, transparent, #e4b257, transparent);
    margin: 1.5rem auto;
  }

  .hero-section .hero-description {
    color: #fff;
    font-size: 1rem;
    opacity: 0.8;
    margin: 0 auto 3rem;
    max-width: 300px;
    line-height: 1.5;
    text-shadow: none;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
  }

  .hero-actions > .btn:first-child {
    width: 100%;
    max-width: 320px;
  }

  .hero-secondary-actions {
    display: flex;
    gap: 1rem;
    width: 100%;
    max-width: 320px;
  }

  .hero-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.7) 100%);
  }

  .slide.mobile-only {
    transform: scale(1.1);
  }


  .content-block {
    flex-direction: column !important;
  }

  .text-container {
    padding: 2.5rem 1rem;
    order: 2;
  }

  .image-container {
    min-height: 250px;
    order: 1;
  }

  /* Standardize internal page headers for mobile */
  .page-header-gold {
    min-height: 30vh !important;
    padding-bottom: 2rem !important;
  }

  .page-header-gold .hero-title .line-2 {
    font-size: 2rem !important;
  }

  /* General Grid & Container fixes */
  .container {
    padding: 0 1.5rem !important;
  }

  .grid,
  .contact-grid,
  .service-grid {
    gap: 1.5rem !important;
    grid-template-columns: 1fr !important;
  }

  .sticky-footer {
    height: 60px;
    padding: 0 1rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    /* Center buttons if info hidden */
    align-items: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);

    backdrop-filter: blur(5px);
  }

  .footer-info {
    display: none;
    /* Hide address on phone screens to avoid crowding */
  }

  .footer-actions {
    width: 100%;
    display: flex;
    justify-content: space-around;
    gap: 0.5rem;
  }

  .footer-actions a {
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding: 0.6rem 0.5rem;
    flex: 1;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #000;
  }

  .footer-actions a:hover {
    background: var(--color-teal);
    color: #fff;
    border-color: var(--color-teal);
  }

  /* Marquee fixes for mobile */
  .marquee-section {
    padding: 3rem 0;
  }

  .heading {
    font-size: 2.2rem;
  }

  .dish-card {
    min-width: 250px;
  }

  .dish-card img {
    height: 180px;
  }

  /* Fix for overlapping content and footer */
  .site-footer {
    padding-bottom: 80px !important;
  }

  .scroll-indicator {
    color: #fff;
    bottom: 40px;
  }

  .scroll-indicator .line {
    background-color: #fff;
  }
}

/* --- Golden Page Header (Standardized) --- */
.page-header-gold {
  background-color: var(--color-white);
  /* Gold Background */
  height: 40vh;
  min-height: 300px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* Ensure it sits behind fixed header if needed, but usually static */
  margin-bottom: 2rem;
}

.page-header-gold h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  color: #ffffff;

  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 5px;
  margin: 0;
  /* text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); */
}