@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Poppins:wght@300;400;600;700&display=swap');


* {
    margin:0;
    padding:0;
    box-sizing:border-box;
}


body {
    font-family:'Poppins', sans-serif;
    background:#111;
    color:white;
    overflow-x:hidden;
}


h1, h2 {
    font-family:'Cormorant Garamond', serif;
}


/* Italian flag ribbon */

.italian-ribbon {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:6px;
    background:
    linear-gradient(
        90deg,
        #008C45 33%,
        white 33%,
        white 66%,
        #CD212A 66%
    );
    z-index:1000;
}



/* HERO */

.hero {

    height:100vh;
    min-height:700px;

    background:
    linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.65)
    ),
    url("https://images.unsplash.com/photo-1525874684015-58379d421a52?auto=format&fit=crop&w=2400&q=80");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    animation:zoom 20s infinite alternate;

}



@keyframes zoom {

    from {
        background-size:100%;
    }

    to {
        background-size:110%;
    }

}



.hero-content {

    text-align:center;
    position:relative;
    z-index:2;

    padding:30px;

}



.flag {

    font-size:4rem;

    animation:float 3s infinite;

}



@keyframes float {

    50% {
        transform:translateY(-12px);
    }

}



.hero h1 {

    font-size:4.5rem;
    line-height:1;
    margin:20px 0;

    text-shadow:
    0 5px 20px rgba(0,0,0,.7);

}



.hero h2 {

    font-size:2rem;
    font-weight:400;

}



.dates {

    margin-top:20px;
    font-size:1.2rem;

}



.flight {

    margin:25px 0;

    font-size:1.5rem;

}



.flight span {

    color:#ffd700;
    padding:0 15px;

}



/* COUNTDOWN */


.countdown-container {

    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;

    margin-top:35px;

}



.count-box {

    width:120px;
    padding:20px;

    background:
    rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    border-radius:20px;

    border:
    1px solid rgba(255,255,255,.3);

}



.count-box span {

    display:block;

    font-size:3rem;
    font-weight:700;

    color:#ffd700;

}



.count-box label {

    text-transform:uppercase;
    font-size:.8rem;

}



.scroll {

    margin-top:50px;
    opacity:.8;

}



/* SECTIONS */


section {

    padding:80px 8%;

    text-align:center;

}



section h2 {

    font-size:3rem;

    margin-bottom:20px;

}



.section-intro {

    max-width:700px;

    margin:auto;

    opacity:.85;

}



/* JOURNEY */


.journey {

    background:
    linear-gradient(
        135deg,
        #063,
        #111
    );

}



.journey-grid {

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

    margin-top:40px;

}



.journey-card {

    background:
    rgba(255,255,255,.1);

    padding:30px;

    border-radius:25px;

    backdrop-filter:blur(10px);

    transition:.4s;

}



.journey-card:hover {

    transform:
    translateY(-10px);

    background:
    rgba(255,255,255,.18);

}



.journey-card h3 {

    color:#ffd700;

}



/* EXPERIENCE */


.experience {

    background:#faf6ed;

    color:#222;

}



.cards {

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:25px;

}



.card {

    padding:35px;

    background:white;

    border-radius:25px;

    box-shadow:
    0 15px 35px rgba(0,0,0,.15);

    transition:.3s;

}



.card:hover {

    transform:scale(1.05);

}



.card:first-letter {

    font-size:2rem;

}



.card h3 {

    margin:15px 0;

}



/* MEMORIES */


.memories {

    background:#111;

}



.gallery {

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(200px,1fr));

    gap:20px;

    margin-top:40px;

}



.photo {

    height:200px;

    border-radius:20px;

    background:
    rgba(255,255,255,.1);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:3rem;

}



/* QUOTE */


.quote {

    background:

    linear-gradient(
        rgba(0,0,0,.5),
        rgba(0,0,0,.7)
    ),
    url("https://images.unsplash.com/photo-1523906834658-6e24ef2386f9?auto=format&fit=crop&w=2000&q=80");

    background-size:cover;

    padding:120px 20px;

}



.quote h2 {

    font-size:4rem;

}



/* FOOTER */


footer {

    background:#000;

    padding:30px;

    text-align:center;

}



/* ARRIVAL SCREEN */


#arrival-screen {

    display:none;

    position:fixed;

    inset:0;

    background:
    linear-gradient(
    135deg,
    #008C45,
    white,
    #CD212A
    );

    z-index:2000;

    justify-content:center;

    align-items:center;

    text-align:center;

    color:#111;

}



#arrival-screen h1 {

    font-size:4rem;

}



/* MOBILE */


@media(max-width:700px){


.hero h1 {

    font-size:3rem;

}


.hero h2 {

    font-size:1.5rem;

}


.count-box {

    width:90px;

}


.count-box span {

    font-size:2rem;

}


section h2 {

    font-size:2.3rem;

}


.quote h2 {

    font-size:2.8rem;

}


}