* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, .navbar {
  font-family: 'Mozilla Text', serif;
  font-weight: 400;
}

.navbar {
  background-color: black;
  color: white;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  justify-content: space-between;
}

.nav-left, .nav-center, .nav-right {
  display: flex;
  align-items: center;
}

.hamburger {
  font-size: 24px;
  cursor: pointer;
  margin-right: 10px;
}

.logo {
  font-size: 18px;
  font-weight: bold;
  margin-left:30px;
}

.search-container {
  position: relative; /* This is crucial for positioning the icon */
  display: inline-block; /* Ensures the container wraps the input's width */
}

.search-input {
  width: 150px;
  border: none;
  border-bottom: 2px solid white;
  background-color: transparent;
  padding: 10px 35px 10px 0; /* Added right padding to prevent text from going under the icon */
  font-size: 16px;
  color: white;
  outline: none;
  transition: width 0.4s ease-in-out;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.search-input:hover,
.search-input:focus {
  width: 250px;
}

.search-icon {
  position: absolute; /* Positions the icon relative to the .search-container */
  right: 5px; /* Position from the right edge of the container */
  top: 50%; /* Center vertically */
  transform: translateY(-50%); /* Fine-tune vertical centering */
  width: 20px;
  height: 20px;
  fill: white; /* Color of the SVG icon */
  pointer-events: none; /* Allows you to click "through" the icon onto the input field */
}

.nav-right {
  gap: 15px;
}

.info-block {
  margin: 0 10px;
  font-size: 14px;
}

.social-links a {
  color: white;
  text-decoration: none;
  margin-left: 10px;
}

.social-links a:hover {
  text-decoration: underline;
}

/* General Layout — 3 Vertical Parts */
main {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* HERO SECTION */
.hero-section {
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  display: none;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-headline {
  background: rgba(0, 0, 0, 0.7);
  padding: 2rem 3rem;
  border-radius: 20px;
  color: white;
  max-width: 70%;
  text-align: center;
}

.hero-headline h1 {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 700;
}

/* Carousel Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: white;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
}

.carousel-btn.prev { left: 15px; }
.carousel-btn.next { right: 15px; }

.carousel-btn:hover {
  background: rgba(0,0,0,0.8);
}

/* SHORTS SECTION */
.shorts-section {
  text-align: center;
}

.shorts-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.shorts-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.shorts-scroll {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  scroll-behavior: smooth;
}

.shorts-scroll::-webkit-scrollbar {
  display: none;
}

.shorts-scroll video {
  width: 200px;
  height: 350px;
  border-radius: 15px;
  background: black;
  object-fit: cover;
  flex-shrink: 0;
}

.shorts-arrow {
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50%;
}

.shorts-arrow:hover {
  background: rgba(0,0,0,0.8);
}


.site-footer {
  background-color: #111;
  color: #ccc;
  padding: 2rem 1rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.4); /* soft shadow above */
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 32px;
  height: 32px;
}

.footer-nav {
  margin-bottom: 1rem;
}

.footer-nav a {
  color: #ccc;
  margin: 0 0.8rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-copy {
  font-size: 0.85rem;
  color: #777;
}
