* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #3498db;
  --secondary: #2c3e50;
  --accent: #e74c3c;
  --light: #ecf0f1;
  --dark: #2c3e50;
  --success: #2ecc71;
  --warning: #f39c12;
  --text: #333;
  --text-light: #777;
  --spacing: 8px;
  --border-radius: 8px;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}
/* need to learn this */

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 15px 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo {
  height: 50px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover {
  transform: scale(1.5);
}

.main_menu--container ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.main_menu--container a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 16px;
  padding: 8px 5px;
  position: relative;
  transition: var(--transition);
}

.main_menu--container a:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.main_menu--container a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.main_menu--container a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.9)
    ),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%233498db" opacity="0.1"/><path d="M0 0L100 100" stroke="%233498db" stroke-width="1" opacity="0.2"/><path d="M100 0L0 100" stroke="%233498db" stroke-width="1" opacity="0.2"/></svg>');
  background-size: cover;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--secondary);
  animation: fadeInUp 1s ease;
}

.hero p {
  font-size: 1.5rem;
  max-width: 700px;
  margin: 0 auto 40px;
  color: var(--text-light);
  animation: fadeInUp 1s ease 0.2s both;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: var(--shadow);
  animation: fadeInUp 1s ease 0.4s both;
}

.btn:hover {
  background: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Features Section */

.features {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #5a8bb8 100%);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  color: var(--secondary);
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-title p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--light);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.feature-card h3 {
  margin-bottom: 15px;
  color: var(--secondary);
}

body > section.features > div > div.features-grid > div:nth-child(2) > ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

body
  > section.features
  > div
  > div.features-grid
  > div:nth-child(2)
  > ul
  > li
  a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 16px;
  padding: 8px 5px;
  position: relative;
  transition: var(--transition);
}

body
  > section.features
  > div
  > div.features-grid
  > div:nth-child(2)
  > ul
  > li
  a:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

body
  > section.features
  > div
  > div.features-grid
  > div:nth-child(2)
  > ul
  > li
  a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

body
  > section.features
  > div
  > div.features-grid
  > div:nth-child(2)
  > ul
  > li
  a:hover::after {
  width: 100%;
}

body > section.features > div > div.section-title > p {
  color: rgb(255, 254, 254);
  font-weight: 600;
}

body > section.features > div > div.features-grid > a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 16px;
  padding: 8px 5px;
  position: relative;
  transition: var(--transition);
}

/* Seasonal Websites */
.seasonal {
  padding: 80px 0;
  background: white;
}

.seasonal-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.seasonal-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.seasonal-text p {
  margin: 5px;
  text-align: center;
}
.seasonal-visual {
  flex: 1;
  background: linear-gradient(45deg, #3498db, #2c3e50);
  border-radius: var(--border-radius);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: var(--shadow);
}

.seasonal-text a.btn {
  align-self: center; /* Ensures the button itself is centered */
  margin-top: 15px;
}

/* Footer */
footer {
  background: var(--secondary);
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #ecf0f1;
  text-decoration: none;
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 15px;
  }

  .main_menu--container ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .seasonal-content {
    flex-direction: column;
  }
}
/* line 455 */

/* Fire CSS */
@keyframes scaleUpDown {
  0%,
  100% {
    transform: scaleY(1) scaleX(1);
  }
  50%,
  90% {
    transform: scaleY(1.1);
  }
  75% {
    transform: scaleY(0.95);
  }
  80% {
    transform: scaleX(0.95);
  }
}

@keyframes shake {
  0%,
  100% {
    transform: skewX(0) scale(1);
  }
  50% {
    transform: skewX(5deg) scale(0.9);
  }
}

@keyframes particleUp {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: -100%;
    transform: scale(0.5);
  }
}

@keyframes glow {
  0%,
  100% {
    background-color: #007bff;
  }
  50% {
    background-color: #008cff;
  }
}

.fire {
  position: absolute;
  top: calc(40%);
  left: calc(30%);
  width: 35px;
  height: 35px;
  background-color: transparent;
  margin-left: auto;
  margin-right: auto;
}

.fire-center {
  position: absolute;
  height: 100%;
  width: 100%;
  animation: scaleUpDown 3s ease-out;
  animation-iteration-count: infinite;
  animation-fill-mode: both;

  .main-fire {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(
      farthest-corner at 10px 0,
      #0056b3 0%,
      #007bff 95%
    );
    transform: scaleX(0.8) rotate(45deg);
    border-radius: 0 40% 60% 40%;
    filter: drop-shadow(0 0 10px #0056b3);
  }

  .particle-fire {
    position: absolute;
    top: 60%;
    left: 45%;
    width: 10px;
    height: 10px;
    background-color: #007bff;
    border-radius: 50%;
    filter: drop-shadow(0 0 10px #0056b3);
    animation: particleUp 2s ease-out 0;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
  }
}

.fire-right {
  height: 100%;
  width: 100%;
  position: absolute;
  animation: shake 2s ease-out 0;
  animation-iteration-count: infinite;
  animation-fill-mode: both;

  .main-fire {
    position: absolute;
    top: 15%;
    right: -25%;
    width: 80%;
    height: 80%;
    background-color: #007bff;
    transform: scaleX(0.8) rotate(45deg);
    border-radius: 0 40% 60% 40%;
    filter: drop-shadow(0 0 10px #0056b3);
  }

  .particle-fire {
    position: absolute;
    top: 45%;
    left: 50%;
    width: 15px;
    height: 15px;
    background-color: #007bff;
    transform: scaleX(0.8) rotate(45deg);
    border-radius: 50%;
    filter: drop-shadow(0 0 10px #0056b3);
    animation: particleUp 2s ease-out 0;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
  }
}

.fire-left {
  position: absolute;
  height: 100%;
  width: 100%;
  animation: shake 3s ease-out 0;
  animation-iteration-count: infinite;
  animation-fill-mode: both;

  .main-fire {
    position: absolute;
    top: 15%;
    left: -20%;
    width: 80%;
    height: 80%;
    background-color: #007bff;
    transform: scaleX(0.8) rotate(45deg);
    border-radius: 0 40% 60% 40%;
    filter: drop-shadow(0 0 10px #0056b3);
  }

  .particle-fire {
    position: absolute;
    top: 10%;
    left: 20%;
    width: 10%;
    height: 10%;
    background-color: #007bff;
    border-radius: 50%;
    filter: drop-shadow(0 0 10px #0056b3);
    animation: particleUp 3s infinite ease-out 0;
    animation-fill-mode: both;
  }
}

.fire-bottom .main-fire {
  position: absolute;
  top: 30%;
  left: 20%;
  width: 75%;
  height: 75%;
  background-color: #008cff;
  transform: scaleX(0.8) rotate(45deg);
  border-radius: 0 40% 100% 40%;
  filter: blur(10px);
  animation: glow 2s ease-out 0;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}
