/* Reset and Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #ffffff;
  margin: 0;
}

/* Hero Section */
.hero {
  position: relative;
  background-image: url('home\ image.jpg'); /* Ensure the image name is correct */
  background-size: cover;
  background-position: center;
  height: 100vh;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(0, 0, 0, 0.6);
  position: relative; /* Ensure navbar stays on top */
  z-index: 10; /* Ensure navbar is above hero content */
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #b3b3b3;
}

.cta-button {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 8px 15px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #ffffff;
  color: #1c1e21;
}

/* Hero Content */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%; /* Add this to center horizontally */
  transform: translate(-50%, -50%); /* Center both horizontally and vertically */
  background: rgba(0, 0, 0, 0.7); /* Transparent black background */
  padding: 40px 50px;
  border-radius: 10px;
  max-width: 700px;
  text-align: center; /* Center text */
}

.hero-content h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.hero-button {
  background-color: #00c853;
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.hero-button:hover {
  background-color: #00a844;
}



.about-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('Chill\ Lo-Fi\ Beats\ for\ Studying\,\ Relaxing\,\ and\ Working\ _\ Lofi\ Hip\ Hop\ 2023.jpeg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 20px;
}

.about-content {
    max-width: 600px;
    background: rgba(255, 255, 255, 0.8); 
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.about-content h1 {
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: #333;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.cta-button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #45a049;
}

.about-section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('Chill\ Lo-Fi\ Beats\ for\ Studying\,\ Relaxing\,\ and\ Working\ _\ Lofi\ Hip\ Hop\ 2023.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 20px;
}

.about-content {
  max-width: 700px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 15px;
  padding: 30px;
  box-shadow: #F8AA93; 
  text-align: center;
  color: #fff; 
  animation: fadeIn 1.5s ease-in-out;
}

.about-content h1 {
  margin-bottom: 20px;
  font-size: 2.8rem;
  color: #F8AA93;
  text-shadow: 0 0 15px rgba(255, 165, 0, 0.8);
}

.about-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 1.2rem;
  color: #f0f0f0;
}

.cta-button {
  padding: 12px 25px;
  background: linear-gradient(45deg, #FFA500, #FF4500); 
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 165, 0, 0.6); 
}

.cta-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 69, 0, 0.9);
}

/* Keyframes for fade-in effect */
@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(15px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}
