/* =========================================================
   SWEETPINK PARTYS
   Main Stylesheet
   ========================================================= */


/* ---------------------------------------------------------
   RESET
   --------------------------------------------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: Arial, Helvetica, sans-serif;
    background: #080308;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}


img {
    max-width: 100%;
    display: block;
}


a {
    color: inherit;
    text-decoration: none;
}


button {
    font: inherit;
}

.intro-card {
    position: relative;
    min-height: 350px;
    padding: 0;
    overflow: hidden;
}

.card-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.card-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center center;

    margin: 0;
}
/* ---------------------------------------------------------
   VARIABLES
   --------------------------------------------------------- */

:root {

    --pink: #ff1493;
    --pink-light: #ff69b4;
    --pink-hot: #ff008c;

    --pink-soft: #ffb6d9;

    --black: #080308;
    --black-light: #110711;
    --black-card: #160b15;

    --white: #ffffff;
    --gray: #aaa0aa;

    --border: rgba(255, 20, 147, 0.25);

    --glow:
        0 0 20px rgba(255, 20, 147, 0.35),
        0 0 60px rgba(255, 20, 147, 0.12);

    --max-width: 1200px;
}


/* ---------------------------------------------------------
   CONTAINER
   --------------------------------------------------------- */

.container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}


/* ---------------------------------------------------------
   HEADER
   --------------------------------------------------------- */

.site-header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background:
        linear-gradient(
            to bottom,
            rgba(8, 3, 8, 0.97),
            rgba(8, 3, 8, 0.82)
        );

    backdrop-filter: blur(15px);

    border-bottom:
        1px solid rgba(255, 20, 147, 0.15);
}


.header-inner {
    width: min(1400px, calc(100% - 50px));

    height: 85px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.nav-logo {
    width: 115px;
}


.nav-logo img {
    border-radius: 50%;

    filter:
        drop-shadow(0 0 10px rgba(255, 20, 147, .55));

    transition: .3s ease;
}


.nav-logo:hover img {
    filter:
        drop-shadow(0 0 20px rgba(255, 20, 147, .9));

    transform: scale(1.04);
}


/* ---------------------------------------------------------
   NAVIGATION
   --------------------------------------------------------- */

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}


.nav-link,
.dropdown-toggle {

    position: relative;

    border: 0;
    background: none;

    color: #ddd;

    padding: 12px 18px;

    font-size: 14px;
    font-weight: 600;

    letter-spacing: .08em;

    text-transform: uppercase;

    cursor: pointer;

    transition: .25s ease;
}


.nav-link::after {

    content: "";

    position: absolute;

    left: 18px;
    right: 18px;
    bottom: 5px;

    height: 2px;

    background: var(--pink);

    transform: scaleX(0);

    transform-origin: center;

    transition: .25s ease;

    box-shadow:
        0 0 10px var(--pink);
}


.nav-link:hover,
.nav-link.active,
.dropdown-toggle:hover {
    color: #fff;
}


.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}


/* ---------------------------------------------------------
   DROPDOWN
   --------------------------------------------------------- */

.dropdown {
    position: relative;
}


.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 7px;
}


.arrow {
    color: var(--pink);

    font-size: 18px;

    transition: .25s ease;
}


.dropdown:hover .arrow {
    transform: rotate(180deg);
}


.dropdown-menu {

    position: absolute;

    top: calc(100% + 10px);
    right: 0;

    min-width: 230px;

    padding: 10px;

    background:
        rgba(16, 7, 15, .98);

    border:
        1px solid rgba(255, 20, 147, .3);

    border-radius: 14px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .6),
        0 0 30px rgba(255, 20, 147, .1);

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(-10px);

    transition:
        .25s ease;
}


.dropdown:hover .dropdown-menu {

    opacity: 1;
    visibility: visible;

    transform:
        translateY(0);
}


.dropdown-menu a {

    display: block;

    padding: 13px 15px;

    border-radius: 9px;

    color: #d8d0d8;

    font-size: 14px;

    transition: .2s ease;
}


.dropdown-menu a:hover {

    color: #fff;

    background:
        rgba(255, 20, 147, .12);

    padding-left: 20px;
}


/* ---------------------------------------------------------
   MOBILE MENU
   --------------------------------------------------------- */

.menu-toggle {
    display: none;

    width: 45px;
    height: 45px;

    background: none;

    border: 1px solid var(--border);

    border-radius: 10px;

    cursor: pointer;
}


.menu-toggle span {

    display: block;

    width: 22px;
    height: 2px;

    margin: 5px auto;

    background: var(--pink);

    transition: .3s ease;
}


/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */

.hero {

    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    overflow: hidden;

    padding-top: 85px;
}


.hero-background {

    position: absolute;

    inset: 0;

    background:

        radial-gradient(
            circle at 70% 50%,
            rgba(255, 20, 147, .16),
            transparent 32%
        ),

        radial-gradient(
            circle at 20% 80%,
            rgba(255, 0, 140, .10),
            transparent 35%
        ),

        linear-gradient(
            135deg,
            #080308,
            #120611 50%,
            #080308
        );
}


.hero-background::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent
        );
}


.hero-content {

    position: relative;

    z-index: 2;

    width: min(1200px, calc(100% - 40px));

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(300px, 1fr)
        minmax(300px, 1fr);

    gap: 80px;

    align-items: center;
}


.hero-logo {

    position: relative;

    display: flex;
    justify-content: center;

    animation:
        heroLogo 1s ease both;
}


.hero-logo::before {

    content: "";

    position: absolute;

    width: 70%;

    aspect-ratio: 1;

    border-radius: 50%;

    background:
        rgba(255, 20, 147, .15);

    filter:
        blur(80px);

    z-index: -1;
}


.hero-logo img {

    width: min(520px, 100%);

    border-radius: 50%;

    filter:
        drop-shadow(0 0 30px rgba(255, 20, 147, .45));

    animation:
        floating 6s ease-in-out infinite;
}


.hero-text {

    animation:
        heroText 1s ease .15s both;
}


.eyebrow {

    display: inline-block;

    margin-bottom: 16px;

    color: var(--pink);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .3em;

    text-transform: uppercase;
}


.hero-text h1 {

    font-size:
        clamp(55px, 7vw, 105px);

    line-height: .9;

    letter-spacing: -.05em;

    margin-bottom: 30px;
}


.hero-text h1 span {

    display: block;

    color: var(--pink);

    text-shadow:
        0 0 20px rgba(255,20,147,.5);
}


.hero-text > p {

    max-width: 480px;

    color: #c7bdc7;

    font-size: 20px;

    margin-bottom: 40px;
}


/* ---------------------------------------------------------
   BUTTONS
   --------------------------------------------------------- */

.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;
}


.btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding:
        0 26px;

    border-radius: 100px;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: .12em;

    text-transform: uppercase;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}


.btn-primary {

    background:
        linear-gradient(
            135deg,
            #ff008c,
            #ff4db1
        );

    color: white;

    box-shadow:
        0 0 25px rgba(255, 20, 147, .3);
}


.btn-primary:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 10px 40px rgba(255, 20, 147, .4);
}


.btn-outline {

    border:
        1px solid rgba(255, 105, 180, .45);

    color: white;

    background:
        rgba(255,255,255,.02);
}


.btn-outline:hover {

    border-color:
        var(--pink);

    background:
        rgba(255,20,147,.1);

    transform:
        translateY(-3px);
}


.btn.disabled {

    opacity: .5;

    pointer-events: none;
}


/* ---------------------------------------------------------
   SCROLL INDICATOR
   --------------------------------------------------------- */

.scroll-indicator {

    position: absolute;

    bottom: 30px;
    left: 50%;

    transform:
        translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;

    color: #8d838d;

    font-size: 9px;

    letter-spacing: .3em;
}


.scroll-line {

    width: 1px;
    height: 45px;

    background:
        linear-gradient(
            to bottom,
            var(--pink),
            transparent
        );
}


/* ---------------------------------------------------------
   SECTIONS
   --------------------------------------------------------- */

.section {

    position: relative;

    padding:
        130px 0;
}


.section-heading {

    max-width: 800px;

    margin-bottom: 60px;
}


.section-heading.centered {

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}


.section-heading h2 {

    font-size:
        clamp(38px, 5vw, 70px);

    line-height: 1;

    letter-spacing: -.04em;
}


.section-heading h2 span {

    color: var(--pink);

    text-shadow:
        0 0 25px rgba(255,20,147,.3);
}


/* ---------------------------------------------------------
   INTRO
   --------------------------------------------------------- */

.intro-section {

    background:
        #0b040a;
}


.intro-grid {

    display: grid;

    grid-template-columns:
        1.4fr
        .8fr;

    gap: 100px;

    align-items: center;
}


.intro-text {

    max-width: 700px;

    color: #aaa0aa;

    font-size: 17px;
}


.intro-text p {

    margin-bottom: 22px;
}


.intro-text .lead {

    color: white;

    font-size: 25px;

    line-height: 1.45;
}


.text-link {

    display: inline-flex;

    gap: 15px;

    margin-top: 15px;

    color: var(--pink);

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .1em;

    font-size: 13px;
}


.text-link span {

    transition: .2s ease;
}


.text-link:hover span {

    transform:
        translateX(7px);
}


.intro-card {

    position: relative;

    min-height: 350px;

    padding: 45px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    overflow: hidden;

    border-radius: 25px;

    border:
        1px solid rgba(255,20,147,.25);

    background:
        linear-gradient(
            145deg,
            #1c0a19,
            #0e050d
        );

    box-shadow:
        var(--glow);
}


.intro-card::before {

    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    top: -70px;
    right: -70px;

    border-radius: 50%;

    background:
        var(--pink);

    filter:
        blur(100px);

    opacity: .35;
}


.card-number {

    position: absolute;

    top: 30px;
    left: 35px;

    color:
        rgba(255,255,255,.3);

    font-size: 12px;

    letter-spacing: .2em;
}


.intro-card h3 {

    position: relative;

    font-size: 55px;

    line-height: 1;

    color: white;
}


.intro-card p {

    position: relative;

    color: var(--pink-light);

    margin-top: 10px;
}


/* ---------------------------------------------------------
   PARTY PREVIEW
   --------------------------------------------------------- */

.party-preview {

    background:
        #080308;
}


.party-placeholder {

    display: grid;

    grid-template-columns:
        180px
        1fr
        auto;

    gap: 40px;

    align-items: center;

    padding: 40px;

    border-radius: 25px;

    border:
        1px solid rgba(255,20,147,.25);

    background:
        linear-gradient(
            135deg,
            rgba(255,20,147,.08),
            rgba(255,255,255,.015)
        );
}


.party-date {

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    aspect-ratio: 1;

    border-radius: 20px;

    background:
        rgba(255,20,147,.1);

    border:
        1px solid rgba(255,20,147,.25);
}


.party-date span {

    color:
        var(--pink-light);

    font-size: 11px;

    letter-spacing: .2em;
}


.party-date strong {

    font-size: 28px;

    color: white;
}


.party-label {

    display: block;

    margin-bottom: 8px;

    color: var(--pink);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .2em;

    text-transform: uppercase;
}


.party-info h3 {

    font-size: 30px;

    margin-bottom: 8px;
}


.party-info p {

    color: #9e949e;
}


/* ---------------------------------------------------------
   CTA
   --------------------------------------------------------- */

.cta-section {

    position: relative;

    overflow: hidden;

    padding: 150px 0;

    text-align: center;

    background:
        #10050e;
}


.cta-glow {

    position: absolute;

    width: 500px;
    height: 500px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background:
        rgba(255,20,147,.15);

    filter:
        blur(100px);
}


.cta-section .container {

    position: relative;
}


.cta-section h2 {

    max-width: 850px;

    margin: 0 auto 40px;

    font-size:
        clamp(40px, 6vw, 80px);

    line-height: 1;

    letter-spacing: -.04em;
}


.cta-section h2 span {

    color: var(--pink);
}


/* ---------------------------------------------------------
   PAGE HERO
   --------------------------------------------------------- */

.page-hero {

    position: relative;

    padding:
        210px 0 110px;

    background:

        radial-gradient(
            circle at 80% 50%,
            rgba(255,20,147,.18),
            transparent 30%
        ),

        #0b040a;
}


.page-hero h1 {

    font-size:
        clamp(55px, 8vw, 100px);

    line-height: .9;

    letter-spacing: -.05em;
}


.page-hero h1 span {

    color: var(--pink);

    text-shadow:
        0 0 30px rgba(255,20,147,.4);
}


.page-hero p {

    margin-top: 25px;

    color: #aaa0aa;

    font-size: 19px;
}


/* ---------------------------------------------------------
   ABOUT
   --------------------------------------------------------- */

.about-grid {

    display: grid;

    grid-template-columns:
        .8fr
        1.2fr;

    gap: 100px;

    align-items: center;
}


.image-frame {

    padding: 10px;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            rgba(255,20,147,.7),
            rgba(255,20,147,.05)
        );

    box-shadow:
        var(--glow);
}


.image-frame img {

    width: 100%;

    border-radius: 22px;
}


.about-content h2 {

    margin-bottom: 30px;

    font-size:
        clamp(40px, 5vw, 65px);

    line-height: 1;

    letter-spacing: -.04em;
}


.about-content h2 span {

    display: block;

    color: var(--pink);
}


.about-content > p {

    color: #aaa0aa;

    margin-bottom: 20px;

    font-size: 17px;
}


.about-content .lead {

    color: white;

    font-size: 22px;
}


.about-highlight {

    display: flex;

    gap: 20px;

    align-items: center;

    margin-top: 35px;

    padding: 25px;

    border-left:
        3px solid var(--pink);

    background:
        rgba(255,20,147,.06);
}


.about-highlight span {

    color: var(--pink);

    font-size: 30px;
}


.about-highlight p {

    color: #ccc;
}


/* ---------------------------------------------------------
   VALUES
   --------------------------------------------------------- */

.dark-section {

    background:
        #080308;
}


.values-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}


.value-card {

    position: relative;

    padding: 40px;

    min-height: 270px;

    border-radius: 20px;

    border:
        1px solid rgba(255,255,255,.08);

    background:
        #100810;

    transition:
        .3s ease;
}


.value-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(255,20,147,.4);

    box-shadow:
        var(--glow);
}


.value-number {

    color:
        rgba(255,20,147,.6);

    font-size: 12px;

    letter-spacing: .2em;
}


.value-card h3 {

    margin-top: 70px;

    font-size: 28px;
}


.value-card p {

    margin-top: 10px;

    color: #8f858f;
}


/* ---------------------------------------------------------
   PARTY LIST
   --------------------------------------------------------- */

.party-list {

    display: flex;

    flex-direction: column;

    gap: 25px;
}


.party-card {

    display: grid;

    grid-template-columns:
        160px
        1fr
        auto;

    gap: 40px;

    align-items: center;

    padding: 35px;

    border-radius: 25px;

    background:
        linear-gradient(
            135deg,
            #160a15,
            #0e050d
        );

    border:
        1px solid rgba(255,20,147,.2);

    transition:
        .3s ease;
}


.party-card:hover {

    border-color:
        rgba(255,20,147,.5);

    transform:
        translateY(-4px);

    box-shadow:
        var(--glow);
}


.party-date-box {

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    min-height: 130px;

    border-radius: 18px;

    background:
        rgba(255,20,147,.08);

    border:
        1px solid rgba(255,20,147,.25);
}


.party-date-box span {

    color:
        var(--pink-light);

    font-size: 10px;

    letter-spacing: .2em;
}


.party-date-box strong {

    margin-top: 8px;

    font-size: 26px;
}


.party-details h2 {

    font-size: 28px;

    margin-bottom: 8px;
}


.party-details > p {

    max-width: 650px;

    color: #999099;
}


.party-meta {

    display: flex;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 18px;

    color: #b9adb9;

    font-size: 13px;
}


/* ---------------------------------------------------------
   FOOTER
   --------------------------------------------------------- */

.site-footer {

    padding:
        60px 0 35px;

    border-top:
        1px solid rgba(255,20,147,.15);

    background:
        #050205;
}


.footer-inner {

    display: grid;

    grid-template-columns:
        1fr auto auto;

    gap: 60px;

    align-items: end;
}


.footer-brand strong {

    display: block;

    font-size: 25px;
}


.footer-brand strong span {

    color: var(--pink);
}


.footer-brand p {

    margin-top: 8px;

    color: #777077;

    font-size: 13px;
}


.footer-links {

    display: flex;

    gap: 25px;
}


.footer-links a {

    color: #918891;

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: .08em;

    transition: .2s ease;
}


.footer-links a:hover {

    color: var(--pink);
}


.footer-copy {

    color: #625a62;

    font-size: 12px;
}


/* ---------------------------------------------------------
   ANIMATIONS
   --------------------------------------------------------- */

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}


@keyframes heroLogo {

    from {

        opacity: 0;

        transform:
            scale(.92)
            translateY(20px);

    }

    to {

        opacity: 1;

        transform:
            scale(1)
            translateY(0);

    }
}


@keyframes heroText {

    from {

        opacity: 0;

        transform:
            translateX(30px);

    }

    to {

        opacity: 1;

        transform:
            translateX(0);

    }
}


/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 900px) {


    .header-inner {

        height: 75px;
    }


    .menu-toggle {

        display: block;
    }


    .main-nav {

        position: absolute;

        top: 75px;
        left: 20px;
        right: 20px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        padding: 15px;

        border-radius: 18px;

        background:
            rgba(12,5,11,.98);

        border:
            1px solid rgba(255,20,147,.2);

        box-shadow:
            0 20px 60px rgba(0,0,0,.6);

        opacity: 0;
        visibility: hidden;

        transform:
            translateY(-10px);

        transition:
            .25s ease;
    }


    .main-nav.open {

        opacity: 1;

        visibility: visible;

        transform:
            translateY(0);
    }


    .nav-link,
    .dropdown-toggle {

        width: 100%;

        text-align: left;

        padding: 15px;
    }


    .nav-link::after {

        left: 15px;
        right: auto;

        width: 30px;
    }


    .dropdown-menu {

        position: static;

        display: none;

        margin:
            0 10px 10px;

        opacity: 1;

        visibility: visible;

        transform: none;

        box-shadow: none;
    }


    .dropdown.open .dropdown-menu {

        display: block;
    }


    .hero {

        padding-top: 100px;
    }


    .hero-content {

        grid-template-columns: 1fr;

        gap: 45px;

        text-align: center;
    }


    .hero-logo {

        order: 1;
    }


    .hero-logo img {

        width: min(400px, 80vw);
    }


    .hero-text {

        order: 2;
    }


    .hero-text > p {

        margin-left: auto;
        margin-right: auto;
    }


    .hero-buttons {

        justify-content: center;
    }


    .scroll-indicator {

        display: none;
    }


    .intro-grid,
    .about-grid {

        grid-template-columns: 1fr;

        gap: 50px;
    }


    .values-grid {

        grid-template-columns: 1fr;
    }


    .party-placeholder,
    .party-card {

        grid-template-columns: 1fr;

        text-align: center;
    }


    .party-date,
    .party-date-box {

        width: 140px;

        margin: 0 auto;
    }


    .party-meta {

        justify-content: center;
    }


    .party-action {

        display: flex;

        justify-content: center;
    }


    .footer-inner {

        grid-template-columns: 1fr;

        gap: 25px;

        text-align: center;
    }


    .footer-links {

        justify-content: center;

        flex-wrap: wrap;
    }

}


@media (max-width: 500px) {


    .container {

        width:
            min(100% - 28px, 1200px);
    }


    .header-inner {

        width:
            calc(100% - 28px);
    }


    .nav-logo {

        width: 90px;
    }


    .hero-content {

        width:
            calc(100% - 28px);
    }


    .hero-text h1 {

        font-size: 55px;
    }


    .hero-text > p {

        font-size: 17px;
    }


    .section {

        padding:
            90px 0;
    }


    .party-placeholder,
    .party-card {

        padding: 25px;
    }


    .party-info h3,
    .party-details h2 {

        font-size: 24px;
    }


    .page-hero {

        padding:
            170px 0 90px;
    }


    .page-hero h1 {

        font-size: 58px;
    }

}