/* Main styles for the wedding photo uploader */

/* Custom Font Declarations */
@font-face {
    font-family: 'Anyiah';
    src: url('../fonts/Anyiah.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Bellefair';
    src: url('../fonts/Bellefair.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Slight';
    src: url('../fonts/slight.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Global styles */
body {
    font-family: 'Bellefair', serif;
    background-color: #CECADB;
    color: white;
}

/* Animation styles */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Wedding color theme */
.wedding-primary {
    color: #9AAD99;
}

.wedding-bg {
    background-color: #9AAD99;
}

/* QR code styles */
.qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem 0;
    background-color: #9AAD99;
}

.qr-image {
    border: 8px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 250px;
}

.qr-instructions {
    text-align: center;
    margin-top: 1.5rem;
    max-width: 500px;
}

/* Button styles */
.btn-primary {
    background-color: #9AAD99;
    border-color: #9AAD99;
}

.btn-primary:hover {
    background-color: #B3C1B4;
    border-color: #B3C1B4;
}