* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #fcb0ea;
}

header {
    background-color: #ffacec;
    padding: 15px 20px;
}

.logo{
    display: flex;
    flex-direction: column;
}
.logo h1 {
    font-family: 'Brush Script MT', cursive;
    color: #590059;
    display: flexbox;
    font-size: 50px;
}


nav {
    display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #ffb8fb;
      color: rgb(255, 255, 255);
      padding: 10px 20px;
      flex-wrap: wrap;
      border-radius: 5px;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.nav-links li {
    margin: 0 15px;
    
}

.nav-links a {
    text-decoration: none;
    color: #000000;
    font-size: 20px;
    transition: color 0.3s;
}

.nav-links a:hover{
    color: #007bff;
    border-bottom: 2px solid #007bff;
}
.icons{
    display: flex;
      gap: 12px;
      font-size: 14px;
      border-radius: 5px;
}
.icons div{
    display: block;
    flex-direction: row;
    align-content: end;
}
.icons a {
    margin-left: 15px;
}

.icons img {
    width: 24px;
    height: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        align-items: flex-start;
    }
}
body {
            font-family: Arial, sans-serif;
            background-color: #ebd3e9;
            margin: 0;
            padding: 20px;
        }

        .container {
            max-width: 1200px;
            margin: auto;
            text-align: center;
            padding: 10px;
            background-color: #f3c7e9;
            border-radius: 20px;
        }
        .container1 {
            max-width: 1200px;
            margin: 10px;
            text-align: center;
            background-color: #ffaaeb;
            border-radius: 20px;
        }
        h1 {
            margin: 20px 0;
            font-size: 35px;
        }

        h2 {
            margin-bottom: 20px;
            color: #555;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 10px;
            align-items: center;
        }

        .grid a{
            text-decoration: none;
        }

               .item {
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.2s;
        }

        .item:hover {
            background-color:#ff00f2;
            transform: scale(1.05);
        }

        .item img {
            width: 100%;
            height: 300px;
        }

        .item-title {
            padding: 10px;
            font-size: 1.1em;
            font-weight: bold;
            text-decoration:none;
            color: #590059;
        }

        .cta {
            margin-top: 20px;
            padding: 10px 20px;
            background: #007bff;
            color: #fff;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            display: inline-block;
        }

        .cta:hover {
            background: #0056b3;
        }

        @media (max-width: 600px) {
            .grid {
                grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
            }
        }

  /* Footer */
footer {
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
  }

  /* Responsive text sizes */
  @media (min-width: 640px) {
    .hero h1 {
      font-size: 4.5rem;
    }
  }
  .simple {
  background-color: #ff6bbf; /* Maroon-purple */
  color: rgb(23, 0, 0);
  padding: 40px 20px;
  font-size: 15px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-box h2.logo {
  font-family: 'Cursive', sans-serif;
  font-size: 26px;
  margin-bottom: 10px;
  color: #590059;
}

.footer-box h3 {
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-box p, 
.footer-box ul, 
.footer-box li, 
.footer-box a {
  
  text-decoration: none;
  line-height: 1.6;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 6px;
}

.footer-box a:hover {
  text-decoration: underline;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a img {
  width: 28px;
  height: 28px;
  margin-right: 10px;
  vertical-align: middle;
  transition: transform 0.2s;
}

.social-icons a img:hover {
  transform: scale(1.1);
}
