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;
}




/* 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 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; /* ensures the logo stays on top */
}

/* 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;
}

.home-logo {
  filter: drop-shadow(0 12px 20px rgba(0,0,0,0.9))
        drop-shadow(0 6px 10px rgba(0,0,0,0.7))
        drop-shadow(0 0 4px rgba(255,255,255,0.3));
}

/* Section styling */
#home-2 {
  padding: 80px 20px;
  background-color: #030000; /* optional */
  min-height: 230vh;
}

.home-2-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  margin-top: 5%;
}

.home-2-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);
  padding-bottom: 2rem;
}

.home-2-subtitle {
  font-family: "CalibriCustom", sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.5rem);
  color: #b4883b;
  text-align: center;
  margin: 0 auto;
  width: 70%;
  padding-bottom: 5%;
}
/* Collage container */
.home-2-collage {
  display: grid;
  grid-template-columns: 2fr 2fr 2.5fr; /* left block: 2 columns, right: 1 column */
  grid-template-rows: 0.4fr 0.6fr;    /* top row shorter, bottom row taller */
  gap: 10px;

  max-width: 1200px;   /* overall collage width */
  max-height: 400px;  /* overall collage height */
  margin: 0 auto;     /* center horizontally */
}

/* Images 1,2,3 */
.img1, .img2, .img3 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img1 { grid-column: 1 / 3; grid-row: 1 / 2; }  /* top-left */
.img2 { grid-column: 1 / 2; grid-row: 2 / 3; }  /* bottom-left */
.img3 { grid-column: 2 / 3; grid-row: 2 / 3; }  /* bottom-right of left block */

/* Image 4 as gold background with text */
.img4 {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
  background-color: #b4883b; /* exact gold color */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  color: #000; /* text color */
  opacity: 1;  /* ensure fully opaque */
}

.img4-text {
  color: #fff;
  text-align: left;
  font-family: "CalibriCustom", sans-serif;
}

.img4-text h3 {
  margin: 0 0 10px 0;
  font-size: clamp(1rem, 1.8vw, 2rem);
  padding-bottom: 10%;
  letter-spacing: clamp(0.1rem, 0.15vw, 0.55rem);
}

/* PERFECT alignment with title */
.img4-text ul {
  list-style-type: disc;
  list-style-position: inside; /* 🔥 THIS is the magic */
  padding: 0;
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.5rem);
}

.img4-text li {
  margin-bottom: 6px;
  line-height: 1.4;
  font-size: clamp(1rem, 1.4vw, 1.5rem);
}

.home-2-bottom-image {
  width: 100%;           /* fill parent container */
  margin-top: 30%;      /* space from collage */
  overflow: hidden;
}

.bottom-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: top;
}





/* Optional responsive */
@media (max-width: 768px) {
  .home-2-collage {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 150px); /* stack all vertically */
    max-height: none;
  }
}


.home-section-3 {
  padding: 0;
  text-align: center;
  background-color: #030000;
  min-height: 135vh;
}

/* TITLE */
.home-3-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: 8%;
}

/* IMAGE */
.home-3-image-wrapper {
  width: 100%;
  height: 92vh;          /* 👈 THIS controls how tall it is */
  overflow: hidden;     /* hides the cropped parts */
  margin-top: 5%;
}

.home-3-full-image {
  width: 100%;
  height: 100%;
  object-fit: cover;    /* crops instead of squishing */
}

.home-section-5 {
  padding: 120px 0;
  min-height: 160vh;
  background-color: #030000;
}

.grid-video {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* fills the grid cell nicely */
  display: block;
}

.home-5-collage {
  width: 85%;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px auto; /* first 2 rows fixed, last row auto */
  gap: 20px;
}

/* Image 1 – tall */
.img12 {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

/* Image 2 – gold block, wide */
.img22 {
  grid-column: 2 / 5;
  grid-row: 1 / 2;

  background: #c9a14a;  /* YOUR gold colour */
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image 3–5 */
.img32 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.img42 {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}

.img52 {
  grid-column: 4 / 5;
  grid-row: 2 / 3;
}

/* Image 6 – full width */
.img62 {
  grid-column: 1 / 5;
  grid-row: 3 / 4;
  position: relative;    /* parent relative */
  overflow: hidden;      /* crop top if image too tall */
}

.img62 img {
  position: absolute;    /* position inside parent */
  bottom: 0;             /* anchor to bottom */
  left: 0;
  width: 100%;           /* full width */
  height: auto;          /* natural height, cropped if taller than container */
  object-fit: cover;     /* fill width, crop top if needed */
}




.grid-img img,
.grid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid-img {
  overflow: hidden;
}

.img2-text {
  color: #fff;
  text-align: left;
  font-family: "CalibriCustom", sans-serif;
}

.img2-text h3 {
  margin: 0 0 10px 0;
  font-size: clamp(1rem, 1.8vw, 2rem);
  padding-bottom: 3%;
  letter-spacing: clamp(0.1rem, 0.15vw, 0.55rem);
}

.img2-text p {
  font-size: clamp(1rem, 1.4vw, 1.5rem);
  margin: 0;
}




/* 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;
}

@media (max-width: 768px) {

  .section4 {
    min-height: 115vh;;
  }

  .phone-link {
  text-decoration: none !important;
  color: inherit !important;
  font-family: "CalibriCustomBold", sans-serif;
}

.phone-link:link,
.phone-link:visited,
.phone-link:hover,
.phone-link:active {
  color: inherit !important;
  text-decoration: none !important;
}


  .hero-logo {
    width: 70%;   /* bigger logo on mobile */
    margin-top: 5%;
  }

  .hero-title-image {
    width: 80%;     /* fills more screen */
    margin-top: 35%;
  }



/* Title & subtitles */
.section4-title {
  font-size: clamp(1rem, 4.5vw, 3rem) !important;
}

.section4-subtitle {
  width: 90% !important;
}

.section4-subtitle-below {
    font-size: clamp(1.5rem, 5vw, 3rem) !important;
    width: 65%;
    line-height: 2rem;
  }

/* Form styling */
.section4-form {
  width: 90% !important;
}


.section4-developer-info {
  font-size: clamp(0.5rem, 2vw, 3rem);
}

.section4-developer-info2 {
  font-size: clamp(0.5rem, 2vw, 3rem);
}

}

@media screen and (max-width: 768px) {

  .sidebar-menu {
    width: 100vw;  /* hide completely off screen */
    gap: clamp(1rem, 10.7vw, 12rem);
  }

  .sidebar-menu a {
  font-size: clamp(1.2rem, 3vw, 12.8rem);
  
}

.menu-text {
  font-size: clamp(0.55rem, 4vw, 11.1rem);
}

.home-logo {
  width: 40%;  
  top: 3%;
}
}