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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
    min-height: 100vh;
}

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

/* Header Styles */
header {
    background: linear-gradient(135deg, #0c1e4e 0%, #1a3a8f 100%);
    color: white;
    padding: 40px;
    text-align: center;
    border-radius: 20px 20px 0 0;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Navigation */
nav {
    background: white;
    padding: 15px 40px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}

nav ul li a {
    color: #0c1e4e;
    text-decoration: none;
    font-weight: 600;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: #1a3a8f;
    background: rgba(26,58,143,0.1);
    border-radius: 5px;
}

/* Main Content */
main {
    background: white;
    padding: 40px;
    min-height: 500px;
}

/* Forms */
.form-container {
    max-width: 500px;
    margin: 40px auto;
    padding: 30px;
    background: #f8f9ff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #0c1e4e;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #1a3a8f;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Buttons */
.btn {
    background: linear-gradient(135deg, #0c1e4e 0%, #1a3a8f 100%);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26,58,143,0.3);
}

.btn-secondary {
    background: #6c757d;
}

/* Albums Grid */
.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.album-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.album-header {
    background: linear-gradient(135deg, #0c1e4e 0%, #1a3a8f 100%);
    color: white;
    padding: 20px;
}

.album-body {
    padding: 20px;
}

.album-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.album-photos img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

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

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

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

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

/* Contact Section */
.contact-section {
    padding: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 30px;
    background-color: #f8f9ff;
    border-radius: 12px;
    margin: 20px 0;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.contact-method:hover {
    transform: translateX(5px);
    background-color: #f0f3ff;
    border-left: 4px solid #1a3a8f;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a3a8f 0%, #0c1e4e 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.contact-label {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 5px;
}

.contact-value {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0c1e4e;
}

.contact-value a {
    color: #0c1e4e;
    text-decoration: none;
}

/* Footer */
footer {
    background: #0c1e4e;
    color: white;
    text-align: center;
    padding: 30px;
    border-radius: 0 0 20px 20px;
}

/* Alerts */
.alert {
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px;
    font-weight: 600;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-text {
        font-size: 2.3rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
        letter-spacing: 4px;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
}