h1{
    font-size: 160px;
    white-space: nowrap;
}

h1 {
    font-family: var(--main-font);
    color: var(--main-font-color);
}

body {
    background-color: var(--site-background-color);
}

h3, h2, p{
    font-family: var(--secondary-font);
    line-height: 1em;
    color: var(--text-background-color);
}

.main-font-color {
    color: var(--main-font-color);
}

.alt-text{
    font-family: var(--secondary-font);
}

.main-font{
    font-family: var(--main-font);
}

.main-banner-content{
    position: absolute;
    top: 65%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%,-50%);
}

.main-banner-content h1{
    font-size: 120px;
}

.text-white{
    color:white;
}

.third-banner {
    height: 60vh;
}

.third-banner-data{
    position: absolute;
    left: 50%;
    top: 65%;
    transform: translate(-50%, -50%);
}

@keyframes float {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-10px);
	}
	100% {
		transform: translatey(0px);
	}
}

.blue-title {
    background-color: var(--secondary-color);
}

.green-title {
    background-color: var(--primary-color);
}

.green-title h2, .blue-title h2{
    color: white!important;
}

.play-btn{
    margin: 0 auto;
    width: 40px;
    height: 40px;
    background-color: #dfdfdf;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 3s ease-in-out infinite;
}

.play-btn .icon{
    font-size: 22px;
    color: black;
}

.static-play-btn{
    display: flex;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 10;
    -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.countdown{
    width: 100%;
    max-width: 800px;
    padding: 35px 15px;
    display: flex;
    justify-content: space-between;
}

.countdown .unit-block{
    text-align: center;
    position: relative;
}

.countdown .unit-block:not(:last-child)::after{
    content: "";
    position: absolute;
    height: 100%;
    width: 1px;
    right: 0;
    top: 0;
    background-color: white;
}

.countdown .unit-block h2{
    font-size: 55px;    
    font-family: var(--secondary-font);
    color: white;
}

.countdown .unit-block h3{
    font-size: 25px;
    font-family: var(--secondary-font);
    color: white;
}

.countdown-container {
    background-color: var(--primary-color);
}


.banner-img{
    height: 80vh;
}

.main-container{
    max-width: 1000px;
    width: 100%;
    padding: 15px;
    margin: 0 auto;
}

.white-triangle{
    background-color: white;
    width: 100%;
    height: 200px;
    border-left: 50% solid transparent;
    border-right: 50% solid transparent;
    border-bottom: 100% solid black;
}

.green-seal {
    position: absolute;
    left: 50%;
    transform: translate(-50% , 50%);
    width: 150px;
    bottom: 0;
}

.moments-container{
    background-color: #FCF5E5;
}

.triangle-divider{
    fill:white;
}

.cream-triangle-divider{
    fill:#FCF5E5;
}

.gray-triangle-divider{
    fill:#F2F2F2;
}

.gallery-container .clickable-moment{
    height: 500px;
}

.gallery-container img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.itinerary-container{
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.itinerary-container > div{
    height: 120px;
}

.green-btn{
    background-color: var(--button-color);
    border-style: none;
    padding: 15px;
    border-radius: 10px;
    color: var(--text-background-color);
    min-width: 200px;
}

.hashtag-text{
    font-size:80px;
}

.clickable-moment{
    cursor: pointer;
    padding: 5px;
}

.moments-overlay{
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    top: 0;
    left: 0;
}

.moments-overlay.active{
    display: block;
}

.moments-overlay .overlay{
    position: absolute;
    width: 100vw;
    height: 100vh;
    background-color: black;
    opacity: 0.6;
    z-index: 10;
    top: 0;
    left: 0;
}


.moments-overlay .close-overlay{
    position: absolute;
    right: 30px;
    top: 30px;
    z-index: 20;
    font-size: 60px;
    color: white;
    cursor: pointer;
    line-height: 1rem;
}

.img-overlay{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    max-width: 90%;
    z-index: 12;
    height: 100vh;
    padding: 50px;
}

.img-overlay img{
    object-fit: contain;
    height: 100%;
}

.separator {
    height: 2px;
    background-color: #bbbbbb;
    width: 100%;
    margin: 80px 0;
}

#parallax {
    position: relative;
    min-height: 500px;
    background: transparent;
}

.link-icon {
    position: absolute !important;
    right: 50px;
}

.wedding-title .link-icon .fa{
    opacity: 0;
    transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
    transform: translateY(80%);
}

.wedding-title:hover .link-icon .fa{
    opacity: 1;
    transform: translateY(0%);
}

html {
    scroll-behavior: smooth;
}

/* Footer styles */
.site-footer {
  background-color: #2F2F2F; /* deep neutral gray for contrast */
  color: #f5f5dc!important; /* cream tone text */
  text-align: center;
  font-size: 0.85rem;
  padding: 1rem;
}
.site-footer p {
    color:#f5f5dc!important;
}
.site-footer a {
  color: #e2725b; /* terracotta accent */
  text-decoration: none;
  font-weight: 500;
}

.site-footer a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 1225px) {
    h1{
        font-size: 90px !important;
    }
    .banner-img{
        height: 70vh;
    }
}

@media only screen and (max-width: 625px) {
    h1{
        font-size: 75px !important;
    }
    .countdown .unit-block h2{
        font-size: 35px!important;    
    }
    
    .countdown .unit-block h3{
        font-size: 15px!important;
    }
    
    .itinerary-container > div{
        height: 100px;
    }
    
    .itinerary-container p{
        font-size: 20px;
    }

    .amazon-block{
        order:1;
    }

    .amazon-btn{
        order:2;
        margin-bottom: 30px;
    }
    .liverpool-block{
        order:3;
    }

    .hero-play-btn{
        display: none;
    }

    .hashtag-text{
        font-size:50px;
    }

    .img-overlay{
        padding: 10px!important;
    }
    .wedding-title .link-icon .fa{
        opacity: 1;
        transform: translateY(0%);
    }
    .link-icon {
        right: 20px;
    }
    #vestimenta .link-icon {
        position: relative !important;
    }
    #parallax {
        min-height: 300px;
    }
}
