@import url(about.css);
@import url(services.css);
@import url(testimonials.css);
@import url(portfolio.css);
@import url(faq.css);
@import url(contact.css);

:root {
  /* Colors */
  --primary: rgb(4, 3, 3);
  --gold-gradient: linear-gradient(
    135deg,
    #6f4e11 0%,
    #9b6d14 18%,
    #b8860b 35%,
    #d4af37 50%,
    #b8860b 65%,
    #9b6d14 82%,
    #b38022 100%
  );
  --accent: linear-gradient(
    135deg,
    #dfc430 0%,
    #a6761d 22%,
    #c99827 45%,
    #ddb64a 55%,
    #c99827 75%,
    #f3bb52 100%
  );
  --accent2: #d4af37;
  --muted: rgb(60, 58, 58);
  --text-secondary: #a29688;
  --text-tertiary: #fcf7f899;
  --text-quaternary: #fcf7f8bf;
  --white: white;
  --secondarybg: rgb(4, 3, 3);
  --tertiarybg: #f7f0f1;
  --bg: white;

  /* Sizes & Effects */
  --radius: 10px;
  --shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Lato", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--muted);
  line-height: 1.6;
  font-size: 16px;
  letter-spacing: 0.02em;
  background-attachment: scroll;
}

h1,
h2 {
  font-family: var(--font-heading);
  color: var(--primary);
}

h3,
h4,
h5,
h6 {
  font-family: var(--font-body);
  color: var(--primary);
}

.gold-text {
  background: linear-gradient(
    135deg,
    #755214 0%,
    #a6761d 22%,
    #c99827 45%,
    #ddb64a 55%,
    #c99827 75%,
    #8d6317 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card {
  background: var(--tertiarybg);
  border-radius: var(--radius);
  color: white;
  transition: transform 0.3s ease;
  text-decoration: none;
  display: block;
  overflow: hidden;
}

.card img:hover {
  transform: scale(1.02);
  opacity: 0.8;
}

.card img {
  display: block;
  height: 300px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

section {
  padding: clamp(4rem, 7vw, 6rem) clamp(1.5rem, 6vw, 4rem)
    clamp(3.5rem, 5vw, 4rem);
}

/* =============================
    Buttons
============================= */
.btn,
button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  font-family: var(--font-body);
}

.colored-btn {
  background: var(--accent);
  /* box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.12),
    inset 0 -2px 3px rgba(0, 0, 0, 0.18),
    0 6px 20px rgba(184, 134, 11, 0.25); */
  color: var(--white);
}

.btn:hover,
button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
}

.ri-arrow-right-up-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  height: 30px;
  width: 30px;
  font-size: 14px;
  background-color: var(--white);
  color: var(--primary);
}

.section-intro {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
  border: 1px solid var(--text-secondary);
  width: fit-content;
  padding: 0.2rem 0.6rem;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}

/* =============================
  NAVIGATION BAR
============================= */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease;
  transition: all 0.3s ease-in-out;
}

.navbar a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.nav-top {
  padding: 0.5rem clamp(1.5rem, 4vw, 4rem);
  background: var(--accent2);
  display: flex;
  justify-content: space-between;
}

.nav-top a {
  color: var(--white);
  font-weight: 600;
  font-size: 0.75rem;
}

.nav-logo-link {
  display: flex;
  line-height: 1.3;
  align-items: center;
  gap: 0.5rem;
}

.nav-left img {
  height: clamp(35px, 5vw, 40px);
  background: var(--primary);
  border-radius: 50%;
}

.nav-left p {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 4vw, 1.25rem);
  font-weight: 800;
  text-transform: none;
  letter-spacing: 2px;
  color: var(--primary);
}

.nav-bar-row {
  display: flex;
  padding: clamp(0.8rem, 2vw, 1rem) clamp(1.5rem, 4vw, 4rem);
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  box-shadow: var(--shadow);
}

.nav-bar-row a {
  color: var(--muted);
  font-weight: 600;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* --- DESKTOP NAV UNDERLINE --- */
.nav-right a:not(.btn) {
  position: relative;
  transition: color 0.3s ease;
}

/* The bar for Desktop only */
.nav-right a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px; /* Positions it slightly below the text */
  width: 0;
  height: 2px;
  background-color: var(--accent2);
  transition: width 0.3s ease-in-out;
}

/* Hover & Active state for Desktop */
.nav-right a:not(.btn):hover::after,
.nav-right a.active:not(.btn)::after {
  width: 100%;
}

/* --- MOBILE MENU ACTIVE (No Bar) --- */

.mobile-menu li a.active {
  color: var(--muted);
  font-weight: 600;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  padding: 0;
  position: relative;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.hamburger span:nth-child(2) {
  width: 70%;
  margin-left: 5px;
}

.hamburger span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  transform: translateY(-7px);
}

.hamburger span:nth-child(2) {
  transform: translateY(0);
}

.hamburger span:nth-child(3) {
  transform: translateY(7px);
}

.hamburger.active span {
  background: var(--primary);
}

.hamburger span:nth-child(1) {
  transform: translateY(-8px);
}

.hamburger span:nth-child(2) {
  transform: translateY(0);
}

.hamburger span:nth-child(3) {
  transform: translateY(8px);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
}

.mobile-menu .close-menu {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  font-weight: 400;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: fit-content;
  width: 100%;
  background-color: var(--accent2);
  z-index: 998;
  transform: translateY(-100%);
  transition: transform 0.4s ease-in-out;
  overflow-y: auto;
  padding-top: clamp(6rem, 6vw, 7rem);
  margin-top: clamp(0.5rem, 2vw, 2rem);
}

.mobile-menu.active {
  transform: translateY(0);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin: 0;
  padding: 0;
}

.mobile-menu li {
  list-style: none;
  width: 100%;
}

.mobile-menu li a {
  font-family: var(--font-body);
  display: block;
  padding: clamp(1rem, 3vw, 1.5rem);
  color: var(--white);
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(190, 189, 189, 0.4);
  font-size: 0.9rem;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 997;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

html.menu-open,
body.menu-open {
  overflow: hidden;
}

body.menu-open {
  touch-action: none;
}

/* =============================
  HERO SECTION
============================= */
.hero {
  position: relative;
  height: calc(100svh - clamp(4rem, 6vw, 6rem));
  margin-top: clamp(4rem, 6vw, 6rem);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  overflow: hidden;
  background-color: #1a1a1a;
}

.hero-video {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}

.hero-content {
  padding-top: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  max-width: 1200px;
  width: 100%;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 600;
  padding: 1rem 0;
  margin: 0;
  color: var(--white);
  max-width: 700px;
  line-height: 0.9;
}

.hero h1 + p {
  max-width: 600px;
  padding: 1rem 0;
  color: var(--accent2);
}

.hero-content .btn {
  margin-top: 1rem;
}

/* ====================
   PAGE CLOSE
======================= */
.page-close {
  position: relative;
}

.page-close img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1a1a1a;
  overflow: hidden;
  object-fit: cover;
  object-position: 50% 20%;
}

.page-close::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.7)
  );
}

.page-close-content {
  position: relative;
  color: var(--white);
  width: 100%;
  z-index: 3;
}

.page-close-content h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  line-height: 1;
  max-width: 800px;
}

.page-close-content h2 + p {
  padding: 2rem 0;
  justify-self: flex-end;
  max-width: 400px;
  font-size: 1.1rem;
}

.other-page-close {
  text-align: center;
  background: var(--tertiarybg);
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.other-page-close h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.2;
}

.other-page-close p {
  font-size: 1.1rem;
  margin: 1rem 0;
  max-width: 600px;
  justify-self: center;
}

/* ====================
   FOOTER SECTION
======================= */

footer {
  background: var(--primary);
}

.footer-column {
  display: flex;
  gap: 3rem;
  padding: clamp(4rem, 7vw, 6rem) clamp(1.5rem, 6vw, 4rem) 2rem;
}

.column1 h2 {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1;
  margin-bottom: 1rem;
}

.column1 p {
  color: var(--text-tertiary);
}

.column1 i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--text-tertiary);
  flex-shrink: 0;
  height: 35px;
  width: 35px;
  font-size: 16px;
  cursor: pointer;
}

.column1 i:hover {
  border: 1px solid var(--accent2);
  color: var(--accent2);
}

.social-icons {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.column2 address {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.column2 .footer-head {
  color: var(--text-tertiary);
}

.column2 p {
  color: var(--text-quaternary);
  font-style: normal;
  font-size: 0.9rem;
}

.column2 a {
  font-style: normal;
  font-size: 0.9rem;
}

.column2 a:hover {
  color: var(--accent2);
}

.footer-column a {
  color: var(--text-quaternary);
  text-decoration: none;
}

.column1,
.column2,
.column3 {
  flex: 1;
}

.column3 img {
  object-fit: cover;
  width: 100%;
  border-radius: var(--radius);
}

.footer-bottom {
  padding: 1rem clamp(1.5rem, 6vw, 4rem);
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--tertiarybg);
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.footer-bottom a {
  text-decoration: none;
  color: var(--text-secondary);
}

.footer-links {
  display: flex;
  gap: 1rem;
}

/* =============================
  SCROLL ANIMATION
============================= */

.reveal {
  opacity: 0;

  transition:
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-60px);
}

.reveal-right {
  transform: translateX(60px);
}

.reveal.active {
  opacity: 1;
  transform: translate(0, 0);
  pointer-events: auto;
}

/* Card 1: Default delay */
.card:nth-child(2) {
  transition-delay: 0.2s;
}
.card:nth-child(3) {
  transition-delay: 0.4s;
}

/* =============================
  SCROLL TO TOP AND WHATSAPP BUTTON
============================= */

.fixed-actions {
  position: fixed;
  bottom: 10px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 990;
}

.action-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

/* Scroll to Top Specifics */
#scrollTopBtn {
  border-radius: var(--radius);
  background: var(--accent2);
  backdrop-filter: blur(12px);
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

#scrollTopBtn.show {
  opacity: 0.5;
  visibility: visible;
  transform: translateY(0);
}

/* WhatsApp Specifics */
.whatsapp-btn {
  background: #25d366;
  color: white;
  position: relative;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  background: #20ba5a;
}

/* Optional Tooltip for WhatsApp */
.tooltip {
  position: absolute;
  right: 60px;
  background: #333;
  color: white;
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}

.whatsapp-btn:hover .tooltip {
  opacity: 1;
}

/* ===================
   MOBILE RESPONSIVENESS
======================*/

@media (max-width: 1024px) {
  .hero::before {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.7)
    );
  }

  .about,
  .form-pad,
  .footer-bottom {
    flex-direction: column;
  }

  .contact-pad,
  .form-wrapper {
    flex: 1;
    width: 100%;
  }

  .about-left,
  .about-right {
    flex: 1;
  }

  .about-image1,
  .about-image2 {
    transform: none;
  }

  .about-image:hover .about-image1 {
    transform: none;
  }

  .about-image:hover .about-image2 {
    transform: none;
  }

  .footer-bottom {
    align-items: center;
    gap: 0.5rem;
  }

  .form-pad .form-wrapper,
  .booking-section .form-wrapper {
    width: 100%;
  }

  .footer-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 900px) {
  .nav-top span {
    display: none;
  }

  .nav-right {
    display: none;
  }

  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .portfolio-stats-bar .divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .about-image {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .about-image1,
  .about-image2 {
    position: static;
    width: 100%;
    aspect-ratio: 4/3;
    transform: none;
    min-height: 0;
  }

  .about-image2 {
    margin-top: 0;
  }

  .form-pad .form-wrapper .form-row {
    flex-direction: column;
    gap: 0;
  }

  .footer-column {
    display: flex;
    flex-direction: column;
  }

  .column1 p {
    max-width: 100%;
  }

  .column3 img {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 600px) {
}

@media (max-width: 550px) {
  /* .nav-left p {
    display: none;
  } */

  .hero h1 + p {
    padding: 0.5rem 0;
    font-size: 0.9rem;
  }

  .hero .btn-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 400px) {
  .about-image1,
  .about-image2 {
    position: static;
    aspect-ratio: 4/5;
  }

  .contact-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .fixed-actions {
    right: 10px;
  }
}
