/* =============================================
   FRESH TEAM BUILDING STYLES
   File: styles/team-building-fresh.css
   ============================================= */

/* --- ROOT VARIABLES (Inheriting brand colors) --- */
:root {
  --brand-orange: #fd7e03;
  --brand-yellow: #f9eb30;
  --brand-black: #000;
  --brand-white: #fff;
  --bg-light: #fffdf0;
  --text-dark: #2c2c2c;
  --text-grey: #555;
}

/* --- 1. HERO SECTION --- */
.tb-hero {
  height: 100vh;
    width: 100%;
  background-image: url('/assets/images/team-hero.jpg'); /* Ensure this file exists */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax effect */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  padding: 8rem 0 5rem 0;
}

.tb-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}

.tb-hero-content {
  position: relative;
  z-index: 2;
  color: var(--brand-white);
  padding: 0 1rem;
  max-width: 900px;
}

.tb-tagline {
  display: inline-block;
  background: var(--brand-orange);
  color: var(--brand-white);
  padding: 0.5rem 1rem;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

.tb-hero-content h1 {
  font-family: 'Caesar Dressing', cursive;
  font-size: 4.5rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.tb-hero-content h1 span {
  color: var(--brand-yellow);
}

.tb-hero-content p {
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.tb-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.tb-btn.primary {
  background-color: var(--brand-yellow);
  color: var(--brand-black);
  border-radius: 50px; /* Modern pill shape */
}

.tb-btn.primary:hover {
  background-color: var(--brand-orange);
  color: var(--brand-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* --- 2. OBJECTIVES GRID --- */
.tb-objectives {
  padding: 3rem 10%;
  background-color: var(--brand-white);
  text-align: center;
}

.tb-heading h2 {
  font-family: 'Caesar Dressing', cursive;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.tb-heading h2 span {
  color: var(--brand-orange);
}

.tb-heading p {
  color: var(--text-grey);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.obj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.obj-box {
  padding: 2rem;
  border: 1px solid #eee;
  border-radius: 1rem;
  transition: all 0.3s ease;
  background: #252525;
}

.obj-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  border-color: var(--brand-yellow);
}

/* New CSS for Lucide Icons */
.obj-box .icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--brand-yellow);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

/* Style the actual Lucide SVG */
.obj-box .icon-circle .lucide {
  width: 40px;
  height: 40px;
  stroke: var(--brand-orange); /* The icon color */
  stroke-width: 2px;
}

/* Hover Effect */
.obj-box:hover .icon-circle {
  background-color: var(--brand-orange);
}

.obj-box:hover .icon-circle .lucide {
  stroke: var(--brand-white); /* Icon turns white on hover */
}

.obj-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #f9eb30;
}

.obj-box p {
  color: var(--text-grey);
  line-height: 1.6;
  color: #ddd;
}

/* --- 3. ZIG-ZAG ITINERARY --- */
.tb-itinerary {
  padding: 0;
  background-color: var(--bg-light);
}

.itinerary-row {
  display: flex;
  align-items: stretch;
  min-height: 500px;
  margin: 0 5rem;
}

.itinerary-row.reverse {
  flex-direction: row-reverse;
}

.itinerary-row .text-col {
  flex: 1;
  padding: 5rem 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.itinerary-row .img-col {
  flex: 1;
  /* background-color: #ddd; */
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.itinerary-row .img-col img {
  width: 80%;
  height: 80%;
  object-fit: cover;
  border-radius: 1rem;
  transition: transform 0.5s ease;
}


.time-label {
  display: inline-block;
  background: var(--brand-black);
  color: var(--brand-yellow);
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  align-self: flex-start;
}

.text-col h2 {
  font-family: 'Caesar Dressing', cursive;
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: var(--brand-black);
}

.text-col h2 span {
  color: var(--brand-orange);
}

.text-col p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 2rem;
  max-width: 500px;
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
  color: var(--text-dark);
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--brand-orange);
  font-weight: 900;
}

/* --- 4. BOOKING BANNER --- */
.tb-booking {
  background-color: var(--brand-black);
  padding: 5rem 10%;
  color: var(--brand-white);
}

.booking-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.booking-text h2 {
  font-family: 'Caesar Dressing', cursive;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.booking-text h2 span {
  color: var(--brand-yellow);
}

.booking-form-inline {
  display: flex;
  gap: 1rem;
  flex: 1;
  min-width: 300px;
}

.booking-form-inline input {
  padding: 1rem;
  border-radius: 5px;
  border: none;
  flex: 1;
  font-family: 'Montserrat', sans-serif;
}

.booking-form-inline button {
  padding: 1rem 2rem;
  background: var(--brand-orange);
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
}

.booking-form-inline button:hover {
  background: var(--brand-yellow);
  color: black;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 900px) {
  .tb-hero-content h1 {
    font-size: 3rem;
  }
  
  .itinerary-row, 
  .itinerary-row.reverse {
    flex-direction: column;
  }
  
  .itinerary-row .img-col {
    height: 300px;
  }
  
  .booking-container {
    flex-direction: column;
    text-align: center;
  }
  
  .booking-form-inline {
    flex-direction: column;
    width: 100%;
  }
}