/* Reset and Base Styles */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Barlow', sans-serif;
  background: #23241F;
  color: #E6E1D2;
}
h1, h2, h3, h4, h5 {
  font-family: 'Oswald';
  text-transform: uppercase;
  font-weight: 600;
}
#page-content {
  padding-top: 100px;
  padding-bottom: 40px;
  min-height: 100vh;
}
.gform-theme--foundation .ginput_complex label, .gform-theme--foundation .ginput_complex legend,.gform-theme--framework .gfield_list_group_item::before, .gform-theme--framework .gform-field-label:where(:not([class*=gform-field-label--type-])),.gform-theme--framework .field_description_above .gfield_description:where([class=gfield_description],.gfield_creditcard_warning_message,.field_validation_above .gfield_validation_message) {
  color: #fff !important;
}
/* Main Container */
.main-container {
  background: #23241F;
  color: #E6E1D2;
}

/* Hero Section */
.hero-wrapper {
  position: relative;
  background: url(./img/hero.webp) center no-repeat;
  background-size: cover;
}

.hero-background {
  height: 680px;
  /*background: repeating-linear-gradient(135deg, rgba(0,0,0,.18) 0 1px, transparent 1px 18px), 
              linear-gradient(180deg,#3a3b30,#1c1d17);*/
  display: grid;
  place-items: center;
}

.hero-placeholder {
  font: 500 11px 'Spline Sans Mono', monospace;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #E6E1D2;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,29,23,.55) 0%, rgba(28,29,23,.1) 40%, rgba(28,29,23,.92) 100%);
}

/* Navigation */
.navbar-custom {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 44px;
  z-index: 10;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #E6E1D2;
}

.logo-icon {
  position: relative;
  width: 30px;
  height: 30px;
  display: inline-block;
}

.logo-icon-box-1 {
  position: absolute;
  left: 0;
  top: 6px;
  width: 20px;
  height: 20px;
  border: 1.5px dashed #B49A6E;
}

.logo-icon-box-2 {
  position: absolute;
  left: 9px;
  top: 0;
  width: 20px;
  height: 20px;
  border: 1.5px dashed #B49A6E;
}
.navbar-expand-lg .navbar-nav .nav-link {
  color: #fff;
  font: 500 13px 'Oswald';
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.navbar-brand {
  width: 250px;
}
.navbar-brand img {
  width: 100%;
}
.logo-text {
  font: 700 20px 'Oswald';
  letter-spacing: 0.14em;
}
.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 9999;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  font: 500 13px 'Oswald';
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-menu span {
  cursor: pointer;
}

.btn-inquire {
  background: #CEB06A;
  color: #000;
  padding: 10px 18px;
  letter-spacing: 0.14em;
  cursor: pointer;
  border-radius: 0;
  text-transform: uppercase;
  font: 500 13px 'Oswald';
}
.btn-inquire:hover {
  background: #CEB06A;
  color: #fff;
}
/* Hero Content */
.hero-content {
  position: relative;
  z-index: 999;
  padding-top: 200px;
  padding-bottom: 100px;
}

.hero-subtitle {
  font: 500 12px 'Spline Sans Mono', monospace;
  letter-spacing: 0.2em;
  color: #CEB06A;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font: 700 96px/1 'Oswald';
  text-transform: uppercase;
  margin: 0 0 24px;
  max-width: 820px;
}


.btn-primary-custom {
  background: #CEB06A;
  color: #fff;
  padding: 16px 30px;
  font: 600 14px 'Oswald';
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  display: inline-block;
}

.btn-secondary-custom {
  border: 1.5px solid rgba(230,225,210,.5);
  color: #E6E1D2;
  padding: 16px 30px;
  font: 600 14px 'Oswald';
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  display: inline-block;
}

/* Stats Band */
.stats-band {
  background: #1c1d17;
}

.stat-item {
  padding: 34px 40px;
  border-right: 1px solid rgba(230,225,210,.1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font: 700 42px 'Oswald';
  color: #B49A6E;
  line-height: 1;
}

.stat-number-unit {
  font-size: 20px;
}

.stat-label {
  font: 500 11px 'Spline Sans Mono', monospace;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8d8a7e;
  margin-top: 8px;
}

/* Programs Section */
.programs-section {
  padding: 72px 0px 48px;
 
 
}

.section-title {
  font: 700 56px 'Oswald';
  text-transform: uppercase;
  margin: 0 0 8px;
  line-height: 1;
}

.section-subtitle {
  font: 400 16px 'Barlow';
  color: #a4a092;
  margin: 0 0 40px;
}

.programs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.program-card {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.program-card-background {
  position: absolute;
  inset: 0;
  /*background: repeating-linear-gradient(135deg, rgba(0,0,0,.2) 0 1px, transparent 1px 16px), 
              linear-gradient(180deg,#3a3b30,#23241d);*/
}

.program-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20,21,16,.9));
}

.program-card-content {
  position: absolute;
  left: 28px;
  bottom: 26px;
  right: 28px;
}

.program-card-label {
  font: 500 11px 'Spline Sans Mono', monospace;
  letter-spacing: 0.16em;
  color: #000;
  
}
.program-card-label span {
   background: #CEB06A;
   padding: 5px 10px;
}
.program-card-title {
  font: 700 34px 'Oswald';
  text-transform: uppercase;
  margin: 8px 0 6px;
}

.program-card-description {
  font: 400 14px/1.5 'Barlow';
  color: #c7c2b3;
  margin: 0;
  max-width: 380px;
}

/* CTA Section */
.cta-section {
  padding: 40px 0px 40px;
  margin: 0 auto;
}

.cta-box {
  background: #C9551F;
  color: #fff;
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin: 40px 0 20px;
}

.cta-title {
  font: 700 52px/0.95 'Oswald';
  text-transform: uppercase;
  margin: 0 0 12px;
}

.cta-text {
  font: 400 16px 'Barlow';
  color: rgba(255,255,255,.85);
  margin: 0;
  max-width: 440px;
}

.btn-cta {
  background: #23241F;
  color: #fff;
  padding: 18px 34px;
  font: 600 14px 'Oswald';
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  display: inline-block;
}

/* Footer */
.footer-custom {
  background: #1c1d17;
  color: #E6E1D2;
  padding: 32px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(230,225,210,.1);
}

.footer-logo {
  font: 700 16px 'Oswald';
  letter-spacing: 0.12em;
}

.footer-info {
  font: 500 11px 'Spline Sans Mono', monospace;
  letter-spacing: 0.16em;
  color: #8d8a7e;
}
.hero-badge {
  max-width: 500px;
}
.navbar-toggler {
  background: #CEB06A;
}

@media screen and (min-width : 768px) and (max-width : 991px) {
  .hero-title {
    font-size: 62px;
  }
  .navbar-collapse {
    background: rgba(0,0,0,1);
    padding: 10px 20px 20px;
  }
}
@media screen and (min-width : 992px) and (max-width : 1199px) {
  .hero-title {
    font-size: 82px;
  }
}
/* Responsive Design */
@media (max-width: 767px) {
  .hero-title {
    font-size: 56px;
  }
  .hero-content {
    text-align: center;  
    padding-top: 150px;
    padding-bottom: 100px;
  }
  .navbar-custom {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  
  .nav-menu {
    flex-wrap: wrap;
    gap: 15px;
    font-size: 11px;
  }
  
  .programs-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-custom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .cta-box {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-title {
    font-size: 36px;
  }
  .hero-badge {
    max-width: 300px;
  }
  .navbar-brand {
    width: 210px;
  }
  .navbar-collapse {
    background: rgba(0,0,0,1);
    padding: 10px 20px 20px;
  }
}
