/* Universal Styling */
* {
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

/* Navigation Styles */
nav {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 1rem;
  background-color: #fff;
  box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.5);
}

/* Link Styles */
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  font-weight: 600;
}

nav ul li a:hover {
  color: #c8baa0;
  transition: color 0.3s ease;
}

/* Logo Styles */
#logo h1 {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 5px;
  cursor: pointer;
}

/* Icon Styles */
.icons {
  display: flex;
  gap: 1rem;
}

.icons span {
  cursor: pointer;
}

/* Hero Section Styles */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100vh;
  background-image: url("./img/hero.jpg");
  background-size: cover;
  background-position: center center;
  gap: 1.5rem;
}

.hero h1 {
  font-size: 3rem;
  text-transform: uppercase;
  color: #fff;
}

.hero p {
  font-size: 1.2rem;
  color: #fff;
  max-width: 600px;
}

.hero button {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  color: #fff;
  background-color: #b04560;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 5px;
}

.hero button:hover {
  background-color: #ca7495;
  transition: background-color 0.3s ease;
}

/* Social Section Styles */
.container {
  width: 100%;
  background-color: #ca7495;
  padding: 2rem;
}

.container p {
  color: #000000;
  margin-bottom: 1rem;
}

.container > h1 {
  color: #ffffff;
  font-size: 2rem;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.social-section {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 4rem 0;
}

.social {
  background-color: #fff;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  text-align: justify;
  border-radius: 10px;
  height: 380px;
  width: 280px;
  flex-direction: column;
  box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.5);
}

.social-icons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.social-icons img {
  width: 50px;
}

.social h1 {
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #000;
}

.social button {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  color: #fff;
  background-color: #b04560;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 5px;
}

.social button:hover {
  background-color: #ca7495;
  transition: background-color 0.3s ease;
}

/* Youtube Custom Styling */
.youtube {
  background-color: antiquewhite;
}

.youtube button {
  color: #fff;
  background-color: #000;
}
.youtube button:hover {
  background-color: #5e5e5e;
  color: #fff;
}

/* Footer styling */
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #202020;
  gap: 2rem;
  padding: 3rem 1rem;
  width: 100%;
}

.socialFooter {
  display: flex;
  align-items: center;
  gap: 2rem;
}

footer img {
  width: 30px;
  height: auto;
  cursor: pointer;
}

footer ul {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

footer ul li {
  list-style: none;
}

footer ul li a {
  color: #c8baa0;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer ul li a:hover {
  color: #ca7495;
  transition: color 0.3s ease;
}

footer > p {
  color: #c8baa0;
}
