
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;      /* Firefox */
  -ms-overflow-style: none;   /* IE 10+ */
}
body { padding-top: 80px; }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  width: 100vw; height: 100vh;
  background: #000;
  z-index: -2;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  width: 100vw; height: 100vh;
  background: url('../images/Header-Updated.png') no-repeat center center;
  background-size: cover;
  z-index: -1;
  opacity: 1;
}

img {
  pointer-events: none;
  user-select: none;
}

img {
  pointer-events: none;
  user-select: none;
}

/* ========== NAVIGATION ========== */
nav {
  position: fixed;
  top: 0; left: 0; width: 100%;
  height: 80px;
  padding: 0 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  background: rgba(0,0,0,0.5);
  box-shadow: 0 8px 16px rgba(0,0,0,0.25);
  backdrop-filter: blur(14px);
  z-index: 1000;
}
nav .logo img {
  height: clamp(26px, 5vw, 40px);
  margin-left: clamp(-37px, -2vw, 0px);
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  padding: 6px 16px;
  transition: 0.3s;
}
nav ul li a:hover { color: #f0c040; }

/* ========== HERO SECTION ========== */
.main-section {
  min-height: 92vh;
  padding: 8vh 10vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: left;
  position: relative;
}
.main-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
.tagline {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
}
.tagline h1 { font-size: 3rem; font-weight: bold; }
.tagline h2 { font-size: 1.8rem; font-weight: 500; }
.tagline p { font-size: 1.2rem; font-weight: 300; opacity: 0.9; }

.cta-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 12px 24px;
  background-color: #f0c040;
  color: #000;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}
.cta-btn:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}
#fade-image {
  max-width: 500px;
  height: auto;
  object-fit: contain;
  transition: opacity 1s ease;
}

/* ========== SOCIAL LINKS ========== */
.social-links-inline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 16px;
  color: white;
  font-size: 1rem;
  background: rgba(128,128,128,0.4);
  border-radius: 10px;
  margin: 0 auto;
  max-width: fit-content;
}
.social-links-inline a {
  color: white;
  text-decoration: none;
}

/* ========== SLIDER ========== */
.artwork-slider {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
}
.slider-track {
  display: flex;
  gap: 40px;
  animation: scrollSlider 40s linear infinite;
  width: max-content;
}
.slider-track img {
  height: 350px;
  object-fit: contain;
}
@keyframes scrollSlider {
  0% { transform: translateX(0);}
  100% { transform: translateX(-50%);}
}


#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

#preloader-logo {
  width: clamp(100px, 20vw, 300px);
  height: auto;
  object-fit: contain;
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* ========== SERVICES ========== */
.service-section {
  background: rgba(0,0,0,0.6);
  padding: 80px 10vw;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.service-block {
  flex: 1 1 260px;
  max-width: 350px;
  color: #fff;
  text-align: center;
  font-size: 1rem;
}

/* ========== FOOTER ========== */
footer {
  background: rgba(0,0,0,0.1);
  backdrop-filter: blur(50px);
  text-align: center;
  height: 98px;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer img { height: 45px; }

/* ========== HAMBURGER & OVERLAY ========== */
#hamburger-toggle {
  display: none;
  position: fixed;
  top: 25px; right: 25px;
  width: 35px; height: 30px;
  z-index: 1100;
  cursor: pointer;
}
#hamburger-toggle span {
  position: relative;
  display: block;
  background: white;
  height: clamp(1.5px, 0.25vw, 2px);
  width: clamp(12px, 7vw, 25px);
  top: 50%;
  transform: translateY(-50%);
  transition: background 0.4s;
}
#hamburger-toggle span::before,
#hamburger-toggle span::after {
  content: "";
  position: absolute; left: 0;
  background: white;
  height: clamp(1.5px, 0.25vw, 2px);
  width: 100%;
  transition: transform 0.4s, top 0.4s;
}
#hamburger-toggle span::before { top: clamp(-7px, -2vw, -10px); }
#hamburger-toggle span::after  { top: clamp(7px, 2vw, 10px); }
#hamburger-toggle.open span { background: transparent; }
#hamburger-toggle.open span::before { transform: rotate(45deg); top: 0; }
#hamburger-toggle.open span::after  { transform: rotate(-45deg); top: 0; }

#fullscreen-overlay {
  display: flex;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.95);
  clip-path: circle(0% at 100% 0);
  transition: clip-path 0.8s ease-in-out;
  z-index: 1090;
  justify-content: center;
  align-items: center;
}
#fullscreen-overlay.active {
  clip-path: circle(150% at 100% 0);
}
#fullscreen-overlay ul {
  list-style: none;
  text-align: center;
  padding: 0;
}
#fullscreen-overlay ul li { margin: 20px 0; }
#fullscreen-overlay ul li a {
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}
#fullscreen-overlay ul li a:hover { color: #ccc; }


/* ========== RESPONSIVE (Mobile) ========== */
@media (max-width: 768px) {
  .main-content-wrapper {
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .cta-btn {
    font-size: 0.95rem;
    font-weight: 500;
    padding: 9px 18px;
    min-width: unset;   /* Remove any min-width */
    width: 180px;
    display: inline-block;
    margin: 1.2rem auto 0 auto; /* Center horizontally */
  }

  .tagline {
    gap: .6rem;
    max-width: 500px;
  }

  .tagline h1 { font-size: 2rem; font-weight: 500 !important; }
  .tagline h2 { font-size: 1.2rem; font-weight: 350; }
  .tagline p { font-size: .7rem; font-weight: 200; opacity: 0.9; }
  
  nav {
    padding: 15px 5vw;
  }

  nav .logo img { margin-left: 5px; }
  nav ul { display: none !important; }
  #hamburger-toggle { display: block; }
  #fade-image { max-width: 400px; }

  .service-section {
    gap: 0;
    padding: 0;
  }
  .service-block {
    font-size: 0.6rem;
    padding: 20px 10px 20px 10px;
    font-weight: 120;
  }
  .social-links-inline { gap: 10px; padding: 12px; }
  .social-links-inline a { font-size: 16px; }
  
  footer {
        height: auto;
        padding: 20px 0;
      }

      footer img {
        height: 35px;
        display: block;
        margin: 0 auto;
}

/* ========== TABLET RANGE RESPONSIVE ========== */
@media (max-width: 1138px) and (min-width: 769px) {
  .main-section {
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 85vh;
  }
  .main-content-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .tagline h1 { font-size: 2.1rem; }
  .tagline h2 { font-size: 1.1rem; }
  .tagline p { font-size: 0.7rem; }
  #fade-image { max-width: 430px; }
  .service-section { gap: 30px; padding: 50px 6vw; }
  .service-block { max-width: 98vw; }
  
  footer {
        height: auto;
        padding: 20px 0;
      }

      footer img {
        height: 35px;
        display: block;
        margin: 0 auto;
      }
}
