@charset "utf-8";
/**
* TWC.AH css
* Update: 00.00.01 30-01-26
* Bootstrap v5.3.2
*/

/*--------------------------------------------------------------
# Font
--------------------------------------------------------------*/
.cormorant-upright-light {
  font-family: "Cuprum", serif;
  font-weight: 300;
  font-style: normal;
}

.cormorant-upright-regular {
  font-family: "Cuprum", serif;
  font-weight: 400;
  font-style: normal;
}

.cormorant-upright-medium {
  font-family: "Cuprum", serif;
  font-weight: 500;
  font-style: normal;
}

.cormorant-upright-semibold {
  font-family: "Cuprum", serif;
  font-weight: 600;
  font-style: normal;
}

.cormorant-upright-bold {
  font-family: "Cuprum", serif;
  font-weight: 700;
  font-style: normal;
}

/*--------------------------------------------------------------
# 	General settings
--------------------------------------------------------------*/
body {
  margin: 0;
  padding: 0;
  background-color:darkgray;
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
#	Navbar
--------------------------------------------------------------*/

/* Make sure Bootstrap doesn't override anything */
nav.navbar {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* Apply the glass effect directly to the <nav> */
nav.custom-nav {
  width: 50%;
  min-width: 300px;
  margin-left: auto;
  margin-right: auto;
  padding: 6px 16px;

  /* TRUE frosted glass */
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);

  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0 0 18px 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);

  /* Fade-in animation */
  opacity: 0;
  transform: translateY(-18px);
  transition: opacity 1.4s ease, transform 1.4s ease;
}

nav.custom-nav.nav-visible {
  opacity: 1;
  transform: translateY(0);
}

.navbar-brand {
  color:#DBEDF9;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-link {
  color:#DBEDF9;
  font-size: 15px;
  font-weight: 200;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# 	Hero Section
--------------------------------------------------------------*/
.hero-section {
  display: flex;
  justify-content: center;
  margin-top: 80px;
  padding: 0;
}

.hero-card {
  position: relative;
  width: 100%;
  height: 80vh; /* taller for full-width heroes */
  border-radius: 0; /* optional: remove rounding for edge-to-edge */
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Video fills the card */
.hero-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  animation: slowZoom 25s ease-out forwards;
  }
  @keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.2); }
  }

.hero-darken {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35); /* adjust strength */
  z-index: 1;
}


/* Text overlay */
.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  padding: 1rem 2rem;
  /*backdrop-filter: blur(4px);*/
  opacity: 0;
  animation: fadeIn 1.5s ease 1s forwards;
  z-index: 2;
  }
  @keyframes fadeIn {
  to { opacity: 1; }
  }


.hero-overlay h1 {
  font-family: "Cuprum";
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: #3179F9;
}

.hero-overlay p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 300;
  color:#C9D1E5;
}

/*--------------------------------------------------------------
# 	Services Intro Card Section
--------------------------------------------------------------*/
/* Section spacing */
.services-intro {
  margin-top: 80px;
  padding: 0 2rem;
  text-align: center;
}

/* Header */
.services-intro-header h2 {
  font-family: "Cuprum";
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.services-intro-header p {
  max-width: 740px;
  margin: 0 auto 1rem auto;
  font-size: 1.1rem;
  opacity: 0.8;
}

/* Horizontal scroller */
.services-intro-scroller {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.services-intro-scroller::-webkit-scrollbar {
  display: none;
}

/* Cards */
.services-intro-card {
 flex: 0 0 320px; /* wider card */ 
  height: 420px; /* taller card */ 
  background: rgba(255, 255, 255, 0.35); 
  backdrop-filter: blur(18px); 
  -webkit-backdrop-filter: blur(18px); 
  border-radius: 20px; padding: 1rem; 
  scroll-snap-align: start; 
  box-shadow: 0 8px 24px rgba(0,0,0,0.12); 
  transition: transform 0.3s ease;
}

.services-intro-card:hover {
  transform: translateY(-6px);
}

/* Card image */
.services-intro-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 1rem;
}

/* Card text */
.services-intro-card h3 {
  font-family: "Cuprum";
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.services-intro-card p {
  font-size: 0.95rem;
  opacity: 0.8;
}

/* Scroll */ 
.services-intro-dots { 
  display: flex; 
  justify-content: center; 
  gap: 8px; 
  margin-top: 1rem; 
  cursor: pointer;
} 

.services-intro-dots span {
  width: 10px; 
  height: 10px; 
  background: #ccc; 
  border-radius: 50%; 
  transition: background 0.3s ease; 
} 

.services-intro-dots span.active { 
  background: #333; 
}

/*--------------------------------------------------------------
# 	Feature Section
--------------------------------------------------------------*/

.feature {
  padding: 120px 2rem;
}

.feature-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* LEFT TEXT */
.feature-text {
  flex: 2; /* 2/3 width */
}

.feature-text h2 {
  font-family: "Cuprum";
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

.feature-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  opacity: 0.85;
}

/* RIGHT VIDEO CARD */
.feature-card {
  flex: 1; /* 1/3 width */
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  aspect-ratio: 4 / 5; /* Apple-style tall card */
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 900px) {
  .feature-inner {
    flex-direction: column;
    gap: 2.5rem;
  }

  .feature-text,
  .feature-card {
    flex: unset;
    width: 100%;
  }

  .feature-card {
    aspect-ratio: 16 / 9; /* more natural on mobile */
  }
}

/*--------------------------------------------------------------
# 	CTA home page Section
--------------------------------------------------------------*/
.cta {
  margin-top: 120px;
  padding: 80px 2rem;
  text-align: center;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: scale(0.88) translateY(20px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.cta.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  opacity: 0;
  transition: opacity 1.2s ease 0.2s; /* slight delay feels premium */
}

.cta.visible .cta-inner {
  opacity: 1;
}


/* CTA with background image */
.cta-image {
  position: relative;
  background-image: url("../images/img4.jpg"); /* replace with your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 140px 2rem; /* more vertical space for the image */
  border-radius: 24px; /* optional, looks premium */
  overflow: hidden;
}
/* Soft overlay for readability */
.cta-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35); /* subtle dark overlay */
  backdrop-filter: blur(4px);      /* softens the image slightly */
  z-index: 1;
}
/* Ensure text sits above the overlay */
.cta-image .cta-inner {
  position: relative;
  z-index: 2;
}


.cta h2 {
  font-family: "Cuprum";
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #D3D6E5;
}

.cta p {
  font-size: 1.2rem;
  opacity: 0.85;
  margin-bottom: 2rem;
  color: #92ABDF;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  padding: 14px 32px;
  background: black;
  color: white;
  border-radius: 50px;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background: #333;
  transform: translateY(-3px);
}
