@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

:root {
    --semi-color: #ca2e55;
    --highlight-color: #ffd700;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    width: 100%;
    background-color: #003f91;
    color: white;
}

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

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.company-name h1 {
    margin: 0;
    font-size: 24px;
}

.company-name h4 {
    margin: 0;
    font-size: 16px;
}

.nav-links {
    background-color: var(--semi-color);
    display: flex;
    margin-left: auto;
}

.nav-links ul {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    padding-left: 0;
}

.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 65px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    position: relative;
    transition: color 0.2s ease-in-out;
}

.nav-links a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: var(--highlight-color);
    transition: width 0.3s ease-in-out;
    position: absolute;
    bottom: -4px;
    left: 0;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    transition: color 0.3s ease-in-out;
}

.search-bar {
    display: flex;
    align-items: center;
}

.search-bar input {
    padding: 10px;
    width: 300px;
    border-radius: 25px;
    border: none;
    outline: none;
}

.search-bar button {
    padding: 10px;
    margin-left: -40px;
    background-color: var(--semi-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: white;
}

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

.icons a {
    text-decoration: none;
    color: white;
}

.cart-icon {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.cart-icon h3 {
    margin-left: 5px;
    font-size: 18px;
    color: white;
    text-decoration: none;
}

.icons BUTTON {
    display: inline-block;
    text-decoration: none;
    border: 1px solid white;
    padding: 12px 34px;
    font-size: 15px;
    background: var(--semi-color);
    position: relative;
    cursor: pointer;
    color: white;
}

.login{
  border-radius: 15px;
  background-color: var(--semi-color);
  height: 53px;
  width: 156px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 400;
}

.login:hover{
  background-color: white;
  color:#003f91;
  transition: all 0.4s ease-in-out;
}


.home-section {
    width: 100%;
    min-height: 100vh;
    background-image: url(Home.png);
    background-position: center;
    background-size: cover;
    position: relative;
    font-family: 'Times New Roman';
}

.intro-text a {
    text-decoration: none;
    color: white;
}

.buttonhe {
    display: inline-block;
    text-decoration: none;
    border: 1px solid white;
    padding: 12px 34px;
    font-size: 15px;
    background: var(--semi-color);
    position: relative;
    cursor: pointer;
    color: white;
    border: 0px;
    border-radius: 8px;
}

.buttonhe:hover{
  background-color: #003f91;
  transition: all 0.4s ease-in-out;
}

.intro-text {
    width: 90%;
    color: aliceblue;
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
}

.intro-text h1 {
    font-size: 60px;
    color: white;
}

.intro-text p {
    margin: 10px 0 20px;
    font-size: 15px;
    color: white;
}


.maya-ko-text {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    letter-spacing: 1px;
    word-spacing: 1px;
    text-align: center;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links ul {
        flex-direction: column;
        padding: 0;
        display: none;
    }

    .nav-links ul li {
        padding: 10px 0;
    }

    .search-bar {
        width: 100%;
        margin-top: 10px;
    }

    .search-bar input {
        width: 100%;
    }

    .intro-text {
        width: 100%;
        left: 50%;
        transform: translate(-50%, 50%);
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
        padding: 20px;
        border-radius: 10px;
    }

    .intro-text h1 {
        font-size: 40px;
    }

    .intro-text p {
        font-size: 12px;
        margin: 0 auto;
    }

    .footer-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .home-section {
        background-image: url(mob.png);
    }
}

.footer {
  background-color: black;
  color: #fff;
  padding: 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-text a {
  color: #ffd700;
  text-decoration: none;
  font-weight: bold;
}

.footer-text a:hover {
  text-decoration: underline;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.social-link {
  color: #ffffff;
  transition: color 0.3s;
}

.social-link:hover {
  color: #ffd700;
}

.social-link i {
  font-size: 1.5em;
}
