/**
 * Wedding Page Styles
 */

/* Container */
.wwb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Preview Message */
.wwb-preview-message {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.wwb-preview-message p {
    margin: 0 0 10px;
}

.wwb-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.wwb-button:hover {
    background-color: #0069d9;
    color: #fff;
    text-decoration: none;
}

/* Cover Photo */
.wwb-cover-photo {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
    margin-bottom: 40px;
}

.wwb-cover-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Header */
.wwb-header {
    text-align: center;
    margin-bottom: 60px;
}

.wwb-couple-names {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.wwb-couple-separator {
    margin: 0 15px;
}

.wwb-wedding-date {
    font-size: 24px;
    margin-bottom: 10px;
}

.wwb-wedding-time {
    margin-left: 10px;
}

.wwb-wedding-location {
    font-size: 20px;
}

/* Sections */
.wwb-section {
    margin-bottom: 60px;
}

.wwb-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
}

.wwb-content {
    line-height: 1.6;
}

/* Gallery */
.wwb-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 20px;
}

.wwb-gallery-item {
    overflow: hidden;
    border-radius: 4px;
}

.wwb-gallery-link {
    display: block;
}

.wwb-gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}

.wwb-gallery-item img:hover {
    transform: scale(1.05);
}

/* RSVP Form */
.wwb-rsvp-form {
    max-width: 800px;
    margin: 0 auto;
}

.wwb-form-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.wwb-form-col {
    flex: 1;
    min-width: 250px;
    padding: 0 10px;
}

.wwb-form-col label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.wwb-form-col input[type="text"],
.wwb-form-col input[type="email"],
.wwb-form-col input[type="number"],
.wwb-form-col textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
}

.wwb-radio-group {
    display: flex;
    flex-wrap: wrap;
}

.wwb-radio-group label {
    margin-right: 20px;
    font-weight: normal;
}

.wwb-form-actions {
    text-align: center;
    margin-top: 30px;
}

.wwb-button-primary {
    background-color: #28a745;
}

.wwb-button-primary:hover {
    background-color: #218838;
}

.wwb-form-message {
    margin-top: 20px;
    text-align: center;
}

.wwb-success {
    color: #28a745;
    padding: 10px;
    background-color: #d4edda;
    border-radius: 4px;
}

.wwb-error {
    color: #dc3545;
    padding: 10px;
    background-color: #f8d7da;
    border-radius: 4px;
}

.wwb-loading {
    color: #6c757d;
}

/* Responsive */
@media (max-width: 768px) {
    .wwb-cover-photo {
        height: 300px;
    }
    
    .wwb-couple-names {
        font-size: 36px;
    }
    
    .wwb-wedding-date {
        font-size: 20px;
    }
    
    .wwb-wedding-location {
        font-size: 18px;
    }
    
    .wwb-section h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .wwb-cover-photo {
        height: 200px;
    }
    
    .wwb-couple-names {
        font-size: 28px;
    }
    
    .wwb-couple-separator {
        margin: 0 10px;
    }
    
    .wwb-wedding-date {
        font-size: 18px;
    }
    
    .wwb-wedding-location {
        font-size: 16px;
    }
    
    .wwb-section h2 {
        font-size: 24px;
    }
} 