:root {
  --main-color: #ff99cc; /* Light pink */
  --secondary-color: #66ccff; /* Light blue */
  --background-color: #fffaf0; /* Ivory */
  --text-color: #333333; /* Dark gray */
}

body {
  background-color: var(--background-color);
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  overflow-x: hidden;
}

.header {
  background: var(--main-color);
  color: #ffffff; /* White */
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}

.header-icons a {
  transition: color 0.2s ease, transform 0.3s ease;
}

.header-icons a:hover {
  transform: scale(1.3);
}

.header-icons {
  display: flex;
  align-items: center;
}

.header-icons a {
  margin-left: 10px;
}

.header-icons i {
  font-size: 50px;
}

.proflogo {
  height: 50px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 125px;
  margin-right: 25px;
}

.logo:hover {
  animation: spin 0.3s ease;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.head {
  display: flex;
  align-items: center;
}

.subtitle {
  font-size: 18px;
  opacity: 0.8;
}

.social a {
  color: #ffffff; /* White */
  margin-left: 25px;
  font-size: 20px;
}

.featured {
  max-width: 1200px;
  margin: 60px auto;
  text-align: center;
  padding: 0 20px;
}

.days {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}

.day img {
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s, opacity 0.3s;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
}

.day img:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

.day {
  position: relative;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffffff; /* White */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

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

.more-btn {
  background: var(--secondary-color);
  color: #ffffff; /* White */
  border: none;
  border-radius: 4px;
  padding: 12px 24px;
  margin: 50px 0;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.more-btn:hover {
  background: #5bb0e6; /* Slightly darker light blue */
}

.custom-title {
  font-size: 25px;
}

footer {
  text-align: center;
  padding: 30px;
  opacity: 0.8;
  background: var(--main-color);
  color: #ffffff; /* White */
}

footer p {
  margin: 0;
}

.animated-logo {
  animation: fadeInDown 1s ease-out;
}

.animated-title {
  animation: fadeInUp 1s ease-out;
}

.animated-btn {
  animation: fadeIn 2s ease-in-out infinite alternate;
}

@keyframes fadeIn {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
