/* =========================
   ROOT VARIABLES
========================= */
:root {
  --color-bg: #000;
  --color-text: #C0C0C0;
  --color-accent: #c09745;
  --color-accent-hover: #a88d4f;
  --color-white: #fff;

  --transition: 0.3s ease;
}

/* =========================
   GLOBAL RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
  padding-top: 0px;
}

/* =========================
   GLOBAL IMAGE GOLD BORDER
========================= */
img {
  max-width: 100%;
  height: auto;
  display: block;
  box-sizing: border-box;
}



/* =========================
   GLOBAL TYPOGRAPHY
========================= */
h1 {
  color: var(--color-text);
}

h2 {
  color: var(--color-accent);
}

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

h2 a {
  color: var(--color-accent);
  text-decoration: none;
}

/* =========================
   GLOBAL LINKS
========================= */
a {
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  text-decoration: underline;
}

a.accent,
a[href^="tel:"],
a[href^="mailto:"],
.logo a,
.location a,
.footer a.phone-number {
  color: var(--color-accent);
  font-weight: 500;
}

/* =========================
   WRAPPER
========================= */
.site-wrapper {
  width: 90%;
  margin: 0 auto;
  position: relative;
  padding-top: 80px;
}

/* =========================
   HEADER
========================= */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 75px;
  background: rgba(0,0,0,0.9);
  z-index: 1000;
}

.header-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  column-gap: 40px;
  row-gap: 8px;
  padding: 8px 10px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.logo {
  font-size: 24px;
  font-weight: 600;
  padding-left: 12px;
}

.header-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  column-gap: 15px;
  row-gap: 6px;
}

.header-nav a {
  font-size: 23px;
  padding: 5px 8px;
  margin: 0;
  white-space: nowrap;
  color: var(--color-text);   /* ensures they’re your default text color */
  font-weight: 600;           /* optional, for emphasis */
  text-decoration: none;      /* reset underline if needed */
}

.header-nav a:hover {
  color: var(--color-accent); /* gold on hover */
  text-decoration: underline; /* optional hover underline */
}

/* =========================
   HERO
========================= */
.hero {
  padding-top: 0;
}

.hero img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.hero-title {
  text-align: center;
  font-size: 1.8rem;
  margin: 15px 0 10px;
  font-weight: 600;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

/* =========================
   PORTRAIT
========================= */
.portrait {
  display: flex;
  flex-direction: column;
  margin: 20px 0;
}

.portrait img {
  border: 2px solid var(--color-accent);
  border-radius: 5px;
}

.portrait-image {
  max-width: 30%;
  margin: auto;
}

.portrait-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.portrait-text {
  padding: 25px;
  background: rgba(0,0,0,0.6);
  max-width: 900px;
  margin: 20px auto;
  text-align: center;
}

.portrait-text h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* PORTRAIT H2 LINK HOVER */
.portrait-text h2 a {
  color: var(--color-text);          
  text-decoration: none;             
  transition: color 0.3s ease, transform 0.3s ease, text-decoration 0.3s;
}

.portrait-text h2 a:active,
.portrait-text h2 a:focus {
  color: var(--color-accent);
  transform: scale(1.05);
  text-decoration: underline;       
}

.portrait-text p {
  max-width: 800px;
  margin: auto;
}

/* =========================
   ANIMATIONS
========================= */
.slide-left,
.slide-right {
  opacity: 0;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.slide-left { transform: translateX(-180px); }
.slide-right { transform: translateX(180px); }

.slide-visible {
  transform: translateX(0);
  opacity: 1;
}

.fade-in p {
  opacity: 0;
  transition: opacity 2s ease-out;
}

.fade-in p.fade-visible {
  opacity: 1;
}

/* =========================
   LANDSCAPE
========================= */
.landscape img {
  width: 100%;
  display: block;
}

/* =========================
   SERVICE AREA
========================= */
.service-area {
  text-align: center;
  max-width: 800px;
  margin: auto;
  padding: 20px;
}

/* =========================
   Map Section
========================= */
.google-map-section a {
  display: block;
  overflow: hidden;
  border-radius: 12px;
}

.google-map-section img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;

  transition:
    transform 0.25s ease,
    filter 0.25s ease,
    opacity 0.25s ease;

  cursor: pointer;
}

/* Desktop hover */
.google-map-section a:hover img {
  transform: scale(1.01);
  filter: brightness(1.08);
}

/* Mobile tap */
.google-map-section a:active img {
  transform: scale(0.99);
  filter: brightness(1.15);
}

/* =========================
   LOCATION
========================= */
.location {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 30px;
  text-align: center;
}

.location h2 {
  margin-bottom: 20px;
}

.location p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.location a {
  font-size: 1.5rem;
  font-weight: 600;
}

.location-address {
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.7;
}

.location-address strong {
  font-weight: 600;
}

.location-address a {
  color: var(--color-accent);
  font-weight: 500;
}

/* =========================
   BUSINESS INFO & HOURS
========================= */
.business-info-section {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;       /* keep items side by side */
  align-items: center;
  margin: 40px auto;       /* center on page */
  padding: 20px 30px;      /* space inside gold box */
  max-width: 1200px;       /* optional: prevents absurdly wide box on huge screens */
  background-color: rgba(0,0,0,0.1);
  border: 2px solid var(--color-accent);
  border-radius: 10px;
  box-sizing: border-box;
  gap: 20px;               /* spacing between location & hours */
  width: auto;             /* crucial: let content define width */
}

.business-info,
.business-hours {
  flex: 1 1 270px;
  min-width: 270px;
}

.business-info {
  text-align: left;
}

.business-hours {
  text-align: right;
  font-size: 0.85rem;
}

.reviews-link {
  flex: 0 0 auto;
  text-align: left;
}

.reviews-link a {
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-decoration: none;
}

.reviews-link a:hover {
  text-decoration: underline;
}

/* =========================
   BUTTON
========================= */
.booking-button {
  display: inline-block;
  margin-top: 10px;
  padding: 14px 28px;
  border-radius: 30px;
  background: #1c232a;
  color: var(--color-accent);
  font-weight: 600;
  border: 2pt solid var(--color-accent);
  transition: var(--transition);
}

.booking-button:hover {
  background: #2e3031;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(192,151,69,0.4);
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background-color: #000;
  color: #fff;
  padding: 20px 10px;       /* top + left/right padding */
  padding-bottom: 50px;     /* make sure there’s enough space below social icons */
  font-size: 12pt;
  font-family: Arial, sans-serif;
  box-sizing: border-box;   /* ensure padding is counted in height */
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

.footer-col p {
  margin: 2px 0;
}

.footer-logo-img {
  max-width: 200px;  /* full size on large screens */
  height: auto;
  margin-bottom: 10px;
}

/* Social icons */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}


.footer-social a {
  width: 40px;
  height: 40px;
  color: var(--color-accent);
  display: inline-flex;
}

.footer-social svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.footer-social a:hover {
  color: var(--color-accent-hover);
  transform: scale(1.1);
}

/* =========================
   MOBILE-FIRST RESPONSIVE STYLES
========================= */
@media (max-width: 480px) {
  .site-header { height: auto; }
  .header-inner { padding: 8px 10px; }

  .logo {
    font-size: 0.85rem;
  }

  .header-nav {
    width: 100%;
    column-gap: 10px;
    row-gap: 6px;
  }

  .header-nav a {
    font-size: 0.65rem;
    padding: 4px 6px;
  }

  .hero {
    padding-top: 55px;
  }

  .hero-title {
    font-size: 1rem;
  }

  .landscape {
    margin-bottom: 6px;
  }

  .portrait-image {
    max-width: 95%;
    margin-bottom: 6px;
  }

  .portrait-text {
    padding: 10px;
    font-size: 0.75rem;
    text-align: center;
  }

  .portrait-text h2 {
    font-size: 1rem;
  }

  .portrait-text p {
    font-size: 0.75rem;
  }

  .portrait-image img,
  .landscape img {
    width: 100%;
    height: auto;
  }
}
/*media-768 or larger screens*/
@media (max-width: 768px) {
  .site-wrapper {
    width: 100%;
    padding: 0 10px; /* optional padding to avoid flush edges */
  }

  .site-header { height: auto; }
  .header-inner { padding: 10px 15px; }
  .header-nav { width: 100%; }

  .logo {
    font-size: 16px;
    font-weight: 600;
  }

  .header-nav a {
    font-size: 0.75rem;
    padding: 6px 8px;
  }

  .hero-title {
    font-size: 1.2rem;
  }

  .portrait-image {
    max-width: 90%;
    margin-bottom: 8px;
  }

  .portrait-text h2 {
    font-size: 1.2rem;
  }

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

  .portrait-text h2 a:hover {
    color: var(--color-accent);
    transform: scale(1.05);
    text-decoration: underline;
  }

  .portrait-text p {
    font-size: 0.85rem;
  }
/* Business Infomation Section */
  .business-info-section {
    width: 98%;
    flex-wrap: wrap;
    gap: 40px;
  }

  .business-info,
  .business-hours {
    flex: 1 1 300px;
    min-width: 280px;
    font-size: 8px;
    text-align: center;
  }

  .footer-inner {
    flex-direction: column !important; /* force stacking */
    align-items: center !important;    /* center columns */
    text-align: center !important;     /* center text */
    gap: 20px;                         /* spacing between stacked items */
  }

  .footer-logo-img {
    max-width: 200px;
    margin: 0 auto;
  }

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

@media (min-width: 769px) {
  .portrait-text h2 a:hover {
    color: var(--color-accent);
    transform: scale(1.05);
    text-decoration: underline;
  }

  .footer-inner {
    display: flex;
    flex-direction: row;       /* keep 3 columns side by side */
    justify-content: space-between; /* spread columns evenly */
    align-items: flex-start;   /* top-align the columns */
    text-align: center;        /* center text inside each column */
    gap: 10px;                 /* space between columns */
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer-col {
    flex: 1;                   /* let columns take equal space */
    text-align: center;         /* center text inside column */
  }

  .footer-logo-img {
    margin: 0 auto;            /* center logo inside its column */
  }
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 1.4rem;
  }

  .portrait-image {
    max-width: 60%;
    margin-bottom: 10px;
  }

  .portrait-text {
    font-size: 1rem;
  }

  .landscape {
    margin-bottom: 10px;
  }

  .business-info-section {
    width: 98%;
    gap: 15px;
  }

  .business-info,
  .business-hours {
    font-size: 0.85rem;
  }
}
