/* Wedding Website Styles */

:root {
    --color-primary: #F8E8E8;
    --color-secondary: #D4AF37;
    --color-text: #333;
    --color-white: #FFFFFF;
    --color-light-pink: #FFF5F5;
    --color-dark-gold: #B8941E;
}

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

body {
    font-family: 'Lato', 'Montserrat', sans-serif;
    color: var(--color-text);
    background-color: var(--color-light-pink);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Cormorant Garamond', serif;
    color: var(--color-text);
    font-weight: 600;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

/* Navbar Styles */
.navbar {
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--color-secondary) !important;
    font-weight: 600;
}

.nav-link {
    color: var(--color-text) !important;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    font-weight: 400;
}

.nav-link:hover {
    color: var(--color-secondary) !important;
}

/* Button Styles */
.btn-primary {
    background-color: var(--color-secondary);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background-color: var(--color-primary);
    border: none;
    color: var(--color-text);
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #f0d8d8;
    transform: translateY(-2px);
}

/* Card Styles */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-body {
    padding: 2rem;
}

/* Form Styles */
.form-control, .form-select {
    border: 2px solid var(--color-primary);
    border-radius: 10px;
    padding: 0.75rem;
    transition: border-color 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

textarea.form-control {
    min-height: 120px;
}

/* Container Spacing */
.container {
    max-width: 1200px;
}

.section-padding {
    padding: 4rem 0;
}

/* Footer Styles */
.footer {
    background-color: var(--color-white);
    color: var(--color-text);
    margin-top: 3rem;
    border-top: 3px solid var(--color-primary);
}

.footer p {
    font-size: 1rem;
}

.footer .small {
    color: #666;
}

/* Alert Styles */
.alert {
    border-radius: 10px;
    border: none;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
}

/* Image Styles */
img {
    max-width: 100%;
    height: auto;
}

/* Smooth Transitions */
a, button, .card, .btn {
    transition: all 0.3s ease;
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.75rem;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
}

/* Loading Spinner */
.spinner-border {
    color: var(--color-secondary);
}

/* Table Styles */
.table {
    background-color: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
}

.table thead {
    background-color: var(--color-primary);
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: var(--color-light-pink);
}
