:root {
    --bg-deep: #2a0d1f;
    --glass: rgba(255, 214, 236, 0.16);
    --text-main: #fff5fc;
    --text-soft: #ffd3e9;
    --pink-1: #ff5ba6;
    --pink-2: #ff7eb9;
    --pink-3: #ff9fd0;
    --pink-4: #ffc1de;
    --border-soft: rgba(255, 209, 234, 0.46);
    --shadow-soft: rgba(255, 86, 166, 0.35);
}

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

body {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    padding: 30px 0;
    justify-content: center;
    align-items: center;
    color: var(--text-main);
}

.back-vid {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: saturate(0.85) hue-rotate(312deg) brightness(0.6);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 152, 202, 0.35), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(255, 101, 172, 0.28), transparent 40%),
    linear-gradient(135deg, rgba(39, 8, 24, 0.72), rgba(86, 12, 50, 0.58));
    z-index: -1;
}

.main-section {
    position: relative;
    width: 90%;
    height: 90%;
    background: var(--glass);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-radius: 42px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 12px 45px var(--shadow-soft);
    overflow: hidden;
}

.main-section::before,
.main-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.main-section::before {
    width: 360px;
    height: 360px;
    top: -170px;
    right: -120px;
    background: radial-gradient(circle, rgba(255, 185, 223, 0.45), rgba(255, 90, 166, 0));
}

.main-section::after {
    width: 300px;
    height: 300px;
    bottom: -130px;
    left: -90px;
    background: radial-gradient(circle, rgba(255, 140, 197, 0.38), rgba(255, 95, 171, 0));
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    position: relative;
    z-index: 2;
}

#nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-soft);
}

nav h1 {
    color: var(--text-main);
    font-size: 30px;
    font-weight: 700;
    font-family: "Playfair Display", serif;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.brand-accent {
    color: var(--pink-2);
}

nav ul {
    list-style: none;
    display: flex;
}

nav a {
    color: var(--text-soft);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.25s ease;
    padding: 0 18px;
}

nav a:hover,
nav a.active {
    color: var(--pink-4);
    text-shadow: 0 0 12px rgba(255, 140, 197, 0.45);
}

.hero {
    display: flex;
    align-items: center;
    height: 70%;
    padding: 0 10%;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 56px;
    line-height: 1.12;
}

.hero h2 {
    margin-top: 20px;
    font-size: 30px;
    text-transform: uppercase;
    background: linear-gradient(to right, var(--pink-4), var(--pink-2), var(--pink-1), var(--pink-3));
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: animate-gradient 3s linear infinite;
    animation: animate-gradient 3s linear infinite;
}

.hero p {
    max-width: 450px;
    margin-top: 7px;
    margin-bottom: 20px;
    color: #ffe0ef;
}

@-webkit-keyframes animate-gradient {
    to {
        background-position: 200%;
    }
}

@keyframes animate-gradient {
    to {
        background-position: 200%;
    }
}

.Buttons {
    display: flex;
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(120deg, var(--pink-1), var(--pink-2));
    border: 2px solid transparent;
    border-radius: 40px;
    box-shadow: 0 0 18px rgba(255, 123, 186, 0.55);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    margin-right: 15px;
    transition: 0.3s;
    text-wrap: nowrap;
}

.btn:hover {
    background: transparent;
    border-color: var(--pink-3);
    box-shadow: 0 0 10px rgba(255, 159, 208, 0.45);
    color: var(--pink-4);
}

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

.ul-icons li {
    list-style: none;
    margin-right: 10px;
}

.ul-icons li a {
    display: inline-flex;
    padding: 8px;
    border: 2px solid var(--pink-3);
    border-radius: 50%;
    font-size: 20px;
    color: var(--pink-4);
    text-decoration: none;
    margin: 0 7px;
    transition: 0.3s;
}

.ul-icons a:hover {
    background: var(--pink-2);
    color: #fff;
    box-shadow: 0 0 14px rgba(255, 126, 185, 0.55);
}

.hero-img {
    width: 400px;
    height: 400px;
    position: relative;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    border: 2px solid rgba(255, 189, 225, 0.65);
    box-shadow: 0 0 22px rgba(255, 125, 187, 0.45);
    transition: 0.5s;
}

.hero-img:hover {
    box-shadow: 0 0 35px rgba(255, 133, 192, 0.7);
    transform: translateY(-4px);
}

.hero-img img {
    position: absolute;
    width: 85%;
    height: auto;
    object-fit: cover;
    mix-blend-mode: screen;
}

.info-sec {
    display: flex;
    width: 100%;
    gap: 20px;
    padding: 0 10%;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.info-card {
    display: flex;
    width: 100%;
    align-items: center;
    max-width: fit-content;
    background: rgba(255, 194, 226, 0.12);
    border: 1px solid rgba(255, 196, 227, 0.35);
    border-radius: 18px;
    padding: 12px 16px;
    transition: 0.25s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 114, 179, 0.3);
}

.info-sec h1 {
    font-size: 50px;
    text-transform: uppercase;
    background: linear-gradient(to right, var(--pink-3), var(--pink-1), var(--pink-4));
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: animate-gradient 3s linear infinite;
    animation: animate-gradient 3s linear infinite;
    margin-right: 10px;
}

.info-sec p {
    color: #ffe9f4;
    font-size: 18px;
}

@media (min-width: 981px) {
    body {
        width: 100%;
        height: 100vh;
        overflow: hidden;
    }

    .info-sec {
        margin-top: 30px;
    }
}

.menu-icon {
    display: none;
    color: var(--text-main);
    font-size: 35px;
    cursor: pointer;
    z-index: 1001;
}

@media (max-width: 980px) {
    body {
        height: auto;
        min-height: 100vh;
        overflow-x: hidden;
        padding: 20px 0;
    }

    .main-section {
        width: 95%;
        height: auto;
        min-height: 90vh;
        border-radius: 30px;
        margin: 20px auto;
        padding-bottom: 40px;
    }

    nav {
        padding: 20px;
    }

    .menu-icon {
        display: block;
    }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(64, 15, 40, 0.95);
        -webkit-backdrop-filter: blur(15px);
        backdrop-filter: blur(15px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s;
        z-index: 1000;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.45);
    }

    nav ul.active {
        right: 0;
    }

    nav a {
        font-size: 24px;
        margin: 20px 0;
        padding: 10px;
    }

    .hero {
        flex-direction: column-reverse;
        height: auto;
        padding: 40px 5%;
        text-align: center;
        gap: 30px;
    }

    .hero-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 40px;
        line-height: 1.2;
    }

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

    .hero p {
        font-size: 16px;
    }

    .hero-img {
        width: 300px;
        height: 300px;
        margin-bottom: 30px;
    }

    .Buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .btn {
        margin-right: 0;
    }

    .info-sec {
        justify-content: center;
        padding: 0 5%;
        margin-top: 50px;
    }

    .info-card {
        max-width: 190px;
        justify-content: center;
    }

    .info-sec h1 {
        font-size: 38px;
    }

    .info-sec p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        font-size: 20px;
    }

    .nav-logo img {
        width: 30px;
        height: 30px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-img {
        width: 250px;
        height: 250px;
    }

    .info-card {
        max-width: 170px;
    }
}
