*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif
}
body{
    background: linear-gradient(135deg, #d4a5d4 0%, #b47bb4 25%, #764ba2 50%, #8a6ba3 75%, #d4a5d4 100%);
    background-attachment: scroll;
    background-size: 100% 100%;
    color:#1d1d1f;
    line-height:1.6;
    overflow-x:hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative
}

:root{
    --primary-color:#1d1d1f;
    --secondary-color:#f5f5f7;
    --accent-strong:#fff;
    --accent-color:#c93a8a;
    --accent-light:#e8a5d4;
    --accent-dark:#8a4a80;
    --glass-border:rgba(255,255,255,0.18);
    --glass-border-strong:rgba(255,255,255,0.3);
    --glass-border-light:rgba(255,255,255,0.1);
    --text-light:#f5f5f7;
    --text-dark:#1d1d1f;
    --radius-sm:12px;
    --radius-md:18px;
    --radius-lg:24px;
    --radius-xl:30px;
    --radius-pill:999px;
    --glass-bg:rgba(255,255,255,0.1);
    --glass-bg-hover:rgba(255,255,255,0.18);
    --glass-bg-light:rgba(255,255,255,0.05);
    --glass-blur:blur(20px) saturate(180%);
    --liquid-pink:rgba(201, 58, 138, 0.08);
    --liquid-purple:rgba(122, 75, 162, 0.08);
    --liquid-light:rgba(232, 165, 212, 0.1);
    --shadow-sm:0 2px 8px rgba(201, 58, 138, 0.12), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md:0 4px 16px rgba(201, 58, 138, 0.15), 0 2px 4px rgba(0,0,0,0.08);
    --shadow-lg:0 8px 32px rgba(201, 58, 138, 0.18), 0 4px 8px rgba(0,0,0,0.1);
    --shadow-xl:0 16px 48px rgba(201, 58, 138, 0.2), 0 8px 16px rgba(0,0,0,0.12);
    --transition-fast:0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal:0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth:0.6s cubic-bezier(0.4, 0, 0.2, 1)
}
h1,h2,h3,h4,h5{
    font-weight:600;
    text-align:center;
    color:var(--primary-color)
}
h1{
    font-size:2.4rem;
    color:var(--accent-strong);
    text-shadow:0 0 15px rgba(255,255,255,0.3)
}
h2{
    font-size:2rem;
    border-bottom:2px solid var(--glass-border);
    text-shadow:0 0 10px rgba(255,255,255,0.2)
}
h3{
    font-size:1.4rem;
    color:var(--primary-color);
    opacity:.95
}
h4{
    font-size:1.2rem;
    border-left:4px solid var(--secondary-color);
    color:var(--primary-color)
}
h5{
    font-size:1rem;
    color:var(--primary-color);
    opacity:.85
}
p{
    line-height:1.6;
    color:var(--primary-color)
}
a{
    color:var(--secondary-color);
    text-decoration:none;
    font-weight:500;
    transition:color .2s ease,text-decoration .2s ease
}
a:hover{
    text-decoration:underline;
    color:var(--accent-strong)
}
.link{
    color:#fbff00;
    text-decoration:none
}
.link:hover{
    text-decoration:underline
}
#hero_wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    padding:100px 70px;
    min-height:600px;
    background: linear-gradient(135deg, rgba(201, 58, 138, 0.2) 0%, rgba(212, 165, 212, 0.15) 50%, rgba(201, 58, 138, 0.15) 100%);
    position:relative;
    overflow:hidden
}
#hero_wrapper::before{
    content:"";
    position:absolute;
    top:-30%;
    left:-30%;
    width:160%;
    height:160%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(232, 165, 212, 0.2) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(201, 58, 138, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at center, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    z-index:0
}
#hero_wrapper::after{
    content:"";
    position:absolute;
    bottom: -50px;
    left: -50px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 165, 212, 0.1), transparent 70%);
    border-radius: 50%;
    z-index: 0
}

@media(max-width:1200px){
    #hero_wrapper{
        padding:80px 40px
    }
}
#hero_section{
    position:relative;
    z-index:1;
    max-width:600px;
    padding:48px;
    border-radius:var(--radius-xl);
    background:rgba(255,255,255,0.12);
    backdrop-filter:var(--glass-blur);
    -webkit-backdrop-filter:var(--glass-blur);
    box-shadow:var(--shadow-xl), inset 0 0 0 1px var(--glass-border-strong);
    color:#fff;
    border:1px solid var(--glass-border);
    overflow:hidden;
    animation:fadeInUp 0.8s ease forwards;
}
#hero_section::before{
    content:"";
    position:absolute;
    top:-50%;
    right:-50%;
    width:300px;
    height:300px;
    background: radial-gradient(circle, rgba(232, 165, 212, 0.3), transparent);
    border-radius:50%;
    z-index:0
}



.nadpis_hero{
    font-family:'Playfair Display',serif;
    font-size:2.5rem;
    margin-bottom:20px;
    line-height:1.2;
    color:#fff
}
#hero_section p{
    font-size:1.15rem;
    color:#f9f9f9;
    line-height:1.6;
    margin-bottom:20px
}
@keyframes fadeInUp{
    0%{
        opacity:0;
        transform:translateY(40px)
    }
    100%{
        opacity:1;
        transform:translateY(0)
    }
}
#hero_image{
    width:420px;
    border-radius:var(--radius-xl);
    overflow:hidden;
    box-shadow:var(--shadow-xl);
    z-index:1;
    animation:fadeInUp 1.4s ease forwards;
    border:1px solid var(--glass-border);
    position: relative;
    background: linear-gradient(135deg, rgba(201, 58, 138, 0.1), rgba(232, 165, 212, 0.15));
}
#hero_image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(232, 165, 212, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(201, 58, 138, 0.1) 0%, transparent 35%);
    z-index: 1;
    pointer-events: none;
}
#hero_image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2;
    pointer-events: none;
}
#hero_image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block
}
@media(max-width:900px){
    #hero_wrapper{
        flex-direction:column;
        text-align:center;
        padding:60px 20px;
        padding-top:180px
    }
    #hero_image{
        width:100%;
        max-width:350px;
        margin-top:30px
    }
}
footer{
    background:#2c3e50;
    color:white;
    text-align:center;
    padding:20px;
    margin-top:40px
}
.glass-cursor{
    position:fixed;
    top:0;
    left:0;
    width:40px;
    height:40px;
    pointer-events:none;
    border-radius:50%;
    backdrop-filter:blur(2.5px) saturate(300%) contrast(180%);
    -webkit-backdrop-filter:blur(2.5px) saturate(300%) contrast(180%);
    background:linear-gradient(135deg,rgba(255,255,255,0.45) 70%,rgba(255,255,255,0.22) 100%);
    border:2.5px solid rgba(255,255,255,0.55);
    box-shadow:0 8px 32px 0 rgba(31,38,135,0.35),0 0 16px 4px rgba(255,255,255,0.22) inset;
    transition:transform .1s ease,background .2s,border .2s,box-shadow .2s;
    z-index:9999;
    overflow:hidden
}

.glow-btn{
    padding:16px 36px;
    font-size:1.1rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    color:white;
    border:0;
    border-radius:var(--radius-pill);
    box-shadow:0 0 20px rgba(201, 58, 138, 0.4), var(--shadow-md);
    cursor:pointer;
    transition:all var(--transition-normal);
    font-weight:500;
    letter-spacing:0.2px;
    position: relative;
    overflow: hidden;
}
.glow-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}
.glow-btn:hover{
    box-shadow: 0 0 40px rgba(201, 58, 138, 0.6), inset 0 0 20px rgba(232, 165, 212, 0.2), var(--shadow-lg);
    transform:translateY(-2px);
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-color) 100%);
}
.glow-btn:active{
    transform:translateY(0);
    box-shadow:0 0 20px rgba(201, 58, 138, 0.3), var(--shadow-sm)
}
.waves-section{
    position:relative;
    padding:100px 0;
    text-align:center;
    color:white;
    background:linear-gradient(45deg,#6e00a5,#f06);
    overflow:hidden
}
.waves{
    position:absolute;
    width:200%;
    height:100px;
    background:radial-gradient(circle,rgba(255,255,255,0.4) 0,transparent 70%);
    bottom:0;
    left:-50%
}

.mascot{
    position:fixed;
    bottom:30px;
    right:30px;
    width:100px;
    text-align:center;
    z-index:1000
}
.mascot-head{
    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;
    background:radial-gradient(circle,#00f2ff,#057);
    box-shadow:0 0 20px #00f2ff,0 0 40px #00f2ff
}
.speech{
    margin-top:10px;
    font-size:.9rem;
    background:rgba(255,255,255,0.15);
    color:white;
    backdrop-filter:var(--glass-blur);
    -webkit-backdrop-filter:var(--glass-blur);
    padding:10px 16px;
    border-radius:var(--radius-md);
    border:1px solid var(--glass-border);
    box-shadow:var(--shadow-sm)
}

