/* Main Content Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

.welcome-section {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), 
                url('images/background.jpg') center/cover no-repeat;
}

.welcome-content {
    max-width: 800px;
    margin: 0 auto;
}

.welcome-section h2 {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #222;
}

.welcome-section p {
    font-size: 0.8em;
    color: #555;
}

.albums-section {
    padding: 60px 20px;
    text-align: center;
}

.albums-section h2 {
    font-size: 2em;
    margin-bottom: 40px;
    color: #333;
}

.album-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin: 0 auto;
    max-width: 1200px;
}

.album-box {
    width: 350px;
    height: 350px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.album-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.album-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.album-box:hover img {
    transform: scale(1.1);
}

.album-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
    text-align: center;
}

.album-title {
    margin: 0;
    font-size: 1.5em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.album-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.mailing-list-section {
    padding: 60px 20px;
    background-color: #f1f1f1;
    text-align: center;
}

.mailing-list-container {
    max-width: 600px;
    margin: 0 auto;
}

.mailing-list-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

.mailing-list-form {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

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

.form-group input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
}

.form-group label {
    display: inline-block;
    margin-left: 8px;
    color: #555;
}

.form-group a {
    color: #4CAF50;
    text-decoration: none;
}

.form-group a:hover {
    text-decoration: underline;
}

.submit-btn {
    background-color: #4CAF50;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #45a049;
}

.site-footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
}

.site-footer p {
    margin: 0;
}

@media (max-width: 768px) {
    .album-box {
        width: 280px;
        height: 280px;
    }
    
    .index-nav-button {
        min-width: 120px;
        padding: 10px 0;
    }
}

/* Mailing List Styles */
.mailing-list-section {
    background: #f5f5f5;
    padding: 60px 20px;
    text-align: center;
}

.mailing-list-container {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.mailing-list-form {
    margin-top: 20px;
}

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

.form-group input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
}

.consent-group {
    display: flex;
    align-items: center;
}

.consent-group label {
    margin-left: 8px;
    font-size: 0.9em;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #45a049;
}

.form-note {
    font-size: 0.8em;
    color: #666;
    margin-top: 15px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}






/* ======================
   INDEX HEADER STYLES
   ====================== */
.index-header {
    width: 100%;
    background-color: #f8f8f8;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.index-header h1 {
    margin: 0;
    font-size: 2.5em;
    color: #333;
}

.index-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.index-nav-button {
    flex: 1;
    min-width: 150px;
    max-width: 200px;
    padding: 12px 0;
    text-align: center;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.index-nav-button:hover {
    background-color: #555;
    transform: translateY(-2px);
}

/* For the active state if needed */
.index-nav-button.active {
    background-color: #000;
}

/* ======================
   REGULAR HEADER STYLES
   (for other pages)
   ====================== */
.site-header {
    width: 100%;
    background-color: #f8f8f8;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.site-header h1 {
    margin: 0;
    font-size: 2.5em;
    color: #333;
}

.main-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.nav-button {
    flex: 1;
    min-width: 150px;
    max-width: 200px;
    padding: 12px 0;
    text-align: center;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.nav-button:hover {
    background-color: #555;
    transform: translateY(-2px);
}

.nav-button.active {
    background-color: #000;
}

.site-footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
}

.site-footer p {
    margin: 0;
}

@media (max-width: 768px) {
    .index-nav-button,
    .nav-button {
        min-width: 120px;
        padding: 10px 0;
    }
}