@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');


body {
    font-family: "Inter", sans-serif;
    background-color: rgba(245, 248, 255, 1);
}

/* Share value */
.blue-gray {
    color: rgba(137, 135, 161, 1);
}

.lightGray {
    color: rgba(0, 0, 0, 0.5);
}

.orange {
    color: rgba(233, 90, 8, 1)
}

.inter {
    font-family: "Inter", sans-serif;
}

.header {
    font-weight: bold;
    font-family: "Noto Serif", serif;
}

/* Header */
.nav-span {
    position: relative;
}

.nav-span::after {
    content: "";
    position: absolute;
    height: 5px;
    width: 5px;
    background-color: red;
    border-radius: 50%;
    left: 15%;
    top: 2px;
}

nav li a {
    position: relative;
    width: 0%;
    transition: 1s;
}


nav li a::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 0%;
    background-color: rgba(233, 90, 8, 1);
    border-radius: 10px;
    top: 100%;
    transition: all 0.5s;
}

nav li a:hover::before {
    width: 100%;
}

/* Cards */
.card {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 5px;
    border-radius: 10px;
    transition: ease 0.7s;
    cursor: pointer;
}

.card:hover {
    background-color: rgba(233, 90, 8, 1);
    color: aliceblue;
}

.card h3,
.card p,
.card button {
    margin-top: 5px;
    font-size: 22px;
}

.card img {
    border-radius: 10px;
}

.card h3 {
    font-weight: bold;
}

.card button {
    background-color: rgba(233, 90, 8, 1);
    padding: 10px;
    color: aliceblue;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
}

.card:hover button {
    background-color: white;
    color: rgba(233, 90, 8, 1);
}

/* Badges */
.badge {
    filter: drop-shadow(-4px 10px 4px rgba(0, 0, 0, 0.5));
}


/* Optional Section */
.image1 {
    background-image: url(../assets/deal-ana.png);
    padding: 100px;
    background-repeat: no-repeat;
    background-size: contain;
    width: 350px;
    position: relative;
    border-radius: 10px 10px 25px 25px;
}

.i-1-sub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.image2 {
    background-image: url(../assets/deal-bloom.png);
    padding: 100px;
    background-repeat: no-repeat;
    background-size: contain;
    width: 350px;
    position: relative;
    border-radius: 10px 10px 25px 25px;
}

.i-2-sub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.image3 {
    background-image: url(../assets/deal-zabo.png);
    padding: 100px;
    background-repeat: no-repeat;
    background-size: contain;
    width: 750px;
    position: relative;
    border-radius: 10px 10px 25px 25px;
}

.i-3-sub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.image1 h1,
.image2 h1,
.image3 h1 {
    font-size: 20px;
    margin: 0;
    padding: 0;
    font-weight: bolder;
}

.image1 a,
.image2 a,
.image3 a {
    text-decoration: underline;
}

/* Join Section */
input {
    border-radius: 8px 0 0 8px;
}

.btn {
    background-color: rgba(233, 90, 8, 1);
    padding: 16px;
    margin-left: -5px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 0.1rem;
    transition: all 0.2s;
}

.btn:hover {
    background-color: transparent;
    outline: 3px solid rgba(233, 90, 8, 1);
    color: rgba(233, 90, 8, 1);
}

.join-section {
    background-image: url(../assets/news-letter-bg.png);
}

/* Footer */

.icons a {
    width: 50px;
    height: 50px;
}

footer ul li {
    margin-bottom: 20px;
}