@font-face {
    font-family: 'Shabnam';
    src: url('../assets/font/Shabnam/Shabnam.eot');
    src: url('../assets/font/Shabnam/Shabnam.eot') format('embedded-opentype'),
    url('../assets/font/Shabnam/Shabnam.woff2') format('woff2'),
    url('../assets/font/Shabnam/Shabnam.woff') format('woff'),
    url('../assets/font/Shabnam/Shabnam.ttf') format('truetype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Shabnam';
}

body {
    background: #fafafa;
    color: #333;
}

/* Hero */
.hero {
    text-align: center;
    padding: 30px 20px 50px;
}

.hero video {
    width: 400px;
    height: auto;
    position: relative;
    z-index: 3;
    border-radius: 8px;
}

.hero-content {
    text-align: center;
}

.hero-content p {
    margin-top: 10px;
    font-weight: 300;
}

/* Info */
.info {
    padding: 60px 20px;
    text-align: center;
    background: #eee;
}

.info h2 {
    margin-bottom: 20px;
}

/* Map */
.map-section {
    padding: 40px 20px;
    text-align: center;
    /*background: #ddd;*/
}

#map {
    height: 300px;
    border-radius: 12px;
    margin: 20px auto;
    max-width: 900px;
    border: 1px solid;
}

.address {
    margin-top: 10px;
    font-size: 0.95rem;
    color: #222;
}

/* Footer */
footer {
    padding: 30px;
    text-align: center;
    background: #111;
    color: #fff;
}

/* Hearts animation */
.hearts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 2;
}

.heart {
    position: absolute;
    top: -50px;
    background-image: url('../assets/img/heart.svg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.8;
    animation-name: fall;
    animation-timing-function: linear;
}

@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(110vh) rotate(360deg);
        opacity: 0;
    }
}

/* Hero fix */
.hero {
    position: relative;
    text-align: center;
}


/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    #map {
        height: 250px;
    }
}

@media (max-width: 440px) {
    .hero video {
        width: 100%;
    }
}
