* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #faf6f0;
    color: #2a2a2a;
    line-height: 1.6;
}

header {
    background-color: #faf6f0;
    color: #1a1a1a;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.logo img {
    height: 90px;
    width: auto;
}

header h1 {
    font-size: 3rem;
    margin: 0;
    font-weight: 700;
}

#menu {
    width: 80%;
    margin: 30px auto 0 auto;
    padding: 0;

    display: flex;
    justify-content: space-evenly;
    gap: 10px;
}

.menu-item {
    width: 18%;
    background-color: #c8102e;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
}

.menu-item a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.current {
    background-color: #800000;
}

.menu-item:hover {
    background-color: #ffcc33;
}

.menu-item:hover a {
    color: #2a2a2a;
}

.welcome-hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #2a2a2a 0%, #4a1010 100%);
    color: white;
    margin-top: 30px;
}

.welcome-hero h2 {
    font-size: 2.4rem;
    margin-bottom: 15px;
    color: #ffcc33;
}

.welcome-hero p {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto;
    color: #f0f0f0;
}

.albums {
    padding: 60px 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.album {
    width: 280px;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 0;
}

.album img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.album-title {
    font-weight: bold;
    font-size: 1.15em;
    margin-top: 15px;
    padding: 0 18px;
    color: #c8102e;
}

.album-year {
    color: #888;
    margin-bottom: 12px;
    padding: 0 18px;
    font-size: 0.9em;
    font-style: italic;
}

.album-description {
    font-size: 0.92em;
    color: #444;
    padding: 0 18px 20px 18px;
}

.album:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.why-section {
    background: linear-gradient(135deg, #800000 0%, #4a1010 100%);
    color: white;
    padding: 60px 40px;
    text-align: center;
}

.why-section h2 {
    color: #ffcc33;
    margin-bottom: 40px;
    font-size: 2rem;
}

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

.bubble {
    width: 220px;
    text-align: center;
}

.bubble img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.bubble:hover img {
    transform: scale(1.05);
}

.bubble p {
    margin-top: 15px;
    font-size: 0.95em;
    line-height: 1.5;
}

footer {
    background-color: #1a1a1a;
    color: #ccc;
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
    font-size: 0.9em;
}
