/* Wedding Website CSS - Light Blue Theme */

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #2c3e50;
    background: url('/assets/pics/bellevue.jpg') no-repeat center center fixed;
    background-size: cover;
    background-color: rgba(255, 255, 255, 0.85);
    background-blend-mode: lighten;
    min-height: 100vh;
    text-align: center;
}

/* Container for centering content */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Header styles */
header {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 20px;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

h1 {
    font-size: 3em;
    margin-bottom: 10px;
    color: #1565c0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #1976d2;
    font-weight: 300;
}

h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #1976d2;
}

/* Main content sections */
.section {
    background: rgba(255, 255, 255, 0.95);
    margin: 30px 0;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

/* Paragraph styles */
p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #34495e;
}

/* Form styles for RSVP */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #1976d2;
}

#pic {
    display: block;
    margin: 30px auto;
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(25, 118, 210, 0.25), 0 0 0 8px rgba(227, 242, 253, 0.7);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 3px solid #90caf9;
}

#pic:hover {
    transform: scale(1.04) rotate(-2deg);
    box-shadow: 0 16px 48px rgba(25, 118, 210, 0.35), 0 0 0 12px rgba(197, 225, 250, 0.8);
    border-color: #1976d2;
    animation: pic-hover-anim 2s forwards;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #90caf9;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #1976d2;
    box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
}

/* Button styles */
.button,
button,
input[type="submit"] {
    background: linear-gradient(45deg, #1976d2, #2196f3);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

img { max-width: 100%; height: auto; display: block; margin-left: auto; margin-right: auto; }

/* Make navbar font bigger and easier to navigate */
nav a {
    font-size: 1.25em;
    padding: 16px 32px;
    border-radius: 32px;
    letter-spacing: 0.5px;
}

nav ul {
    gap: 10px;
}

.button:hover,
button:hover,
input[type="submit"]:hover {
    background: linear-gradient(45deg, #1565c0, #1976d2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.3);
}

/* Special styling for primary actions */
.button-primary {
    background: linear-gradient(45deg, #0d47a1, #1976d2);
    font-size: 20px;
    padding: 18px 40px;
}

/* Date and venue styling */
.date-venue {
    font-size: 1.3em;
    color: #1565c0;
    margin: 20px 0;
    padding: 20px;
    background: rgba(227, 242, 253, 0.5);
    border-radius: 10px;
}

/* RSVP status indicators */
.rsvp-yes {
    color: #2e7d32;
    font-weight: bold;
}

.rsvp-no {
    color: #c62828;
    font-weight: bold;
}

.rsvp-pending {
    color: #f57c00;
    font-weight: bold;
}

/* Navigation styles */
nav {
    margin-bottom: 30px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav li {
    margin: 0 15px;
}

nav a {
    color: #1976d2;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

nav a:hover {
    background: rgba(25, 118, 210, 0.1);
    color: #0d47a1;
}

/* Footer styles */
footer {
    margin-top: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    font-size: 0.9em;
    color: #546e7a;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    h1 {
        font-size: 2.2em;
    }
    
    h2 {
        font-size: 1.4em;
    }
    
    .section {
        padding: 20px;
        margin: 20px 0;
    }
    
    .button,
    button,
    input[type="submit"] {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav li {
        margin: 5px 0;
    }
}

/* Utility classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.margin-bottom {
    margin-bottom: 30px;
}

.no-margin {
    margin: 0;
}

/* Special wedding elements */
.heart {
    color: #e91e63;
    font-size: 1.2em;
}

.divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, #1976d2, #2196f3);
    margin: 20px auto;
    border-radius: 2px;
}


.accordion-toggle {
    background: linear-gradient(45deg, #e3f2fd, #bbdefb);
    border: none;
    outline: none;
    padding: 14px 18px;
    width: 100%;
    font-family: 'Times New Roman', serif;
    text-align: left;
    cursor: pointer;
    color: #1565c0;
    border-radius: 10px 10px 0 0;
    transition: background 0.2s, color 0.2s;
    margin: 0;
    margin-top: 10px;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.08);
}

.accordion-toggle:hover,
.accordion-toggle:focus {
    background: linear-gradient(45deg, #bbdefb, #90caf9);
    color: #0d47a1;
}

.accordion-panel {
    display: none;
    padding: 16px 18px;
    background: rgba(227, 242, 253, 0.85);
    border: 2px solid #90caf9;
    border-top: none;
    border-radius: 0 0 10px 10px;
    color: #34495e;
    box-shadow: 0 4px 16px rgba(25, 118, 210, 0.07);
}

.general{
    background: linear-gradient(45deg, #bbdefb, #90caf9); 
    border-radius: 10px 10px 0 0; 
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.08);
    padding: 14px 18px;
}