@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)),
        url("https://t3.ftcdn.net/jpg/06/00/92/48/360_F_600924810_sUjRctiOgobpzgaHnv3dPDhyoT25F3xb.jpg");
    background-size: cover;
    background-position: center;
    color: #f5f5f5; 
}


.navbar {
    width: 95%;
    margin: 20px auto 0px auto;

    background: linear-gradient(120deg, #ffe0e6 0%, #fdcad3 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 12px 24px;

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

    transition: all 0.3s ease;
}


.left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo img {
    width: 40px;
    margin-right: -20px;
    height: 40px;
    border-radius: 12px;
}

.nav-links {
    display: flex;
    gap: 5px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 14px;
    color: #10141a;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}



.nav-item:hover {
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.1), rgba(236, 72, 153, 0.1));
    color: #be185d;
    transform: translateY(-2px);
}

.nav-item svg {
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
}

.nav-item:hover svg {
    transform: scale(1.1);
    color: #be185d;
}


.hero {
    position: relative;
    background: linear-gradient(120deg, #ffe0e6 0%, #f69bac 100%);
    padding: 90px 40px;
    overflow: hidden;
    border-radius: 20px;
    margin: 40px;
    margin-top: 20px;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, #ffc0cb33, transparent);
    z-index: 0;
}

.hero-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

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

.text-section h1 {
    font-size: 64px;
    font-weight: 800;
    color: #720000;
    margin-bottom: 10px;
}

.text-section .subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #b00020;
    margin-bottom: 20px;
}

.text-section .description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #444;
}

.stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat h2 {
    font-size: 28px;
    color: #720000;
    margin-bottom: 5px;
}

.stat p {
    font-size: 14px;
    color: #666;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #720000;
    color: white;
    padding: 14px 24px;
    font-size: 16px;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s;
}

.explore-btn:hover {
    background: #a00000;
}

.visual img {
    border-radius: 20px;
    height: 50%;
    max-height:500px;
}