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

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}

body {
    background-image: url('Shaunna%20&%20Justin%20Wedding%20Site%20Page%201.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
    background-color: #5A9B94; /* Fallback color that matches your image */
}

/* Optional: Add some content area if you want to add scrollable content later */
.content {
    min-height: 200vh; /* This creates scrollable content to test fixed background */
    padding: 20px;
    color: transparent; /* Hidden for now */
}

/* Optional: Overlay for better text readability if you add content */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
    z-index: 1;
    display: none; /* Hidden by default */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body {
        background-size: contain;
        background-position: center center;
    }
}

@media (max-width: 480px) {
    body {
        background-size: contain;
        background-position: center center;
    }
}
