/* General Styles */
:root {
  --primary: #ff6f61;
  --secondary: #FFC107;
  --dark: #333333;
  --light: #f9f9f9;
  --accent: #8BC34A;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--light);
  color: var(--dark);
}

/* Header Styles */
header {
  background-color: var(--primary);
  color: white;
  text-align: center;
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
  position: relative;
  z-index: 2;
}

header p {
  margin: 5px 0 0;
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
}

/* Navigation Styles */
nav {
  background-color: var(--dark);
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

nav li {
  margin: 0 1rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--secondary);
}

/* Intro Section */
.intro {
  text-align: center;
  padding: 40px 20px;
}

.intro h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.intro p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 20px;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary);
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  border-radius: 5px;
  transition: transform 0.3s, background-color 0.3s;
}

.cta-button:hover {
  background-color: var(--accent);
  transform: scale(1.05);
}

/* Videos Section */
.videos {
  padding: 40px 20px;
  text-align: center;
}

.videos h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.videos h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 10%;
  width: 80%;
  height: 4px;
  background-color: var(--primary);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

.video-item {
  text-decoration: none;
  color: var(--dark);
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.video-item:hover {
  transform: translateY(-10px);
}

.video-item img {
  width: 100%;
  transition: transform 0.3s ease;
}

.video-item p {
  margin: 10px 0;
  padding: 0 10px 10px;
  font-size: 1.1rem;
}

/* Joke Section */
.joke-section {
  background-color: var(--secondary);
  padding: 40px 20px;
  text-align: center;
}

.joke-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.joke-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 10%;
  width: 80%;
  height: 4px;
  background-color: var(--primary);
}

.joke-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.joke-text {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 20px;
}

/* About Section */
.about-section {
  background-color: var(--dark);
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.about-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.about-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 10%;
  width: 80%;
  height: 4px;
  background-color: var(--primary);
}

.host-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 70px;
}
.host-image img {
  width: 150px;    /* Set a fixed width */
  height: 150px;   /* Set a fixed height */
  object-fit: cover; /* Ensures the image fills the space without distortion */
  border-radius: 50%; /* Makes the image a perfect circle */
  border: 4px solid #fff; /* Optional: Adds a white border */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Optional: Adds a soft shadow */
}

.host-bio {
  max-width: 500px;
  text-align: left;
}

.host-bio h3 {
  margin-top: 0;
  font-size: 1.5rem;
}

/* Contact Section */
.contact-section {
  padding: 40px 20px;
  text-align: center;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.contact-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 10%;
  width: 80%;
  height: 4px;
  background-color: var(--primary);
}

/* Footer */
footer {
  background-color: var(--dark);
  color: white;
  text-align: center;
  padding: 20px 0;
}

.social-links {
  margin: 15px 0;
}

.social-links a {
  color: var(--primary);
  text-decoration: none;
  margin: 0 10px;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }
  
  nav li {
    margin: 0.5rem 0;
  }
  
  .host-container {
    flex-direction: column;
  }
  
  .host-bio {
    text-align: center;
  }
  
  .joke-text {
    font-size: 1.2rem;
  }
}
