body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
    color: #000000;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    position: relative;
}

#background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.8;
}

.container {
    max-width: 800px;
    width: 100%;
    padding: 1rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100vh - 4rem);
}

.left-image {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    height: auto;
    z-index: 1;
}

.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-container {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1;
}

.middle-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 50vh;
}

.description {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: 60vh;
}

.contact-info {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    z-index: 999;
}

.front-view-image {
    width: 580px;
    height: auto;
    flex-shrink: 0;
}

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

.bottom-text {
    font-size: 1.5rem;
    color: #000000;
    font-weight: bold;
    margin: 0 0 1rem 0;
}

.bottom-text:last-child {
    margin-bottom: 0;
}

.bottom-text a {
    color: #000000;
    font-weight: bold;
    text-decoration: underline;
}

.logo {
    width: 300px;
    max-width: 90vw;
    height: auto;
    margin-bottom: 10px;
}

.florist-link a:hover {
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 0.5rem;
    }
    
    .logo {
        max-width: 250px;
    }
    
    .left-image {
        width: 200px;
    }
    
    .contact-info {
        padding: 0 2rem;
        bottom: 1rem;
    }
    
    .bottom-text {
        font-size: 1.3rem;
        line-height: 1.4;
    }
    
    .bottom-text a {
        font-size: 1.3rem;
    }
}