/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Video Section Styles */
.video-section {
    position: relative;
    width: 100%;
    height: 100vh;  /* Full viewport height */
    overflow: hidden;
}

.vertical-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the section */
}

/* Content Section Styles */
.content-section {
    padding: 50px 20px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.valentine-text {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #d6336c;  /* Choose a color that pops */
    font-weight: bold;
}

.photo {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.signature {
    font-size: 1.2rem;
    color: #555;
    margin-top: 10px;
}
