@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
}

.login-body{
    width:100%;
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
    position:relative;
    background:url('../img/wedding-bg.jpg') center/cover no-repeat;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
    backdrop-filter:blur(4px);
}

.login-card{
    position:relative;
    z-index:2;
    width:420px;
    padding:45px;
    border-radius:30px;
    background:rgba(255,255,255,0.12);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,0.2);
    text-align:center;
    color:white;
    animation:fadeIn 1s ease;
}

.login-card h1{
    font-size:60px;
    margin-bottom:15px;
}

.login-card h2{
    font-size:32px;
    margin-bottom:10px;
}

.login-card p{
    color:#f1f1f1;
    margin-bottom:25px;
}

.login-card input{
    width:100%;
    padding:16px;
    border:none;
    outline:none;
    border-radius:15px;
    margin-bottom:20px;
    background:rgba(255,255,255,0.15);
    color:white;
    font-size:16px;
}

.login-card input::placeholder{
    color:#ddd;
}

.login-card button{
    width:100%;
    padding:16px;
    border:none;
    border-radius:15px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    background:linear-gradient(135deg,#d4af37,#f5deb3);
    color:#222;
    transition:0.3s;
}

.login-card button:hover{
    transform:translateY(-3px);
}

.error{
    padding:12px;
    border-radius:12px;
    margin-bottom:20px;
    background:#ff4d4d;
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

body{
    font-family:'Poppins',sans-serif;

    background:
    linear-gradient(
        135deg,
        #0f0f13,
        #18181f,
        #1f1f29
    );

    color:#fff;

    overflow-x:hidden;
}

/* NAVBAR */

.navbar{
    position:fixed;
    top:0;
    width:100%;
    padding:20px 60px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    z-index:1000;

    background:rgba(20,20,25,0.55);

    backdrop-filter:blur(18px);

    border-bottom:
    1px solid rgba(255,255,255,0.08);
}

.logo{
    font-size:32px;
    font-weight:700;

    background:
    linear-gradient(
        135deg,
        #f5deb3,
        #d4af37,
        #fff3d1
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.nav-links{
    display:flex;
    gap:30px;
}

.nav-links a{
    text-decoration:none;

    color:#d6d6dc;

    font-weight:500;

    transition:0.3s;
}

.nav-links a:hover{
    color:#d4af37;
}

.nav-links a:hover{
    color:#f5deb3;
}

/* HERO */

.hero{
    width:100%;
    height:100vh;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    background:url('../img/hero22.jpg') center/cover no-repeat;
}

.hero-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
}

.hero-content{
    position:relative;
    z-index:2;
    color:white;
    animation:fadeIn 1.5s ease;
}

.hero-content h2{
    font-family:'Great Vibes',cursive;
    font-size:60px;
    margin-bottom:20px;
}

.hero-content h1{
    font-size:72px;
    margin-bottom:20px;
}

.hero-content p{
    font-size:20px;
    margin-bottom:40px;
}

.hero-btn{
    padding:18px 40px;
    border-radius:50px;
    text-decoration:none;
    background:linear-gradient(135deg,#d4af37,#f5deb3);
    color:#222;
    font-weight:600;
    transition:0.3s;
}

.hero-btn:hover{
    transform:translateY(-4px);
}

/* SECTION */

.section{
    padding:120px 80px;
}

.section-title{
    text-align:center;

    font-size:64px;

    margin-bottom:70px;

    font-weight:700;

    background:
    linear-gradient(
        135deg,
        #f5deb3,
        #d4af37,
        #fff3d1
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* CARDS */

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.card{
    position:relative;

    padding:40px;

    border-radius:35px;

    background:
    linear-gradient(
        145deg,
        rgba(25,25,35,0.88),
        rgba(15,15,25,0.92)
    );

    border:
    1px solid rgba(255,255,255,0.06);

    backdrop-filter:blur(14px);

    overflow:hidden;

    box-shadow:
    0 20px 50px rgba(0,0,0,0.35);

    transition:0.4s ease;
}

.card:hover{
    transform:
    translateY(-10px)
    scale(1.02);

    box-shadow:
    0 25px 60px rgba(212,175,55,0.12);
}

.card h3{
    margin-bottom:25px;

    font-size:28px;

    background:
    linear-gradient(
        135deg,
        #f5deb3,
        #d4af37
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.card p{
    color:#d0d0d7;
    line-height:1.8;
    font-size:17px;
}

.card::before{
    content:"";

    position:absolute;

    top:-120px;
    right:-120px;

    width:250px;
    height:250px;

    background:
    radial-gradient(
        circle,
        rgba(212,175,55,0.12),
        transparent 70%
    );

    pointer-events:none;
}

/* GALLERY */

.gallery-preview{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.gallery-preview img{
    width:100%;
    height:320px;
    object-fit:cover;
    border-radius:25px;
    transition:0.4s;
    cursor:pointer;
}

.gallery-preview img:hover{
    transform:scale(1.03);
}

/* FAMILY */

.family-box{
    padding:60px;
    border-radius:35px;
    text-align:center;
    background:linear-gradient(135deg,#fff,#f8efe3);
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.family-box p{
    font-size:24px;
    line-height:1.8;
    color:#7a5d3a;
}

/* FOOTER */

footer{
    padding:80px;
    text-align:center;
    background:#111;
    color:white;
}

/* MUSIC */

.music-btn{
    position:fixed;
    bottom:30px;
    right:30px;
    width:65px;
    height:65px;
    border:none;
    border-radius:50%;
    font-size:28px;
    cursor:pointer;
    z-index:1000;
    background:linear-gradient(135deg,#d4af37,#f5deb3);
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

/* RESPONSIVE */

@media(max-width:900px){

    .navbar{
        padding:20px;
        flex-direction:column;
        gap:20px;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-content h2{
        font-size:42px;
    }

    .section{
        padding:80px 25px;
    }
}

/* GALLERY PAGE */

.gallery-page{
    min-height:100vh;

    padding:180px 60px 100px;

    background-image:
    linear-gradient(
        rgba(10, 10, 15, 0.705),
        rgba(10, 10, 15, 0.705)
    ),
    url('../img/flowers-bg.jpg');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

/* HEADER */

.gallery-header{
    text-align:center;
    margin-bottom:80px;
}

.gallery-header h1{
    font-size:78px;
    font-weight:700;

    background:
    linear-gradient(
        135deg,
        #c89b5b,
        #f5deb3,
        #d4af37,
        #fff3d1
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    background-size:300% 300%;

    animation:goldGlow 6s ease infinite;

    margin-bottom:20px;

    text-shadow:
    0 4px 25px rgba(212,175,55,0.15);
}

.gallery-header p{
    font-size:22px;
    color:#bcbcc7;
}

/* GRID */

.gallery-grid{
    columns:4 300px;
    column-gap:20px;
}

.gallery-item{
    position:relative;

    margin-bottom:25px;

    overflow:hidden;

    border-radius:30px;

    background:
    linear-gradient(
        145deg,
        rgba(30,30,40,0.95),
        rgba(20,20,30,0.95)
    );

    border:
    1px solid rgba(255,255,255,0.06);

    break-inside:avoid;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.35);

    transition:0.4s;
}

.gallery-item:hover{
    transform:
    translateY(-10px)
    scale(1.01);

    box-shadow:
    0 20px 50px rgba(212,175,55,0.12);
}

.gallery-item img{
    width:100%;
    display:block;
    transition:0.4s;
}

.gallery-item:hover img{
    transform:scale(1.05);
}

/* OVERLAY */

.gallery-overlay{
    position:absolute;
    inset:0;

    display:flex;
    justify-content:center;
    align-items:end;

    padding-bottom:30px;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,0.7),
        transparent
    );

    opacity:0;
    transition:0.4s;
}

.gallery-item:hover .gallery-overlay{
    opacity:1;
}

/* BUTTON */

.download-btn{
    padding:14px 28px;

    border-radius:50px;

    text-decoration:none;

    background:
    linear-gradient(
        135deg,
        #d4af37,
        #f5deb3
    );

    color:#111;

    font-weight:700;

    transition:0.3s;
}

/* LIGHTBOX */

.lightbox{
    position:fixed;
    inset:0;

    background:rgba(0,0,0,0.95);

    display:none;
    justify-content:center;
    align-items:center;

    z-index:99999;

    backdrop-filter:blur(12px);
}

.lightbox img{
    max-width:90%;
    max-height:90%;
    border-radius:20px;
}

.close-lightbox{
    position:absolute;
    top:30px;
    right:40px;

    color:white;

    font-size:40px;

    cursor:pointer;
}

/* MOBILE */

@media(max-width:768px){

    .gallery-page{
        padding:140px 20px 80px;
    }

    .gallery-header h1{
        font-size:42px;
    }

    .gallery-grid{
        columns:2 160px;
    }
}

@media(max-width:500px){

    .gallery-grid{
        columns:1;
    }
}

.gallery-page::before{
    content:"";

    position:fixed;

    top:-200px;
    left:-200px;

    width:500px;
    height:500px;

    background:
    radial-gradient(
        circle,
        rgba(212,175,55,0.12),
        transparent 70%
    );

    pointer-events:none;
}

.gallery-page::after{
    content:"";

    position:fixed;

    bottom:-250px;
    right:-250px;

    width:600px;
    height:600px;

    background:
    radial-gradient(
        circle,
        rgba(255,255,255,0.05),
        transparent 70%
    );

    pointer-events:none;
}

/* INFO CARDS */

.gallery-info{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

    margin-bottom:80px;
}

.info-card{
    padding:35px;

    border-radius:30px;

    background:
    linear-gradient(
        145deg,
        rgba(25,25,35,0.82),
        rgba(15,15,25,0.9)
    );

    border:
    1px solid rgba(255,255,255,0.06);

    backdrop-filter:blur(10px);

    box-shadow:
    0 15px 40px rgba(0,0,0,0.25);

    transition:0.4s;
}

.info-card:hover{
    transform:
    translateY(-8px);
}

.info-card h3{
    margin-bottom:18px;

    font-size:28px;

    background:
    linear-gradient(
        135deg,
        #f5deb3,
        #d4af37
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.info-card p{
    color:#d2d2da;
    line-height:1.7;
}


/* GUESTBOOK */

.guestbook-page{
    min-height:100vh;

    padding:180px 60px 100px;

    background:
    linear-gradient(
        rgba(10, 10, 15, 0.705),
        rgba(10, 10, 15, 0.705)
    ),
    url('../img/flowers-bg.jpg');

    background-size:cover;
    background-position:center;
}

.guestbook-header{
    text-align:center;
    margin-bottom:60px;
}

.guestbook-header h1{
    font-size:72px;

    background:
    linear-gradient(
        135deg,
        #f5deb3,
        #d4af37
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    margin-bottom:20px;
}

.guestbook-header p{
    color:#d0d0d7;
    font-size:22px;
}

/* FORM */

.guestbook-form{
    max-width:700px;

    margin:auto auto 80px;

    display:flex;
    flex-direction:column;

    gap:20px;

    padding:40px;

    border-radius:35px;

    background:
    linear-gradient(
        145deg,
        rgba(25,25,35,0.88),
        rgba(15,15,25,0.92)
    );

    border:
    1px solid rgba(255,255,255,0.06);

    backdrop-filter:blur(14px);
}

.guestbook-form input,
.guestbook-form textarea{
    width:100%;

    padding:18px;

    border:none;
    outline:none;

    border-radius:20px;

    background:
    rgba(255,255,255,0.06);

    color:white;

    font-size:16px;
}

.guestbook-form textarea{
    min-height:180px;
    resize:none;
}

.guestbook-form button{
    padding:18px;

    border:none;

    border-radius:20px;

    cursor:pointer;

    font-size:17px;
    font-weight:700;

    background:
    linear-gradient(
        135deg,
        #d4af37,
        #f5deb3
    );

    color:#111;

    transition:0.3s;
}

.guestbook-form button:hover{
    transform:translateY(-4px);
}

/* ENTRIES */

.guestbook-entries{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:30px;
}

.guestbook-card{
    padding:35px;

    border-radius:30px;

    background:
    linear-gradient(
        145deg,
        rgba(25,25,35,0.88),
        rgba(15,15,25,0.92)
    );

    border:
    1px solid rgba(255,255,255,0.06);

    backdrop-filter:blur(14px);

    box-shadow:
    0 20px 50px rgba(0,0,0,0.25);

    transition:0.4s;
}

.guestbook-card:hover{
    transform:
    translateY(-8px);
}

.guestbook-card h3{
    margin-bottom:10px;

    font-size:28px;

    background:
    linear-gradient(
        135deg,
        #f5deb3,
        #d4af37
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.guestbook-card span{
    display:block;

    margin-bottom:20px;

    color:#999;
}

.guestbook-card p{
    color:#d2d2da;

    line-height:1.8;
}

/* TIMELINE PAGE */

.timeline-page{
    min-height:100vh;

    padding:180px 60px 100px;

    background:
    linear-gradient(
        rgba(10,10,15,0.92),
        rgba(10,10,15,0.96)
    ),
    url('../img/flowers-bg.jpg');

    background-size:cover;
    background-position:center;
}

.timeline-header{
    text-align:center;
    margin-bottom:100px;
}

.timeline-header h1{
    font-size:72px;

    background:
    linear-gradient(
        135deg,
        #f5deb3,
        #d4af37
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    margin-bottom:20px;
}

.timeline-header p{
    color:#d0d0d7;
    font-size:22px;
}

/* TIMELINE */

.timeline{
    position:relative;

    max-width:1300px;

    margin:auto;
}

.timeline::before{
    content:"";

    position:absolute;

    top:0;
    left:50%;

    transform:translateX(-50%);

    width:4px;
    height:100%;

    background:
    linear-gradient(
        #d4af37,
        #f5deb3
    );

    border-radius:10px;
}

/* ITEM */

.timeline-item{
    position:relative;

    width:50%;

    padding:20px 50px;
}

.timeline-item.left{
    left:0;
}

.timeline-item.right{
    left:50%;
}

/* CONTENT */

.timeline-content{
    position:relative;

    padding:40px;

    border-radius:35px;

    background:
    linear-gradient(
        145deg,
        rgba(25,25,35,0.88),
        rgba(15,15,25,0.92)
    );

    border:
    1px solid rgba(255,255,255,0.06);

    backdrop-filter:blur(14px);

    box-shadow:
    0 20px 50px rgba(0,0,0,0.35);

    transition:0.4s;
}

.timeline-content:hover{
    transform:
    translateY(-8px);
}

.timeline-date{
    display:inline-block;

    margin-bottom:20px;

    padding:10px 18px;

    border-radius:30px;

    background:
    linear-gradient(
        135deg,
        #d4af37,
        #f5deb3
    );

    color:#111;

    font-weight:700;
}

.timeline-content h2{
    margin-bottom:20px;

    font-size:34px;

    background:
    linear-gradient(
        135deg,
        #f5deb3,
        #d4af37
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.timeline-content p{
    color:#d2d2da;

    line-height:1.9;

    font-size:17px;
}

/* DOTS */

.timeline-item::before{
    content:"";

    position:absolute;

    top:50px;

    width:24px;
    height:24px;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        #d4af37,
        #f5deb3
    );

    box-shadow:
    0 0 25px rgba(212,175,55,0.5);

    z-index:2;
}

.timeline-item.left::before{
    right:-12px;
}

.timeline-item.right::before{
    left:-12px;
}

/* MOBILE */

@media(max-width:900px){

    .timeline::before{
        left:20px;
    }

    .timeline-item{
        width:100%;
        padding-left:70px;
        padding-right:20px;
    }

    .timeline-item.right{
        left:0;
    }

    .timeline-item.left::before,
    .timeline-item.right::before{
        left:8px;
    }

    .timeline-header h1{
        font-size:44px;
    }
}

/* MUSIC PLAYER */

.music-player{
    position:fixed;

    bottom:30px;
    right:30px;

    width:380px;

    display:flex;
    align-items:center;

    gap:18px;

    padding:20px;

    border-radius:28px;

    background:
    linear-gradient(
        145deg,
        rgba(25,25,35,0.92),
        rgba(15,15,25,0.96)
    );

    border:
    1px solid rgba(255,255,255,0.06);

    backdrop-filter:blur(18px);

    box-shadow:
    0 20px 60px rgba(0,0,0,0.35);

    z-index:9999;
}

/* COVER */

.music-cover{
    min-width:70px;
    height:70px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:22px;

    font-size:34px;

    background:
    linear-gradient(
        135deg,
        #d4af37,
        #f5deb3
    );

    color:#111;

    box-shadow:
    0 10px 30px rgba(212,175,55,0.25);
}

/* INFO */

.music-info{
    flex:1;
}

.music-info h4{
    margin-bottom:6px;

    font-size:18px;

    background:
    linear-gradient(
        135deg,
        #f5deb3,
        #d4af37
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.music-info p{
    color:#cfcfd7;
    font-size:14px;
    margin-bottom:14px;
}

/* PROGRESS */

.progress-container{
    width:100%;
    height:6px;

    border-radius:20px;

    overflow:hidden;

    background:
    rgba(255,255,255,0.08);
}

.progress-bar{
    width:0%;

    height:100%;

    border-radius:20px;

    background:
    linear-gradient(
        135deg,
        #d4af37,
        #f5deb3
    );
}

/* CONTROLS */

.music-controls button{
    width:60px;
    height:60px;

    border:none;

    border-radius:50%;

    cursor:pointer;

    font-size:24px;

    background:
    linear-gradient(
        135deg,
        #d4af37,
        #f5deb3
    );

    color:#111;

    transition:0.3s;
}

.music-controls button:hover{
    transform:scale(1.08);
}

/* MOBILE */

@media(max-width:700px){

    .music-player{
        width:calc(100% - 30px);

        right:15px;
        left:15px;

        bottom:15px;
    }
}

/* HERO REWORK */

.hero{
    position:relative;

    width:100%;
    height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    overflow:hidden;

    text-align:center;

    background:
    linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.7)
    ),
    url('../img/hero22.jpg');

    background-size:cover;
    background-position:center;
}

/* OVERLAY */

.hero-overlay{
    position:absolute;
    inset:0;

    background:
    radial-gradient(
        circle at top,
        rgba(212,175,55,0.12),
        transparent 35%
    );
}


/* CONTENT */

.hero-content{
    position:relative;
    z-index:2;

    max-width:900px;

    padding:20px;
}

.hero-subtitle{
    display:inline-block;

    margin-bottom:25px;

    padding:12px 28px;

    border-radius:40px;

    background:
    rgba(255,255,255,0.08);

    border:
    1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(12px);

    color:#f5deb3;

    font-weight:600;
}

.hero-content h1{
    font-size:92px;

    line-height:1.1;

    margin-bottom:25px;

    font-weight:700;

    background:
    linear-gradient(
        135deg,
        #fff,
        #f5deb3,
        #d4af37
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    text-shadow:
    0 10px 40px rgba(212,175,55,0.15);
}

.hero-content h1 span{
    color:#d4af37;
}

.hero-content p{
    font-size:22px;

    color:#e5e5ec;

    line-height:1.8;

    margin-bottom:50px;
}

/* COUNTDOWN */

.countdown{
    display:flex;
    justify-content:center;
    gap:25px;

    margin-bottom:50px;

    flex-wrap:wrap;
}

.countdown-box{
    min-width:130px;

    padding:30px 25px;

    border-radius:30px;

    background:
    linear-gradient(
        145deg,
        rgba(25,25,35,0.82),
        rgba(15,15,25,0.92)
    );

    border:
    1px solid rgba(255,255,255,0.06);

    backdrop-filter:blur(16px);

    box-shadow:
    0 20px 50px rgba(0,0,0,0.35);
}

.countdown-box h2{
    font-size:42px;

    margin-bottom:10px;

    background:
    linear-gradient(
        135deg,
        #f5deb3,
        #d4af37
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.countdown-box span{
    color:#d0d0d7;
}

/* BUTTONS */

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;

    flex-wrap:wrap;
}

.hero-btn{
    padding:18px 40px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    background:
    linear-gradient(
        135deg,
        #d4af37,
        #f5deb3
    );

    color:#111;

    transition:0.4s;
}

.hero-btn:hover{
    transform:
    translateY(-5px);
}

.hero-btn-outline{
    background:
    rgba(255,255,255,0.08);

    color:white;

    border:
    1px solid rgba(255,255,255,0.08);
}

/* SCROLL */

.scroll-indicator{
    position:absolute;

    bottom:40px;
    left:50%;

    transform:translateX(-50%);
}

.scroll-indicator span{
    display:block;

    width:32px;
    height:55px;

    border-radius:30px;

    border:
    2px solid rgba(255,255,255,0.5);

    position:relative;
}

.scroll-indicator span::before{
    content:"";

    position:absolute;

    top:10px;
    left:50%;

    transform:translateX(-50%);

    width:8px;
    height:8px;

    border-radius:50%;

    background:white;

    animation:scrollAnim 2s infinite;
}

/* ANIMATIONS */

@keyframes floatingHearts{

    0%{
        transform:
        translateY(0)
        rotate(0deg);

        opacity:0;
    }

    20%{
        opacity:0.5;
    }

    100%{
        transform:
        translateY(-120vh)
        rotate(360deg);

        opacity:0;
    }
}

@keyframes scrollAnim{

    0%{
        transform:
        translate(-50%,0);

        opacity:1;
    }

    100%{
        transform:
        translate(-50%,18px);

        opacity:0;
    }
}

/* MOBILE */

@media(max-width:900px){

    .hero-content h1{
        font-size:52px;
    }

    .hero-content p{
        font-size:18px;
    }

    .countdown-box{
        min-width:100px;
        padding:22px;
    }

    .countdown-box h2{
        font-size:30px;
    }
}

/* MARRIED BOX */

.married-box{
    padding:35px 50px;

    border-radius:35px;

    font-size:32px;

    font-weight:700;

    text-align:center;

    background:
    linear-gradient(
        135deg,
        rgba(25,25,35,0.95),
        rgba(15,15,25,0.98)
    );

    border:
    1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(18px);

    box-shadow:
    0 20px 60px rgba(0,0,0,0.35),
    0 0 35px rgba(212,175,55,0.15);

    color:white;

    animation:fadeIn 1s ease;
}

.married-box span{

    margin:0 10px;

    background:
    linear-gradient(
        135deg,
        #f5deb3,
        #d4af37
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    font-size:48px;
}

/* PREMIUM LOGIN */

.premium-login{
    width:100%;
    height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    overflow:hidden;

    position:relative;

    background:
    linear-gradient(
        rgba(0,0,0,0.72),
        rgba(0,0,0,0.82)
    ),
    url('../img/login-bg.png');

    background-size:cover;
    background-position:center;
}

/* BG GLOW */

.login-bg-glow{
    position:absolute;

    width:700px;
    height:700px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(212,175,55,0.18),
        transparent 70%
    );

    filter:blur(80px);

    animation:pulseGlow 6s infinite ease-in-out;
}

/* HEARTS */

.login-hearts{
    position:absolute;
    inset:0;

    overflow:hidden;

    pointer-events:none;
}

.login-hearts span{
    position:absolute;

    bottom:-100px;

    font-size:30px;

    opacity:0.4;

    animation:loginHearts 18s linear infinite;
}

.login-hearts span:nth-child(1){
    left:10%;
}

.login-hearts span:nth-child(2){
    left:30%;
    animation-delay:4s;
}

.login-hearts span:nth-child(3){
    left:50%;
    animation-delay:8s;
}

.login-hearts span:nth-child(4){
    left:70%;
    animation-delay:2s;
}

.login-hearts span:nth-child(5){
    left:90%;
    animation-delay:6s;
}

/* CARD */

.premium-login-card{
    position:relative;

    z-index:2;

    width:480px;

    padding:60px 50px;

    border-radius:40px;

    text-align:center;

    background:
    linear-gradient(
        145deg,
        rgba(25,25,35,0.82),
        rgba(15,15,25,0.92)
    );

    border:
    1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(18px);

    box-shadow:
    0 25px 70px rgba(0,0,0,0.45);

    animation:fadeIn 1.2s ease;
}

/* ICON */

.premium-icon{
    width:110px;
    height:110px;

    margin:auto auto 30px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:30px;

    font-size:52px;

    background:
    linear-gradient(
        135deg,
        #d4af37,
        #f5deb3
    );

    color:#111;

    box-shadow:
    0 15px 40px rgba(212,175,55,0.25);
}

/* TEXT */

.premium-login-card h1{
    font-size:54px;

    margin-bottom:20px;

    line-height:1.2;

    background:
    linear-gradient(
        135deg,
        #fff,
        #f5deb3,
        #d4af37
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.premium-login-card p{
    color:#d0d0d7;

    font-size:18px;

    margin-bottom:35px;
}

/* INPUT */

.input-box{
    margin-bottom:25px;
}

.input-box input{
    width:100%;

    padding:20px;

    border:none;
    outline:none;

    border-radius:22px;

    background:
    rgba(255,255,255,0.06);

    border:
    1px solid rgba(255,255,255,0.06);

    color:white;

    font-size:17px;

    transition:0.3s;
}

.input-box input:focus{
    border:
    1px solid rgba(212,175,55,0.45);

    box-shadow:
    0 0 20px rgba(212,175,55,0.15);
}

/* BUTTON */

.premium-login-card button{
    width:100%;

    padding:20px;

    border:none;

    border-radius:22px;

    cursor:pointer;

    font-size:18px;
    font-weight:700;

    background:
    linear-gradient(
        135deg,
        #d4af37,
        #f5deb3
    );

    color:#111;

    transition:0.4s;
}

.premium-login-card button:hover{
    transform:
    translateY(-5px);

    box-shadow:
    0 15px 35px rgba(212,175,55,0.25);
}

/* ERROR */

.premium-error{
    margin-bottom:25px;

    padding:16px;

    border-radius:18px;

    background:
    rgba(255,0,80,0.15);

    color:#ffb6c1;
}

/* ANIMATIONS */

@keyframes loginHearts{

    0%{
        transform:
        translateY(0)
        rotate(0deg);

        opacity:0;
    }

    20%{
        opacity:0.5;
    }

    100%{
        transform:
        translateY(-120vh)
        rotate(360deg);

        opacity:0;
    }
}

@keyframes pulseGlow{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.1);
    }

    100%{
        transform:scale(1);
    }
}

/* MOBILE */

@media(max-width:600px){

    .premium-login-card{
        width:92%;
        padding:45px 25px;
    }

    .premium-login-card h1{
        font-size:38px;
    }
}








/* =========================================
   PREMIUM MOBILE VERSION
========================================= */

@media(max-width:768px){

    body{
        overflow-x:hidden;
    }

    /* NAVBAR */

    .navbar{
        position:fixed;

        top:0;
        left:0;

        width:100%;

        padding:15px 18px;

        display:flex;
        flex-direction:column;

        gap:14px;

        background:
        rgba(10,10,15,0.92);

        backdrop-filter:blur(20px);

        z-index:99999;
    }

    .logo{
        font-size:24px;
        text-align:center;
    }

    .nav-links{
        width:100%;

        display:grid;

        grid-template-columns:
        repeat(3,1fr);

        gap:10px;
    }

    .nav-links a{
        display:flex;
        justify-content:center;
        align-items:center;

        height:42px;

        border-radius:14px;

        background:
        rgba(255,255,255,0.04);

        font-size:13px;

        text-align:center;
    }

    /* HERO */

    .hero{
        min-height:100vh;

        padding:
        220px 18px 120px;

        display:flex;
        align-items:center;

        background-position:center;
    }

    .hero-content{
        width:100%;
    }

    .hero-subtitle{
        font-size:12px;

        padding:10px 18px;

        margin-bottom:20px;
    }

    .hero-content h1{
        font-size:42px;

        line-height:1.1;

        margin-bottom:20px;
    }

    .hero-content p{
        font-size:16px;

        line-height:1.7;

        margin-bottom:35px;
    }

    /* COUNTDOWN */

    .countdown{
        width:100%;

        display:grid;

        grid-template-columns:
        repeat(3,1fr);

        gap:12px;

        margin-bottom:35px;
    }

    .countdown-box{
        width:100%;

        padding:20px 10px;

        border-radius:24px;
    }

    .countdown-box h2{
        font-size:26px;
    }

    .countdown-box span{
        font-size:13px;
    }

    /* BUTTONS */

    .hero-buttons{
        width:100%;

        display:flex;
        flex-direction:column;

        gap:14px;
    }

    .hero-btn{
        width:100%;

        padding:16px;

        border-radius:18px;

        font-size:15px;
    }

    /* SECTIONS */

    .section{
        padding:80px 18px;
    }

    .section-title{
        font-size:34px;

        line-height:1.2;

        margin-bottom:40px;
    }

    /* CARDS */

    .cards{
        display:flex;
        flex-direction:column;

        gap:20px;
    }

    .card{
        padding:28px;

        border-radius:28px;
    }

    .card h3{
        font-size:24px;
    }

    .card p{
        font-size:15px;
    }

    /* GALLERY */

    .gallery-page{
        padding:
        190px 15px 90px;
    }

    .gallery-header{
        margin-bottom:50px;
    }

    .gallery-header h1{
        font-size:36px;

        line-height:1.2;
    }

    .gallery-header p{
        font-size:15px;
    }

    .gallery-grid{
        columns:1;
    }

    .gallery-item{
        border-radius:22px;
    }

    /* INFO CARDS */

    .gallery-info{
        display:flex;
        flex-direction:column;
    }

    .info-card{
        padding:25px;
    }

    /* TIMELINE */

    .timeline-page{
        padding:
        190px 18px 90px;
    }

    .timeline-header h1{
        font-size:36px;
    }

    .timeline-header p{
        font-size:15px;
    }

    .timeline::before{
        left:15px;
    }

    .timeline-item{
        width:100%;

        left:0;

        padding:
        0 0 30px 50px;
    }

    .timeline-item::before{
        left:4px !important;
    }

    .timeline-content{
        padding:25px;

        border-radius:25px;
    }

    .timeline-content h2{
        font-size:24px;
    }

    .timeline-content p{
        font-size:15px;
    }

    /* GUESTBOOK */

    .guestbook-page{
        padding:
        190px 18px 90px;
    }

    .guestbook-header h1{
        font-size:36px;
    }

    .guestbook-form{
        padding:25px;

        border-radius:28px;
    }

    .guestbook-entries{
        display:flex;
        flex-direction:column;
    }

    .guestbook-card{
        padding:25px;
    }

    /* MUSIC PLAYER */

    .music-player{
        left:10px;
        right:10px;

        width:auto;

        bottom:10px;

        padding:12px;

        border-radius:22px;
    }

    .music-cover{
        min-width:48px;
        height:48px;

        border-radius:16px;

        font-size:20px;
    }

    .music-controls button{
        width:42px;
        height:42px;

        font-size:16px;
    }

    .music-info h4{
        font-size:13px;
    }

    .music-info p{
        font-size:11px;
    }

    /* LOGIN */

    .premium-login{
        padding:20px;
    }

    .premium-login-card{
        width:100%;

        padding:35px 20px;

        border-radius:30px;
    }

    .premium-login-card h1{
        font-size:32px;
    }

    .premium-login-card p{
        font-size:15px;
    }

    .premium-icon{
        width:75px;
        height:75px;

        border-radius:22px;

        font-size:34px;
    }

    /* MARRIED */

    .married-box{
        width:100%;

        font-size:22px;

        padding:25px;
    }

    .married-box span{
        font-size:34px;
    }

}

/* =========================================
   PEACH TEXT MOBILE
========================================= */

@media(max-width:768px){

    /* ALLE TEXTE */

    body,
    p,
    span,
    a,
    li,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6{

        color:#e0af90 !important;
    }

    /* LOGO */

    .logo{

        color:#d8a580 !important;

        background:none !important;

        -webkit-text-fill-color:#dab59b !important;
    }

    /* TITEL */

    .hero-content h1,
    .section-title,
    .gallery-header h1,
    .timeline-header h1,
    .guestbook-header h1,
    .timeline-content h2,
    .card h3{

        color:#dbaf91 !important;

        background:none !important;

        -webkit-text-fill-color:#e9bea2 !important;

        text-shadow:
        0 3px 14px rgba(0,0,0,0.25);
    }

    /* PARAGRAPHS */

    .hero-content p,
    .card p,
    .timeline-content p,
    .guestbook-card p,
    .gallery-header p,
    .timeline-header p,
    .guestbook-header p{

        color:#ffdccc !important;
    }

    /* NAV LINKS */

    .nav-links a{

        color:#e6c7b5 !important;
    }

    /* COUNTDOWN */

    .countdown-box h2{

        color:#f3c4a2 !important;

        background:none !important;

        -webkit-text-fill-color:#f5c8a8 !important;
    }

    .countdown-box span{

        color:#ffd8c6 !important;
    }

    /* MUSIC */

    .music-info h4{

        color:#fff1e7 !important;

        background:none !important;

        -webkit-text-fill-color:#fff1e7 !important;
    }

    .music-info p{

        color:#ffdccc !important;
    }

}






/* =========================================
   PREMIUM UPLOAD SECTION
========================================= */

.premium-upload-wrapper{

    width:100%;

    margin:
    60px auto 70px;
}

.premium-upload-card{

    width:100%;

    display:flex;

    justify-content:space-between;
    align-items:center;

    gap:35px;

    padding:35px;

    border-radius:35px;

    background:
    linear-gradient(
        145deg,
        rgba(17,17,30,0.95),
        rgba(8,8,18,0.98)
    );

    border:
    1px solid rgba(255,255,255,0.06);

    backdrop-filter:blur(20px);

    box-shadow:
    0 20px 60px rgba(0,0,0,0.35);
}

/* LEFT */

.premium-upload-left{

    flex:1;

    display:flex;

    align-items:center;

    gap:25px;
}

/* ICON */

.premium-upload-icon{

    min-width:80px;
    height:80px;

    border-radius:26px;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:32px;

    background:
    linear-gradient(
        135deg,
        #d4af37,
        #f5deb3
    );

    color:#111;

    box-shadow:
    0 12px 28px rgba(212,175,55,0.22);
}

/* TEXT */

.premium-upload-info h2{

    font-size:34px;

    margin-bottom:12px;

    color:#fff;
}

.premium-upload-info p{

    font-size:16px;

    line-height:1.7;

    color:#d1d1d1;

    margin-bottom:20px;
}

/* TAGS */

.premium-upload-tags{

    display:flex;

    gap:12px;

    flex-wrap:wrap;
}

.premium-upload-tags span{

    padding:10px 16px;

    border-radius:16px;

    background:
    rgba(255,255,255,0.06);

    color:#f1f1f1;

    font-size:13px;
}

/* RIGHT */

.premium-upload-right{

    flex:1;
}

/* FORM */

.premium-upload-right form{

    display:flex;

    flex-direction:column;

    gap:16px;
}

/* SELECT BOX */

.premium-select-box{

    width:100%;

    padding:25px;

    border-radius:26px;

    cursor:pointer;

    background:
    rgba(255,255,255,0.04);

    border:
    2px dashed rgba(212,175,55,0.25);

    transition:0.3s;
}

.premium-select-box:hover{

    background:
    rgba(255,255,255,0.06);

    transform:
    translateY(-3px);
}

/* SELECT CONTENT */

.select-content{

    display:flex;

    align-items:center;

    gap:20px;
}

/* SELECT ICON */

.select-icon{

    min-width:65px;
    height:65px;

    border-radius:20px;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:28px;

    background:
    linear-gradient(
        135deg,
        #d4af37,
        #f5deb3
    );

    color:#111;
}

/* SELECT TEXT */

.select-content h3{

    font-size:24px;

    margin-bottom:6px;

    color:#fff;
}

.select-content span{

    color:#bdbdbd;

    font-size:14px;
}

/* UPLOAD FEEDBACK */

.upload-feedback{
    display:none;
    padding:14px 18px;
    border-radius:16px;
    font-size:14px;
    font-weight:500;
    text-align:center;
}

.upload-feedback.success{
    background:rgba(50,200,100,0.12);
    border:1px solid rgba(50,200,100,0.25);
    color:#6effa0;
}

.upload-feedback.error{
    background:rgba(255,60,60,0.12);
    border:1px solid rgba(255,60,60,0.2);
    color:#ff9090;
}

/* BUTTON */

.premium-upload-btn{

    width:100%;

    padding:18px;

    border:none;

    border-radius:22px;

    cursor:pointer;

    font-size:17px;

    font-weight:700;

    transition:0.3s;

    background:
    linear-gradient(
        135deg,
        #d4af37,
        #f5deb3
    );

    color:#111;
}

.premium-upload-btn:hover{

    transform:
    translateY(-3px);

    box-shadow:
    0 15px 35px rgba(212,175,55,0.35);
}

/* MOBILE */

@media(max-width:1000px){

    .premium-upload-card{

        flex-direction:column;

        padding:28px;
    }

    .premium-upload-left{

        flex-direction:column;

        text-align:center;
    }

    .premium-upload-tags{

        justify-content:center;
    }

    .select-content{

        flex-direction:column;

        text-align:center;
    }

    .premium-upload-info h2{

        font-size:28px;
    }

    .premium-upload-info p{

        font-size:15px;
    }

    .select-content h3{

        font-size:20px;
    }

}

