* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #c9ea7b, #f3eef5);
    color: #2d2d2d;
    min-height: 100vh;
}

/* Navbar */

header {
    width: 100%;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Logo */

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #4d3f87;
}

/* Navbar Menu */
nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

nav a {
    text-decoration: none;
    color: #4d3f87;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

/* Hover Underline */
nav a::after {
    content: "";
    position: absolute;

    left: 0;
    bottom: -6px;

    width: 0%;
    height: 3px;

    background: #b8d85b;
    border-radius: 10px;

    transition: 0.3s;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a:hover,
nav a.active {
    color: #8dbb2e;
}

/* Hero Section */

.hero {
    width: 100%;
    min-height: 90vh;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 60px;
    padding: 50px 10%;
}

/* Hero Text */

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    color: #2d2d2d;
    background: linear-gradient(90deg, #4b3f72, #BADA55);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text h2 {
    font-size: 35px;
    font-weight: 600;
    color: #8dbb2e;

    margin: 15px 0 20px;
}

.hero-text p {
    font-size: 16px;
    line-height: 30px;
    color: #555;

    margin-bottom: 35px;
}

/* Button */

.buttons {
    display: flex;
    gap: 20px;

    margin-bottom: 40px;
}

.btn-primary,
.btn-outline {
    width: 170px;
    height: 55px;

    display: flex;
    justify-content: center;
    align-items: center;

    text-decoration: none;

    border-radius: 12px;

    font-size: 18px;
    font-weight: 600;

    transition: 0.3s;
}

/* Button Primary */
.btn-primary {
    background: #b8d85b;
    color: white;
}

.btn-primary:hover {
    background: #9fc342;
    transform: translateY(-3px);
}

/* Button Outline */
.btn-outline {
    border: 2px solid #b8d85b;
    color: #8dbb2e;
}

.btn-outline:hover {
    background: #b8d85b;
    color: white;
    transform: translateY(-3px);
}

/*  Social Media */

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    width: 45px;
    height: 45px;

    display: flex;
    justify-content: center;
    align-items: center;

    text-decoration: none;

    border: 2px solid #b8d85b;
    border-radius: 50%;

    color: #8dbb2e;
    font-weight: bold;

    transition: 0.3s;
}

.social-icons a:hover {
    background: #b8d85b;
    color: white;

    transform: translateY(-3px);
}

/* Hero Image */

.hero-image {
    flex: 1;

    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 420px;
    height: 520px;

    object-fit: cover;

    border-radius: 25px;

    box-shadow: 0 0 80px rgba(187, 216, 91, 0.4);
}

/* Responsive Tablet */

@media (max-width: 992px) {

    .hero {
        flex-direction: column-reverse;
        text-align: center;
    }

    .buttons,
    .social-icons {
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 45px;
    }

    .hero-text h2 {
        font-size: 28px;
    }
}

/* Responsive Mobile */

@media (max-width: 600px) {

    header {
        padding: 15px 20px;
    }

    nav {
        gap: 15px;
    }

    nav a {
        font-size: 15px;
    }

    .hero {
        padding: 40px 20px;
    }

    .hero-text h1 {
        font-size: 35px;
    }

    .hero-text h2 {
        font-size: 24px;
    }

    .buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-outline {
        width: 220px;
    }

    .hero-image img {
        max-width: 300px;
        height: 400px;
    }
}