/* Reset some default styles */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	list-style: none;
	text-decoration: none;
	box-sizing: border-box;
}

body {
	font-family: Arial, sans-serif;
	background-color: #f4f4f4;
	color: #333;
}

/* Header Styles */
header {
	background-color: #000;
	color: #fff;
	position: sticky;
	top: 0;
	width: 100%;
	z-index: 1000;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.5rem 2rem;
}

.container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 100%; /* Ensure full width */
	padding: 0;
	margin: 0;
}

.logo img {
	max-height: 50px;
}

nav ul {
	display: flex;
	gap: 1.5rem;
}

nav a {
	color: #fff;
	font-size: 1rem;
	transition: color 0.3s ease;
}

nav a:hover {
	color: #CFB991;
}

.header-icons {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.header-icons a {
	color: #fff;
	display: flex;
	align-items: center;
}

.cart-icon {
	font-size: 0.9rem;
	color: #CFB991;
}

/* Hero Section */
.hero {
	position: relative;
	height: 80vh;
	background: url('images/IMG_1592.jpeg') no-repeat center center/cover;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-align: center;
	width: 100%;
	margin: 0;
	padding: 0;
}

.hero-content {
	position: relative;
}

.hero-logo {
	max-width: 600px;  /* Adjust this to control the logo size */
	width: 100%;
	height: auto;
	margin-bottom: 1rem;
}

.hero-text {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.cta-button {
	background-color: #CFB991;
	color: #CFB991;
	padding: 0.75rem 1.5rem;
	border-radius: 5px;
	font-size: 1rem;
	transition: background-color 0.3s ease;
}

.cta-button:hover {
	background-color: #CFB991;
}

/* Slider Arrows */
.slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 2rem;
	color: #fff;
	cursor: pointer;
	user-select: none;
}

.left-arrow {
	left: 10px;
}

.right-arrow {
	right: 10px;
}

/* Slider Dots */
.slider-dots {
	position: absolute;
	bottom: 10px;
	display: flex;
	justify-content: center;
	width: 100%;
}

.dot {
	height: 10px;
	width: 10px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	margin: 0 5px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.dot.active, .dot:hover {
	background-color: #000;
}

/* About Section */
.about {
	background-color: #000; /* Black background for the section */
	padding: 60px 0; /* Space around the section */
	color: #fff; /* White text color */
	width: 100%;
	margin: 0; /* Ensure full width */
}

.about-container {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 100%; /* Ensure full width */
	margin: 0;
	padding: 0;
	width: 100%;
}

.about-image {
	flex: 1;
	position: relative;
	margin-right: 30px;
}

.about-image img {
	width: 100%; /* Make the image responsive */
	display: block; /* Remove any bottom space */
}

.decorative-element {
	position: absolute;
	top: 20px; /* Adjust to position the decorative element */
	left: 20px; /* Adjust to position the decorative element */
}

.about-content {
	flex: 1;
	text-align: left;
}

.about-content h2 {
	font-size: 24px;
	color: #CFB991; /* Change to your preferred color */
	text-transform: uppercase;
}

.about-content h3 {
	font-size: 36px;
	margin-bottom: 20px;
}

.about-content p {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 20px;
}

.cta-button {
	background-color: #CFB991; /* Button color */
	color: #fff; /* Text color */
	padding: 10px 20px;
	text-decoration: none;
	text-transform: uppercase;
	border-radius: 5px;
	transition: background-color 0.3s ease;
}

.cta-button:hover {
	background-color: #000; /* Change button color on hover */
}

/* Schedule Section */
.schedule {
	position: relative;
	background: url('images/Cockpit.jpeg') no-repeat center center/cover;
	padding: 60px 0;
	color: #fff;
	text-align: left;
	width: 100%;
	margin: 0; /* Ensure full width */
}

.schedule-container {
	max-width: 100%; /* Ensure full width */
	margin: 0;
	padding: 0;
	background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black background */
}

.schedule-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.schedule-header h2 {
	font-size: 24px;
	color: #CFB991;
	text-transform: uppercase;
}

.schedule-header h3 {
	font-size: 36px;
	margin-bottom: 0;
}

.view-all {
	background-color: #CFB991;
	color: #fff;
	padding: 10px 20px;
	text-transform: uppercase;
	border: none;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.view-all:hover {
	background-color: #000;
}

.schedule-content {
	max-height: 300px; /* Set a fixed height for scrolling */
	overflow-y: auto; /* Enable vertical scrolling */
	padding-right: 10px; /* Add padding to avoid text overflow */
}

.schedule-item {
	display: flex;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.schedule-date {
	flex: 0 0 80px;
	text-align: center;
	margin-right: 20px;
}

.schedule-date .day {
	font-size: 14px;
	text-transform: uppercase;
}

.schedule-date .date {
	font-size: 28px;
	font-weight: bold;
	margin-top: 5px;
}

.schedule-date .month {
	font-size: 14px;
	text-transform: uppercase;
}

.schedule-details {
	flex: 1;
}

.schedule-details .event {
	font-size: 18px;
	font-weight: bold;
}

.schedule-details .location {
	font-size: 14px;
	color: #ccc;
	margin-top: 5px;
}

/* Social Media Section */
/* Social Media Section */
.social-media-section {
	background-color: #000; /* Black background for the section */
	padding: 50px 0; /* Space around the section */
	color: #fff; /* White text color */
	text-align: center; /* Center align the content */
	width: 100%;
	margin: 0;
}

.social-media-section h2 {
	font-size: 24px;
	color: #CFB991; /* Adjust color as needed */
	margin-bottom: 20px; /* Space below the title */
}

.social-media-feed {
	display: flex;
	justify-content: center; /* Center the Facebook feed */
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	max-width: 100%; /* Ensure full width */
	margin: 0 auto; /* Center the feed horizontally */
}

.social-media-feed .fb-page {
	flex: 1;
	min-width: 300px;
	max-width: 400px;
}

/* Sponsors Section */
.sponsors {
  padding: 60px 0;
  background-color: #fff;
  text-align: center;
  width: 100%;
  margin: 0;
}

.sponsors-container {
  max-width: 1200px;
  margin: 0 auto; /* Centers container if you limit width in the future */
  padding: 0 20px;
}

.sponsors h2 {
  font-size: 36px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* Main Logos */
.sponsors-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.sponsors-logos a {
  display: inline-block;
  padding: 10px;
  transition: transform 0.3s ease;
}

.sponsors-logos a:hover {
  transform: scale(1.1);
}

.sponsors-logos img {
  max-width: 150px; /* Adjust as needed for the regular sponsors */
  height: auto;
}

/* Featured Sponsor */
.featured-sponsor {
  text-align: center; 
}

.featured-sponsor img {
  max-width: 100px;  /* Make this logo larger */
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.featured-sponsor a:hover img {
  transform: scale(1.1);
}



/*Smooth Scrolling*/
html {
	scroll-behavior: smooth;
}