/* General Font & Colors */
body {
  font-family: 'Unbounded', sans-serif;
  line-height: 1.6;
  color: #222;
  margin: 0;
  padding: 0;
}

/* Navbar */
.navbar {
  padding: 1rem 0;
}

.nav-link {
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #f77f00; /* UTK orange hover */
}

/* Hero Section (shared for Home & About) */
.hero-section {
  background: url('../images/hello.jpeg') no-repeat center center/cover;
  min-height: 70vh;
  position: relative;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5); /* dark overlay */
  z-index: 0;
}

.hero-section .container {
  z-index: 1;
  position: relative;
  animation: fadeInUp 1.5s ease;
}

.hero-section h1 {
  font-size: 3.5rem;
  color: #fff;
}

.hero-section p {
  font-size: 1.25rem;
  color: #ddd;
}

/* Buttons */
.btn-primary {
  background-color: #f77f00;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #d96900;
  transform: scale(1.05);
}

.btn-outline-light:hover {
  background-color: #fff;
  color: #000;
  transform: scale(1.05);
}

/* About Section Styling */
<link href="css/club-style.css" rel="stylesheet">

.about-section {
  background: linear-gradient(to bottom, #ffffff, #f8f9fa);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.about-section img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
}

.about-section img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.about-section h2 {
  color: #f77f00;
}

/* Simple fade-in animations */
.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInLeft 1s ease forwards;
}
.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  animation: fadeInRight 1s ease forwards;
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Footer */
footer {
  font-size: 0.9rem;
}

/* Fade-in animation for hero text */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
