@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

/* section 1 */

 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Rubik", sans-serif;

}
/* Header Styles */

.menu-icon {
  display: none;
}

header { 
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 40px;
  background-color: #343a40;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo */
.logo {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Navigation */
nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Navigation Links */
nav a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #e8e7e9;
}

/* Search Input */
.input-1 {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

.input-1:focus {
  border-color: #5f2cff;
  box-shadow: 0 0 5px rgba(95, 44, 255, 0.2);
}


/* Buttons */
#loginBtn, #signup {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

/* Login Button Style */
#loginBtn{
  background-color: transparent;
  color: #ffffff;
  border: 1.5px solid #ebe6f9;
}

#loginBtn:hover {
  background-color: #ffffff;
  color: #000000;
}

/* logout button */
.logout {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

/* Logout Button Style */
.logout{
  background-color: transparent;
  color: #ffffff;
  border: 1.5px solid #ebe6f9;
}

.logout:hover {
  background-color: #ffffff;
  color: #000000;
}

/* Signup Button Style */
#signup {
  background-color:transparent;
  color: rgb(255, 255, 255);
  border: none;
  border: 1.5px solid #ebe6f9;
}

#signup:hover {
  background-color: #e9e4e4;
   color: #000000;
}

/* section 2 style */

.section2 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 20px;
  background-color: #f7f7f7; /* Light gray background */
  margin: 30px 80px 25px 80px;
  border-radius: 30px;
}

.sec2-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  width: 100%;
}

.sec2-text {
  flex: 1;
  padding: 10px;
}

.sec2-text h1 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
font-family: "Handlee", cursive;
}

.sec2-text p {
  font-size: 18px;
  color: #555;
  font-weight: 700;
  font-family: "Handlee", cursive;
  margin-bottom: 30px;
}


.sec2image {
  flex: 1;
  text-align: center;
  padding: 20px;
}

.sec2image img {
  max-width: 100%;
  height: auto;
}
#explore-btn {
  display: inline-block;
  padding: 10px 24px;
  color: #5f2cff;
  border: 2px solid #5f2cff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

#explore-btn:hover {
  background-color: #5f2cff;
  color: white;
}


/* Footer section eka  */

 /* Footer Styles */
    footer {
        background-color: #343a40;
        color: #ccc;
        padding: 50px 20px 20px;
        margin-top: 60px;
    }

    .footer-container {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        justify-content: space-between;
        max-width: 1200px;
        margin: auto;
    }

    .footer-about, .footer-categories, .footer-newsletter {
        flex: 1;
        min-width: 250px;
    }

    .footer-about p,
    .footer-newsletter p {
        font-size: 14px;
        line-height: 1.6;
        color: #bbb;
    }

    .footer-categories h3,
    .footer-newsletter h3 {
        color: #fff;
        margin-bottom: 10px;
    }

    .category-columns {
        display: flex;
        gap: 20px;
    }

    .category-columns ul {
        list-style: none;
        padding: 0;
    }

    .category-columns li {
        margin-bottom: 8px;
    }

    .anchor {
        color: #bbb;
        text-decoration: none;
    }

    .anchor:hover {
        color: #fff;
    }

    .footer-newsletter input[type="text"],
    .footer-newsletter input[type="email"] {
        width: 100%;
        padding: 10px;
        margin: 8px 0;
        border-radius: 5px;
        border: none;
    }

    .footer-newsletter button {
        padding: 10px 20px;
        background-color: #007bff;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
    }

    .footer-bottom {
        text-align: center;
        margin-top: 30px;
        color: #888;
        font-size: 14px;
    }
    .explore-btn {
  display: inline-block;
  padding: 10px 24px;
  color: #5f2cff;
  border: 2px solid #5f2cff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.explore-btn:hover {
  background-color: #5f2cff;
  color: white;
}


