/* styles.css */

/* BebasNeue Font */
@font-face {
  font-family: "BebasNeue";
  src: url("https://real-archaeology.com/fonts/BebasNeue.ttf")
    format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Oswald Font */
@font-face {
  font-family: "Oswald";
  src: url("https://real-archaeology.com/fonts/Oswald.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Anton Font */
@font-face {
  font-family: "Anton";
  src: url("https://real-archaeology.com/fonts/Anton.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Customize navbar background color */
.navbar {
  background-color: #fff;
  transition: background-color 0.3s;
}

/* Change background on scroll */
.navbar.scrolled {
  background-color: #f8f9fa !important;
}

/* Navbar brand styling */
.navbar-brand {
  font-weight: bold;
  font-size: 5.5rem;
  font-family: "Oswald", Arial, Helvetica, sans-serif;
}

/* Navbar link styling */
.navbar-nav .nav-link {
  margin-right: 1rem;
  transition: color 0.3s;
  font-family: "Oswald", Arial, Helvetica, sans-serif;
  font-size: 1.5em;
}

.navbar-nav .nav-link:hover {
  color: #a8120d;
}

/* Add padding to navbar content on desktop screens */
@media (min-width: 992px) {
  .navbar .container-fluid {
    padding-left: 30%;
    padding-right: 30%;
  }
}

/* Custom Spacing Class */
.section-spacing {
  padding-top: 9rem; /* Increased top padding */
  padding-bottom: 9rem; /* Increased bottom padding */
}

/* Optional: Responsive Spacing */
@media (max-width: 576px) {
  .section-spacing {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

/* Carousel Full-Screen Styling */
#landingCarousel {
  position: relative;
  top: 0;
  left: 0;
}

.carousel-item {
  height: 100vh;
  min-height: 300px;
}

.carousel-item img {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 300px;
  object-fit: cover;
  width: 100%;
  height: 100vh;
  z-index: 1; /* Images are behind the text */
}

.carousel-caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2; /* Caption is above the images */
}

/* Carousel Content Styling */
.carousel-content {
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  /* Optional background for better readability */
  /* background-color: rgba(0, 0, 0, 0.4); */
  /* padding: 20px; */
  /* border-radius: 10px; */
}

/* Subheading Styling */
.carousel-content .subheading {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem; /* Adjust as needed */
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

/* Main Heading Styling */
.carousel-content h1 {
  font-family: "Anton", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 6rem; /* Increase font size for larger heading */
  /* margin-bottom: 1rem; */
}

/* Paragraph Styling */
.carousel-content p {
  font-size: 1.25rem;
}

/* Media query for smaller screens (768px and below) */
@media (max-width: 768px) {
  .carousel-caption .subheading {
    font-size: 1.6rem; /* Smaller subheading */
  }

  .carousel-caption h1 {
    font-size: 3.2rem; /* Smaller main heading */
  }
}

/* Adjust content under navbar */
body {
  margin-top: 0;
}

/* Adjust content under navbar */
body {
  margin-top: 0;
}

/* About Section Styling */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-wrapper {
  display: flex;
}

.about-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background-color: #a8120d; /* Red background */
  color: #fff; /* White text */
  display: flex;
  align-items: center;
  justify-content: right; /* Center horizontally */
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

.about-bg h2 {
  margin: 0;
  font-family: "Anton", Arial, Helvetica, sans-serif;
  font-size: 5.5rem;
  align-items: right;
}

.about-content {
  margin-left: 30%; /* Push content to the right */
  width: 70%;
  padding: 60px 20px;
  box-sizing: border-box;
}

.about-text {
  max-width: 800px;
  margin: 0 auto;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  text-align: justify;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-text .call-to-action {
  font-weight: bold;
  color: #a8120d; /* Red color */
  text-align: center;
}

/* Mailto Button Styling */
.about-contact {
  text-align: center;
  margin-top: 30px;
}

.contact-button {
  display: inline-block;
  background-color: #a8120d; /* Red background */
  color: #fff; /* White text */
  padding: 12px 24px;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s;
}

.contact-button:hover {
  background-color: #8e0f0b;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
  }

  .about-bg {
    position: center;
    width: 100%;
    height: auto;
    padding: 30px 20px;
  }

  .about-bg h2 {
    font-size: 3rem;
  }

  .about-content {
    margin-left: 0;
    margin-top: 170px;
    width: 100%;
    padding: 30px 20px;
  }

  .about-text p {
    font-size: 1rem;
  }

  .about-text .call-to-action {
    text-align: center;
  }
}

/* Event Section Styling */
.event-section {
  background-image: url("https://real-archaeology.com/img/event-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0;
  position: relative;
  min-height: 500px; /* Ensure the section has height */
}

/* Event Header Box */
.event-header-box {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  text-align: center;
  max-width: 350px; /* Set max-width to 350px */
  margin: 0 auto;
  border-radius: 10px;
}

.event-header-box h2 {
  margin: 0;
  font-size: 4rem;
  font-weight: 700;
  color: #a8120d;
  font-family: "Oswald", sans-serif;
}
.event-header-box h6 {
  margin: 15px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  font-family: "Anton", sans-serif;
}

/* Event Content Box */
.event-content-box {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 20px;
  text-align: center;
  max-width: 350px; /* Set max-width to 350px */
  margin: 20px auto 0 auto;
  border-radius: 10px;
}

.event-content-box p {
  margin: 0 0 20px 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
}

/* Countdown Styling */
#countdown {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
}

#countdown h3 {
  font-size: 2rem;
  margin-bottom: 0;
}

#countdown small {
  display: block;
  font-size: 0.9rem;
  color: #666;
}

@media (max-width: 576px) {
  #countdown .d-flex {
    flex-direction: column;
  }

  #countdown div {
    margin-bottom: 15px;
  }
}

/* View Agenda Button */
.btn-agenda {
  display: inline-block;
  background-color: #a8120d;
  color: #fff;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
  transition: background-color 0.3s;
}

.btn-agenda:hover {
  background-color: #8e0f0b;
}

/* Responsive Adjustments */
@media (max-width: 400px) {
  .event-header-box,
  .event-content-box {
    max-width: 90%;
    margin: 1rem auto;
  }

  .event-header-box h2 {
    font-size: 3.5rem;
  }
  .event-header-box h6 {
    font-size: 2.5rem;
  }

  .event-content-box p {
    font-size: 1.1rem;
  }
}

/* Organizers Section Styling */
.organizers-section {
  background-color: #a8120d; /* Red background */
  padding: 60px 0;
  color: #fff; /* Default text color */
}

.organizers-section .organizers-header {
  max-width: 800px;
  margin: 0 auto 40px auto;
  text-align: center;
  padding: 20px;
  background-color: #fff; /* White background */
  color: #000; /* Black text */
  border-radius: 10px;
}

.organizers-section .organizers-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.organizers-section .organizers-header p {
  font-size: 1.2rem;
  margin: 0;
}

.organizers-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.organizer-card {
  background-color: #fff; /* White background */
  color: #000; /* Black text */
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  width: calc(20% - 20px); /* Five cards per row */
  max-width: 200px;
}

.organizer-card img {
  width: 100%;
  height: auto;
}

.organizer-info {
  padding: 15px;
}

.organizer-info h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.organizer-channel {
  font-size: 1rem;
  margin-bottom: 15px;
}

/* Single Contact Button Styling */
.organizers-contact {
  text-align: center;
  margin-top: 30px;
}

.contact-button {
  display: inline-block;
  background-color: #fff; /* White background */
  color: #a8120d; /* Red text */
  padding: 12px 24px;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s;
}

.contact-button:hover {
  background-color: #8e0f0b;
  color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .organizer-card {
    width: calc(25% - 20px); /* Four cards per row */
  }
}

@media (max-width: 992px) {
  .organizer-card {
    width: calc(33.333% - 20px); /* Three cards per row */
  }
}

@media (max-width: 768px) {
  .organizer-card {
    width: calc(50% - 20px); /* Two cards per row */
  }
}

@media (max-width: 576px) {
  .organizer-card {
    width: 100%; /* One card per row */
  }
}

/* Speakers Section Styling */
#speakers h2 {
  font-size: 5.1rem;
  font-weight: 700;
  font-family: "Oswald", Arial;
}

#speakers p {
  font-size: 1.1rem;
  color: #555;
}

.speaker-card {
  background-color: #fff;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s;
}

.speaker-card:hover {
  transform: translateY(-10px);
}

.speaker-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.speaker-card h5 {
  font-size: 1.25rem;
  margin-bottom: 5px;
}

.speaker-card a {
  color: #a8120d;
  text-decoration: none;
}

.speaker-card a:hover {
  text-decoration: underline;
}

/* Schedule Section Styling */
/* Schedule Section Full-Screen Height */
@media (min-width: 992px) {
  /* Apply to screens wider than 992px (desktop) */
  .schedule-section.full-height {
    height: 100vh; /* Set height to 100% of viewport height */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
    padding-top: 0;
    padding-bottom: 0;
    box-sizing: border-box;
  }
}

/* Background Image */
.schedule-section {
  background-image: url("https://real-archaeology.com/img/carousel-3.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 60px 0; /* This padding is for smaller screens */
}

/* Centering Content */
.schedule-header,
.schedule-content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .schedule-header,
  .schedule-content {
    padding: 20px; /* Add padding to content on larger screens */
  }
}
@media (max-width: 576px) {
  .schedule-header,
  .schedule-content {
    margin: 1rem;
  }
}

/* Remove default margins and paddings from child elements if necessary */
.schedule-section.full-height * {
  box-sizing: border-box;
}

.schedule-header {
  max-width: 800px;
  margin: 0 auto 40px auto;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  text-align: center;
  border-radius: 10px;
}

@media (min-width: 992px) {
  .schedule-header,
  .schedule-content {
    max-width: 800px;
  }
}

.schedule-header h2 {
  margin: 0 0 10px 0;
  font-size: 4rem;
  color: #000;
  font-family: "Oswald", Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.schedule-header p {
  margin: 0;
  font-size: 1.2rem;
  color: #333;
}

/* Schedule Content */
.schedule-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
}

/* Day Buttons */
.day-buttons {
  text-align: center;
  margin-bottom: 30px;
}

.day-buttons .btn-day {
  background-color: #a8120d;
  color: #fff;
  border: none;
  margin: 5px;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
  font-size: 1rem;
}

.day-buttons .btn-day.active,
.day-buttons .btn-day:hover {
  background-color: #8e0f0b;
}

/* Time Zone Buttons */
.timezone-buttons {
  text-align: center;
  margin-bottom: 20px;
}

.btn-timezone {
  background-color: #a8120d;
  color: #fff;
  border: none;
  margin: 5px;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
  font-size: 1rem;
}

.btn-timezone.active,
.btn-timezone:hover {
  background-color: #8e0f0b;
}

/* Schedule Details */
.schedule-details {
  margin-top: 20px;
}

.day-schedule {
  display: block;
}

.day-schedule.d-none {
  display: none;
}

/* Time Slots */
.time-slot {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 15px 0;
}

.time-slot .time {
  flex: 0 0 20%;
  max-width: 20%;
  font-weight: bold;
  font-size: 1.1rem;
}

.time-slot .description {
  flex: 0 0 80%;
  max-width: 80%;
  font-size: 1rem;
  line-height: 1.6;
}

.time-slot + hr {
  border: 0;
  border-top: 1px dotted #a8120d;
  margin: 0;
}

.day-heading {
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
}

.time-slot {
  margin-bottom: 20px;
}

.time-slot .time {
  font-weight: bold;
  margin-bottom: 5px;
}

.time-slot .topic {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.time-slot .channel a {
  color: #a8120d;
  text-decoration: none;
}

.time-slot .channel a:hover {
  text-decoration: underline;
}

hr {
  border: 0;
  border-top: 1px solid #ccc;
  margin: 20px 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .time-slot {
    flex-direction: column;
    align-items: flex-start;
  }

  .time-slot .time,
  .time-slot .description {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Speakers Section Styling */
#speakers {
  padding: 110px 0;
}

#speakers .section-title {
  text-align: center;
}

.speakers-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px; /* Space between grid items */
}

@media (max-width: 1200px) {
  .speaker-card {
    width: calc(25% - 20px); /* Four cards per row */
  }
}

@media (max-width: 992px) {
  .speaker-card {
    width: calc(33.333% - 20px); /* Three cards per row */
  }
}

@media (max-width: 768px) {
  .speaker-card {
    width: calc(50% - 20px); /* Two cards per row */
  }
}

@media (max-width: 576px) {
  .speaker-card {
    width: 100%; /* One card per row */
  }
}
/* Introduction Video Section Styling */
.video-section {
  padding: 60px 0;
  background-color: #f9f9f9; /* Optional: change or remove if desired */
}

.video-section .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.video-section h2 {
  font-size: 4.5rem;
  margin-bottom: 40px;
  color: #333;
  font-family: "Anton", Arial, Helvetica, sans-serif;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
  .video-section h2 {
    font-size: 2.5rem; /* Smaller font size on tablets */
  }
}

@media (max-width: 576px) {
  .video-section h2 {
    font-size: 2rem; /* Even smaller font size on mobile devices */
  }
}
