@charset "UTF-8";
/* CSS Document */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
    height: 100%;
}
	:root {
      --yellow: #F5C842;
      --yellow-dark: #e0b320;
      --dark: #1a1a1a;
      --mid: #444;
      --border: #c9a800;
      --header-h: 100px;
	--highlight: #fff200;
  --featuredark: #1a1a1a;
  --radius: 20px;
    }
	  
    body {
      overflow-x: hidden;
      font-family: 'DM Sans', sans-serif;
		background: #f2f2f2; /* #d2d1d1;*/
		display: flex; 
		flex-direction: column; 
		min-height: 100vh;
    }

main { flex: 1; }

.full-screen-book {
	width: 100%;
	height: 100%;
	background-image: url('../images/pagehead1.jpg');
	background-size: cover;
	background-position: center;
	padding-top: 30px;
	padding-left: 10px;
	box-sizing: border-box;
}
    /* ══════════════════════════════════════════
       HEADER WRAPPER  – positions logo on top
    ══════════════════════════════════════════ */
    #site-header {
      position: relative;
      width: 100%;
    }

    /* ── TOP NAV BAR (100px) ── */
    #topnav {
      width: 100%;
      height: 100px;
      background-image: url('../images/topnav-bg.png');
      background-repeat: repeat-x;
      background-size: auto 100%;
		
		display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 32px 0 24px;
      position: relative;
    }

    /* ── HERO SECTION (500px) ── */
    #hero {
      position: relative;
      width: 100%;
      height: 500px;
      overflow: hidden;
    }

#hero-main {
      position: relative;
      width: 100%;
      height: 220px;
      overflow: hidden;
    }
    /* Layer 1 – sliding neighbourhood image (native 5000×1000px)
       The image is rendered at its true pixel dimensions so there
       is zero stretching / pixelation. GSAP translates it within
       the container, which is overflow:hidden. The vertical range
       is 0 → -(1000-500) = -500px so the full 500px container is
       always covered. Horizontal range is 0 → -(5000-vw). */
    #hero-img-wrap {
      position: absolute;
      top: 0;
      left: 0;
      width: 5000px;
      height: 1000px;
      will-change: transform;
    }

    #hero-img-wrap img {
      width: 5000px;
      height: 1000px;
      display: block;
    }

    /* Layer 2 – gradient overlay strip (119px, repeat-x) */
    #hero-gradient {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 119px;
      background-image: url('../images/head-bg.png');
      background-repeat: repeat-x;
      background-size: auto 119px;
      z-index: 2;
      pointer-events: none;
    }

    /* Layer 3 – text overlay */
    #hero-text {
      position: absolute;
      top: 50%;
      right: 5%;
      transform: translateY(-50%);
      z-index: 3;
      text-align: right;
      pointer-events: none;
    }

    #hero-text .tagline {
      font-family: 'Candal', sans-serif;
      font-size: clamp(1.4rem, 3.2vw, 3.1rem);
      color: rgba(255, 255, 255, 0.88);
      text-shadow: 2px 3px 6px rgba(0,0,0,0.75), 0 1px 2px rgba(0,0,0,0.9);
      letter-spacing: 0.04em;
      line-height: 1.2;
      white-space: nowrap;
    }

    #hero-text .rotating-city {
      font-family: 'Candal', sans-serif;
      font-size: clamp(2.5rem, 6.2vw, 3.9rem);
      color: rgba(255, 255, 255, 0.92);
      text-shadow: 2px 4px 8px rgba(0,0,0,0.85), 0 2px 3px rgba(0,0,0,0.95);
      letter-spacing: 0.06em;
      line-height: 1.4;
      min-height: 1.4em;
      display: block;
      opacity: 0;
    }

    /* ── LOGO (absolute, overlays everything) ── */
    #logo-wrap {
      position: absolute;
      top: 39px;
      left: 85px;
      z-index: 10;
      width: 362px;
      height: 172px;
    }

    #logo-wrap a {
      display: block;
      width: 100%;
      height: 100%;
    }

    #logo-wrap img {
      width: 275px;
      height: 131px;
      display: block;
    }

    /* ══════════════════════════════════════════
       MOBILE  ≤ 768px
    ══════════════════════════════════════════ */
    @media (max-width: 768px) {

      #logo-wrap {
        top: 10px; /*70*/
        left: 20px;
        width: 181px;
        height: 86px;
      }

      #logo-wrap img {
        width: 181px;
        height: 86px;
      }

      #hero {
        height: 400px;
      }

      #hero-text {
        right: 3%;
      }

      #hero-text .tagline {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
      }

      #hero-text .rotating-city {
        font-size: clamp(1.5rem, 5.5vw, 2.4rem);
      }
    }

    @media (max-width: 480px) {
      #hero-text .tagline  { font-size: clamp(1rem, 4.5vw, 1.4rem); }
      #hero-text .rotating-city { font-size: clamp(1.3rem, 6vw, 1.9rem); }
    }

	 /*********************NAV*******************/
.logo_spacer {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      flex-shrink: 0;
    }
 nav {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    nav a {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      text-decoration: none;
      color: var(--dark);
      padding: 8px 14px;
      border-radius: 8px;
      transition: background .18s, transform .15s;
      white-space: nowrap;
    }

    nav a:hover {
      background: rgba(0,0,0,.08);
      transform: translateY(-1px);
    }

    nav a svg {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
    }

    nav a .nav-label {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: .04em;
      text-transform: uppercase;
    }

    /* ── CONTACT NAV ITEM ── */
    .nav-contact {
      border: 1.5px solid #969581; /* #969581; */
      border-radius: 8px;
      margin-left: 8px;
      background: rgba(255,255,255,.25);
      display: flex;
      flex-direction: column;
      align-items: center;
      min-width: 120px;
      overflow: hidden;
      transition: background .18s;
    }

    /* Top row: two icons side by side with a tiny divider */
    .contact-icons-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 7px 14px 5px;
      width: 100%;
    }

    .contact-icon-divider {
      width: 1px;
      height: 14px;
      background: var(--dark);
      opacity: 0.3;
    }

    /* Thin rule between icons and text */
    .contact-text-divider {
      width: calc(100% - 20px);
      height: 1px;
      background: var(--dark);
      opacity: 0.15;
    }

    /* Clickable text links below */
    .contact-text-link {
      display: block;
      width: 100%;
      text-align: center;
      text-decoration: none;
      color: var(--dark);
      transition: background .15s;
      padding: 0 12px;
    }

    .contact-text-link:hover {
      background: rgba(0,0,0,.07);
    }

    .contact-text-main {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: .05em;
      text-transform: uppercase;
      padding-top: 5px;
      padding-bottom: 2px;
    }

    .contact-text-phone {
      font-size: 0.70rem;
      font-weight: 500;
      color: var(--mid);
      letter-spacing: .03em;
      padding-bottom: 7px;
    }

    /* ── HAMBURGER ── */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
      border-radius: 6px;
      transition: background .15s;
      background: none;
      border: none;
    }

    .hamburger:hover { background: rgba(0,0,0,.08); }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--dark);
      border-radius: 2px;
      transition: transform .3s, opacity .3s;
      transform-origin: center;
    }

    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── MOBILE MENU ── */
    .mobile-menu {
      display: none;
      position: absolute;
      top: var(--header-h);
      left: 0;
      right: 0;
      background: #fff200;
      border-top: 1.5px solid var(--border);
      padding: 12px 16px;
      z-index: 100;
      box-shadow: 0 8px 24px rgba(0,0,0,.12);
      flex-direction: column;
      gap: 4px;
      animation: slideDown .22s ease;
    }

    @keyframes slideDown {
      from { opacity: 0; transform: translateY(-8px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .mobile-menu.open { display: flex; }

    .mobile-menu a {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      color: var(--dark);
      padding: 11px 14px;
      border-radius: 8px;
      font-size: 0.9rem;
      font-weight: 500;
      transition: background .15s;
    }

    .mobile-menu a:hover { background: rgba(0,0,0,.08); }

    .mobile-menu a svg { width: 18px; height: 18px; flex-shrink: 0; }

    .mobile-menu .mob-contact-wrapper {
      border: 1.5px solid var(--dark);
      border-radius: 8px;
      margin-top: 4px;
      overflow: hidden;
      display: flex;
      flex-direction: row;
      align-items: stretch;
    }

    .mobile-menu .mob-contact-group {
      display: flex;
      align-items: center;
      gap: 9px;
      text-decoration: none;
      color: var(--dark);
      padding: 11px 14px;
      font-size: 0.88rem;
      font-weight: 500;
      flex: 1;
      transition: background .15s;
    }

    .mobile-menu .mob-contact-group:hover { background: rgba(0,0,0,.08); }

    .mobile-menu .mob-contact-group svg { flex-shrink: 0; }

    .mob-contact-vert-divider {
      width: 1px;
      background: var(--dark);
      opacity: 0.15;
      flex-shrink: 0;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {

      nav { display: none; }

      .hamburger { display: flex; }

      /* Icon-only strip shown on medium screens if desired — 
         on mobile the hamburger replaces everything */
    }

/* =====================
   FOOTER
   ===================== */


/* Carbon fiber pattern + base */
.site-footer {
    width: 100%;
    background-color: #0d0d0d;
    background-image:
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 3px,
            rgba(255,255,255,0.015) 3px,
            rgba(255,255,255,0.015) 4px
        ),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 3px,
            rgba(255,255,255,0.015) 3px,
            rgba(255,255,255,0.015) 4px
        );
    color: #aaa;
    font-family: inherit;
    margin-top: auto;
}

/* Main content grid */
.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
}

/* Column base */
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Brand col */
.footer-logo {
    width: 100px;
    display: block;
    margin-bottom: 4px;
}

.footer-tagline {
    font-size: 13px;
    line-height: 1.7;
    color: #777;
    margin: 0;
}

/* Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #999;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-contact-item:hover {
    color: #fff200;
}

/* Social icons */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 6px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    color: #888;
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.footer-social-link:hover {
    color: #fff200;
    border-color: #fff200;
    background: rgba(255, 242, 0, 0.06);
}

/* Column headings */
.footer-heading {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 6px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #222;
}

/* Nav lists */
.footer-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-nav-list a {
    color: #888;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-nav-list a::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #333;
    border-radius: 50%;
    transition: background 0.2s;
    flex-shrink: 0;
}

.footer-nav-list a:hover {
    color: #fff200;
}

.footer-nav-list a:hover::before {
    background: #fff200;
}

/* Yellow copyright bar */
.footer-bottom {
    background: #fff200;
    text-align: center;
    padding: 12px 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.03em;
}

/* =====================
   MOBILE
   ===================== */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    .footer-col--brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 540px) {
    .footer-main {
        padding: 40px 24px 36px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-col--brand {
        grid-column: auto;
    }
    .footer-nav-list--areas {
        columns: 2;
        column-gap: 20px;
    }
    .footer-nav-list--areas li {
        break-inside: avoid;
    }
}

.txt_small {
	font-size: 10px;
}

.txt_grey {
	color: #787777;
}
