html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    overflow-x: hidden;
}

.section {
    height: 100vh;
    /* Full viewport height */
    width: 100vw;
    display: flex;
    flex-direction: column;
    /* Stack content vertically */
    justify-content: center;
    /* Vertically center */
    align-items: center;
    /* Horizontally center */
    scroll-snap-align: start;
    /* For snap scrolling */
    padding: 40px 20px;
    box-sizing: border-box;
    overflow: hidden;
    /* Prevent content from spilling into next section */
}


.section.snap-section {
    height: 100vh;
    scroll-snap-align: start;
    margin: 0;
    padding: 0;
}

.snap-section {
    height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    flex-shrink: 0;
}

.section, .section.snap-section, .snap-section {
    scroll-snap-align: unset;
    scroll-snap-stop: unset;
}


@font-face {
  font-family: "CalibriCustom";
  src: url("fonts/Calibri_Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CalibriCustombold";
  src: url("fonts/Calibri_Bold.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}



/* Menu toggle container */
/* Menu toggle container */
.menu-toggle {
  position: fixed;
  top: 25px;
  right: 40px;
  z-index: 1002;
  cursor: pointer;
  font-family: 'CalibriCustom', sans-serif;
}

/* MENU text */
.menu-text {
  color: #b4883b;
  font-size: clamp(0.55rem, 1.3vw, 2.1rem);
  letter-spacing: clamp(0.15rem, 0.3vw, 0.35rem);
  font-weight: 600;
}


/* Close icon (X) */
.close-icon {
  display: none;
  font-size: 2rem;
  color: #030000;
  line-height: 1;

}

.close-icon {
  position: relative;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.close-icon::before,
.close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 1px;              /* ← THICKNESS HERE */
  background-color: #030000;
  transform-origin: center;
}

.close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}




/* When menu is open */
.menu-toggle.active .menu-text {
  display: none;
}

.menu-toggle.active .close-icon {
  display: block;
}



.sidebar-menu a.active {
  color: 030000 !important;  /* persistent white color */
}


.sidebar-menu.show {
  right: 0;
}



/* Menu links */
.sidebar-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: clamp(300px, 38vw, 1450px);
  height: 100vh;
  background-color: #b4883b;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;  

  padding: 0;
  gap: clamp(1rem, 2.7vw, 12rem);

  transition: right 0.4s ease;
  z-index: 1001;
  box-shadow: -2px 0 15px rgba(0, 0, 0, 0.4);

  
}

.sidebar-menu a {
  color: #ffffff;
  font-family: 'CalibriCustom', sans-serif;
  font-size: clamp(0.9rem, 1.3vw, 1.8rem);
  text-decoration: none;
  transition: color 0.2s ease;

  text-align: center;
  width: auto;
  padding: 0;

  letter-spacing: clamp(0.1rem, 0.2vw, 0.35rem);
  transform: translateY(-13vh);   /* adjust */
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
  color: #030000;
}


/* Remove hover effect from DOWNLOAD link */
.sidebar-menu a:first-of-type:last-child {
  pointer-events: none; /* optional: prevent hover/focus */
  color: #C1824F;       /* keep original color */
}


/* Page overlay */
.page-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.page-overlay.show {
  opacity: 1;
  pointer-events: auto;
}


.home-section {
  position: relative;      /* allows absolute positioning inside */
  width: 100vw;
  height: 100vh;            /* full screen height */
  overflow: hidden;
}

/* Image 2 – full width background */
.home-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;        /* fills screen nicely */
  display: block;
}

/* Image 1 – top middle overlay */
.home-logo {
  position: absolute;
  top: 50px;                /* adjust spacing from top */
  left: 50%;
  transform: translateX(-50%);
  width: 20%;             /* adjust logo size */
  z-index: 2;
}


/* SECTION CENTERED ON SCREEN */
.home-section-2 {
  min-height: 260vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #030000;
}

/* CONTENT WIDTH */
.section-center {
  width: 100%;
  max-width: 1200px;
  padding: 0;
}

/* TITLE */
.section-title {
  font-family: "CalibriCustom", sans-serif;
  font-size: clamp(1rem, 1.8vw, 2rem);
  color: #b4883b;
  text-align: center;
  letter-spacing: clamp(0.1rem, 0.3vw, 0.55rem);
  margin-top: -5%;
}

.section-subtitle {
  font-family: "CalibriCustom", sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.5rem);
  color: #b4883b;
  text-align: center;
  padding-bottom: 6%;
  width: 65%;

  margin: 0 auto;   /* THIS centers it */
}
/* COLLAGE WRAPPER */
.collage-wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* 6-BOX GRID */
.collage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 420px 350px; /* row 1 taller */
  gap: 0;
}


/* BOX BASE */
.collage-box {
  position: relative;
  margin: 0;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 16px;
}

/* GREY BOXES */
.collage-box.grey {
  background: #333;
  color: #333;
}

/* IMAGE BOXES */
.collage-box.image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

/* IMAGE BACKGROUNDS */
.box-2 { background-image: url("images/CTGold-Business.jpg"); }
.box-4 { background-image: url("images/CTGold-Nature.jpg"); }
.box-6 { background-image: url("images/CTGold-Local\ Bites.jpg"); }

/* IMAGE 7 */
.image-7 {
  width: 100%;
  position: relative;
}

.image-7 img {
  width: 100%;
  height: auto;
  display: block; /* kills gaps */
}

/* IMAGE CAPTION */
.image-caption {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 12px;
  color: white;
  z-index: 2;
}

/* BOX TEXT WRAPPER */
.box-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* ensures title is at the top */
  align-items: center;         /* centers the rest of the content horizontally */
  height: 100%;                /* makes all box-text divs same height as the box */
  text-align: center;
  z-index: 2;
  padding-top: 10%;
}


/* TITLE IN EACH BOX */
.box-title {
  font-family: "CalibriCustombold", sans-serif;
  font-size: clamp(1rem, 1.6vw, 2rem);
  letter-spacing: clamp(0.1rem, 0.2vw, 0.55rem);
  margin-bottom: 16px;
  text-transform: uppercase;
  color: #b4883b !important;
}



/* GROUPING FOR SUBTITLE + SUBSUBTITLE */
.box-group {
  margin-bottom: 12px;
}

/* SUBTITLE */
.box-subtitle {
  font-family: "CalibriCustombold", sans-serif;
  font-size: clamp(0.5rem, 1.1vw, 2rem);
  letter-spacing: clamp(0.1rem, 0.1vw, 0.55rem);
  font-weight: 600;
  margin: 0;
}

/* SUBSUBTITLE */
.box-subsubtitle {
  font-family: "CalibriCustom", sans-serif;
  font-size: clamp(0.5rem, 1vw, 2rem);
  margin: 2px 0 0 0;
  padding-bottom: 5%;
}

/* IMAGE BOX TEXT COLOR */
.collage-box.image .box-title,
.collage-box.image .box-subtitle,
.collage-box.image .box-subsubtitle {
  color: #ffffff;
}

/* GREY BOX TEXT COLOR */
.collage-box.grey .box-title,
.collage-box.grey .box-subtitle,
.collage-box.grey .box-subsubtitle {
  color: #ffffff;
}

/* CENTER TEXT VERTICALLY */
.collage-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* GLOBAL GAP KILLERS */
img {
  display: block;
}

figure {
  margin: 0;
}

#desktopMapWrapper7 {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  touch-action: none;
}

#desktopMapImage7 {
  position: absolute;
  top: 0;
  left: 0;
  cursor: grab;
  user-select: none;
  -webkit-user-drag: none;
  width: 150%;   /* adjust zoom */
  height: auto;
  max-width: none;
  transform: translate(0,0);
  transition: transform 0.05s;
}

.desktop-drag-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #00163C;
  color: #C1824F;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.desktop-exit-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #A0522D;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  display: none;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}


/* Default: hide buttons (desktop) */
#enableDragBtn7,
#exitDragBtn7 {
  display: none;
}

/* Mobile only: show buttons */
@media (max-width: 768px) {
  #enableDragBtn7 {
    display: flex; /* or block depending on your button style */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
  }

  #exitDragBtn7 {
    display: block;
    top: 20px;
    left: 20px;
  }
}

/* Make the section fill the viewport height */
#home-3 {
  height: 100vh; /* 100% of viewport height */
  width: 100%;
  overflow: hidden; /* hide any overflow */
  position: relative;
}

/* Make the video cover the entire section */
#home-3 .home-3-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures the video covers without stretching */
  transform: translate(-50%, -50%);
  z-index: -1; /* optional, send behind content if any */
}


/* Section 5 styling */
#home-5 {
  height: 105vh; /* full viewport height */
  display: flex;
  justify-content: center; /* horizontal center */
  align-items: center;     /* vertical center */
  text-align: center;
  padding: 0 20px;
  background-color: #030000; /* optional background */
}

.home-5-content {
  display: flex;
  flex-direction: column; /* stack title, subtitle, image */
  justify-content: center;
  align-items: center;    /* ensures content is centered */
  gap: 10px;              /* spacing between elements */
  margin-top: 5%;
}

.home-5-title {
  font-family: "CalibriCustom", sans-serif;
  font-size: clamp(1rem, 1.8vw, 2rem);
  color: #b4883b;
  text-align: center;
  letter-spacing: clamp(0.1rem, 0.3vw, 0.55rem);
  margin-bottom: 5%;
  margin-top: -0%;
}

.home-5-subtitle {
  font-family: "CalibriCustom", sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.5rem);
  color: #b4883b;
  text-align: center;
  width: 60%;
}

/* Container crops the video */
.home-5-video-container {
  width: 100%;
  max-width: 1000px;  /* optional, same as before */
  height: 500px;       /* set desired visible height */
  overflow: hidden;    /* crop excess video */
  margin: 0 auto;
  position: relative;
}

/* Video inside container */
.home-5-video {
  width: 100%;
  height: auto;
  display: block;
  
  /* Optional: move video up to crop more from bottom */
  transform: translateY(-50px);
}

/* Section container */
.section4 {
  width: 100%;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  box-sizing: border-box;
  background-color: #030000;
  min-height: 140vh;
}

/* Top image */
.section4-top-image {
  width: 100%;
  max-height: 250px; /* short rectangle image */
  object-fit: cover;
  border-radius: 8px; /* optional rounded corners */
}

/* Title & subtitles */
.section4-title {
  font-family: "CalibriCustom", sans-serif;
  font-size: clamp(1rem, 1.8vw, 2rem);
  color: #b4883b;
  text-align: center;
  letter-spacing: clamp(0.1rem, 0.3vw, 0.55rem);
}

.section4-subtitle {
  font-family: "CalibriCustom", sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.5rem);
  color: #b4883b;
  text-align: center;
}

.section4-subtitle-below {
  font-family: "CalibriCustom", sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  color: #b4883b;
  text-align: center;
  letter-spacing: clamp(0.1rem, 0.28vw, 0.55rem);
  padding-bottom: 2rem;
}

/* Form styling */
.section4-form {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section4-form label {
  font-family: "CalibriCustom", sans-serif;
  font-size: clamp(1rem, 1vw, 1.5rem);
  color: #b4883b;
  font-weight: 500;
}

.section4-form input {
  width: 100%;
  padding: 0.1rem 0;
  font-size: 1rem;
  font-family: "CalibriCustom", sans-serif;
  border: none; /* remove box border */
  border-bottom: 1px solid #C1824F; /* underline */
  background: transparent;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
  color: #ffffff;
}

.section4-form input:focus {
  border-bottom-color: #b4883b; /* change color on focus */
}


/* Submit button */
.section4-submit-btn {
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  font-family: "CalibriCustom", sans-serif;
  font-size: 1rem;
  background-color: #b4883b;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.section4-submit-btn:hover {
  background-color: #9e6d2f;
}

/* Developer info */
.section4-developer-info {
  font-family: "CalibriCustom", sans-serif;
  font-size: 0.75rem;
  color: #b4883b;
  text-align: center;
  width: 92%;
  margin-bottom: 0rem;
}

.section4-developer-info2 {
  font-family: "CalibriCustom", sans-serif;
  font-size: 0.75rem;
  color: #b4883b;
  text-align: center;
  width: 92%;
  margin-top: 0;
}