:root {
    --primary-color: #ff6b6b;
    --secondary-color: #a5668b;
    --text-color: #333;
    --accent-color: #ff1493;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: url('/static/img/valentines_bg.png') no-repeat center center fixed;
    background-size: cover;
    background-color: #ffebee;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    -webkit-user-select: none;         
    -moz-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.content-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.coming-soon-container {
    display: flex;
    gap: 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--shadow-color);
    overflow: hidden;
}

.info-sidebar {
    flex: 1;
    padding: 2rem;
    background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    flex-direction: column;
}

.preview-section {
    flex: 2;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    position: relative;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: white;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.feature-list {
    margin: 1.5rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.feature-item i {
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.preview-images-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    margin-bottom: 2rem;
}

.preview-images-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    margin-bottom: 2rem;
}

/* Base styles for both image containers */
.preview-image {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    height: auto;
    display: flex;
    align-items: center;
}

/* First image - photostrip (tall and narrow) */
.preview-image.photostrip {
    width: 25%; /* Narrower width */
    height: 500px; /* Fixed height container */
}

/* Second image - photoframe (shorter and wider) */
.preview-image.photoframe {
    width: 50%; /* Take more horizontal space */
    height: 384px; /* Match the original height */
}

/* Ensure images maintain proportions within containers */
.preview-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: scale-down; /* Scale down but preserve aspect ratio */
}

.back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: white;
    border: 1px solid white;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    text-decoration: none;
    margin-top: auto;
    transition: all 0.3s ease;
    font-weight: 500;
}

.back-btn i {
    margin-right: 0.5rem;
}

.back-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Shimmer animation for coming soon text */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.shimmer-text {
    display: inline-block;
    color: transparent;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        #ffffff 50%, 
        var(--primary-color) 100%);
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    animation: shimmer 10s infinite linear;
    font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .coming-soon-container {
        flex-direction: column;
    }
    
    .info-sidebar {
        order: 2;
    }
    
    .preview-section {
        order: 1;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .preview-images-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .preview-image.photostrip {
        width: 40%; /* Slightly wider on mobile */
        height: 350px; /* Shorter on mobile */
    }
    
    .preview-image.photoframe {
        width: 85%; /* Take most of the container width on mobile */
        height: 300px; /* Shorter on mobile */
    }
    
    .notify-form {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .preview-image.photostrip {
        width: 50%; /* Even wider on very small screens */
        height: 300px; /* Even shorter on very small screens */
    }
}