/* Banner Component Styles - Fully Self-Contained */

/* Main Container */
.banner-container {
  position: relative; 
  width: 100%;
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0a1628;
}

@media (min-width: 640px) {
  .banner-container {
    padding-top: 10rem; 
    padding-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .banner-container {
    padding-top: 10rem;
    padding-bottom: 2rem;
  }
}

@media (min-width: 1280px) {
  .banner-container {
    padding-top: 11rem;
    padding-bottom: 4rem;
  }
}
@media (max-width: 1280px) {
  .banner-container {
     background-position: left;
  }
}
/* Wrapper */
.banner-wrapper {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .banner-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .banner-wrapper {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Main Layout */
.banner-main-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .banner-main-layout {
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .banner-main-layout {
    flex-direction: row;
    gap: 3rem;
  }
}

/* Left Column */
.banner-left-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .banner-left-column {
    gap: 1.5rem;
  }
}

/* Hero Section */
.banner-hero-section {
  text-align: left;
}

/* Typography */
.banner-title {
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 5vw, 38px);
  line-height: 1.2;
  color: white;
  margin: 0 0 12px 0;
}

.banner-subtitle {
  font-family: Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 3vw, 16px);
  line-height: 1.5;
  color: white;
  margin: 0;
}

/* Visit Section */
.banner-visit-section {
  display: flex;
  flex-direction: column;
}


.banner-visit-text {
  font-family: Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: white;
  margin: 0;
}

/* Event Info Container */
.banner-event-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .banner-event-info {
    gap: 1.5rem;
  }
}

.banner-logo-container {
  width: auto;
  height: auto;
  flex-shrink: 0;
}

.banner-isc-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

@media (min-width: 640px) {
  .banner-isc-logo {
    height: 64px;
  }
}

@media (min-width: 1024px) {
  .banner-isc-logo {
    height: 80px;
  }
}

/* Date Location Container */
.banner-date-location-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.banner-date-location-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.banner-icon-calendar,
.banner-icon-location {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .banner-icon-calendar,
  .banner-icon-location {
    width: 20px;
    height: 20px;
  }
}

.banner-date-location-text {
  font-family: Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 3vw, 18px);
  color: white;
  margin: 0;
}

/* Divider */
.banner-divider {
  display: none;
  width: 1px;
  height: 3rem;
  background-color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 640px) {
  .banner-divider {
    display: block;
  }
}

/* Booth Number */
.banner-booth-container {
  display: flex;
  flex-direction: column;
}

.banner-stand-text {
  font-family: Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 3vw, 20px);
  color: white;
  margin: 0;
}

.banner-booth-number {
  font-family: Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(18px, 4vw, 24px);
  color: white;
  margin: 0;
}

/* Contact Cards Container */
.banner-contact-cards-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem;
  margin-top: 0.5rem;
}

@media (min-width: 640px) {
  .banner-contact-cards-container {
    padding: 1.25rem;
    margin-top: 1rem;
  }
}

.banner-contact-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 650px) {
  .banner-contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Contact Card */
.banner-contact-card {
  display: flex;
  gap: 0.75rem;
}

.banner-contact-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-shrink: 0;
}

.banner-contact-photo {
  width: 100px;
  height: 120px;
  overflow: hidden;
  border-radius: 6px;
}

@media (min-width: 640px) {
  .banner-contact-photo {
    width: 110px;
    height: 130px;
  }
}

.banner-contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact Button */
.banner-contact-button {
  display: flex;
  align-items: center;
  height: 28px;
  /*background-color: #ecb11f;*/
  background-color: #fff;
  border-radius: 4px;
  transition: background-color 0.2s;
  text-decoration: none;
}

@media (min-width: 640px) {
  .banner-contact-button {
    height: 30px;
  }
}

.banner-contact-button:hover {
  /*background-color: #d4a01d;*/
  background-color: #ecb11f;
}

.banner-contact-button-text {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(10px, 2vw, 12px);
  color: black;
  padding-left: 6px;
  padding-right: 3px;
}

.banner-contact-button-icon {
  width: 28px;
  height: 28px;
  background-color: #9a7e37;
  display: flex;
  align-items: center;
  justify-content: center;
  /*border-radius: 0 4px 4px 0;*/
  border-radius: 4px;
}

@media (min-width: 640px) {
  .banner-contact-button-icon {
    width: 30px;
    height: 30px;
  }
}

.banner-contact-button-icon img {
  width: 12px;
  height: 12px;
  object-fit: contain;
}

@media (min-width: 640px) {
  .banner-contact-button-icon img {
    width: 14px;
    height: 14px;
  }
}

/* Contact Info */
.banner-contact-right {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.banner-contact-name {
  font-family: Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 3vw, 16px);
  color: white;
  margin: 0 0 4px 0;
}

.banner-contact-details {
  font-family: Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(11px, 2vw, 12px);
  color: white;
  line-height: 1.5;
}

.banner-contact-details p {
  margin: 1px 0;
}

.banner-contact-details a {
  color: white;
  text-decoration: none;
  text-decoration-skip-ink: none;
  font-weight: 400;
}

.banner-contact-details a:hover {
  text-decoration: none;
}

/* Right Column - Sidebar */
.banner-right-column {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .banner-right-column {
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .banner-right-column {
    width: 359px;
  }
}

/* We're Here Card */
.banner-we-are-here-card {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 90px;
  display: flex;
  align-items: center;
  padding-left: 1rem;
  padding-right: 1rem;
  transition: background-color 0.2s;
  overflow: hidden;
  text-decoration: none;
}

@media (min-width: 640px) {
  .banner-we-are-here-card {
    height: 103px;
  }
}

.banner-we-are-here-card:hover {
  background: rgba(255, 255, 255, 0.15);
}

.banner-we-are-here-content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.banner-we-are-here-title {
  font-family: Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(18px, 3vw, 21px);
  color: white;
  margin: 0;
}

.banner-we-are-here-arrow {
  width: 16px;
  height: 16px;
  background-color: #9a7e37;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .banner-we-are-here-arrow {
    width: 20px;
    height: 20px;
  }
}

.banner-we-are-here-arrow img {
  width: 10px;
  height: 9px;
  object-fit: contain;
}

@media (min-width: 640px) {
  .banner-we-are-here-arrow img {
    width: 12.5px;
    height: 12px;
  }
}

.banner-we-are-here-map {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  width: 180px;
  height: 76px;
  overflow: hidden;
}

@media (min-width: 640px) {
  .banner-we-are-here-map {
    width: 209px;
    height: 88px;
  }
}

.banner-we-are-here-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Booking Form */
.banner-booking-form-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem;
}

@media (min-width: 640px) {
  .banner-booking-form-container {
    padding: 1.5rem;
    /*padding: 0.5rem 1.5rem;*/
  }
}

.banner-booking-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .banner-booking-form {
    gap: 0.6rem;
  }
}

.banner-booking-form-title {
  font-family: Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 3vw, 18px);
  color: white;
  margin: 0 0 4px 0;
}

/* Form Field */
.banner-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.banner-form-label {
  font-family: Arial, sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: white;
}

.banner-form-input {
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid transparent;
  padding: 0 16px;
  font-family: Arial, sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: white;
  outline: none;
  transition: all 0.2s;
}

.banner-form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.banner-form-input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Submit Button */
.banner-submit-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 45px;
  background-color: #ecb11f;
  transition: background-color 0.2s;
  margin-top: 0.5rem;
  border: none;
  cursor: pointer;
  border-radius: 8px;
}

.banner-submit-button:hover {
  background-color: #d4a01d;
}

.banner-submit-button:active {
  background-color: #c49419;
}

.banner-submit-button-text {
  font-family: Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: black;
}

/* Utility Classes */
.banner-text-break {
  word-break: break-word;
}

.banner-form-two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

/* Fix Contact Form 7 wrapper */
.banner-form-two-col .banner-form-field{
  width:100%;
}

.banner-form-two-col .wpcf7-form-control-wrap{
  display:block;
  width:100%;
}

.banner-form-input{
  width:100%;
  box-sizing:border-box;
}
/* Mobile layout */
@media (max-width: 600px){
  .banner-form-two-col{
    grid-template-columns:1fr;
  }
}