/* ============================================
   HERO SECTION
   ============================================ */
body {
    height: 100vh;
}

.hero-section {
    position: relative;
    height: calc(100vh - 160px);
    width: 100vw;
    margin: 0;
    padding: 0;
    left: 0;
    right: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #1a1510;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(30, 25, 18, 0.40) 0%,
        rgba(30, 25, 18, 0.65) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 40px;
}

.hero-cross {
    display: block;
    font-size: 48px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    line-height: 1;
}

.hero-content h2 {
    font-size: 68px;
    font-weight: normal;
    margin-bottom: 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    font-family: 'Georgia', serif;
    letter-spacing: 3px;
}

.hero-content h3 {
    font-size: 60px;
    font-weight: normal;
    font-style: italic;
    margin-bottom: 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    font-family: 'Georgia', serif;
}

.hero-content .decorative-line {
    width: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    margin: 28px auto;
}

.hero-subtitle {
    font-size: 18px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 1px;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #8b7355, #6d5a45);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
}

.cta-button:hover {
    background: linear-gradient(135deg, #7a6548, #5c4c3a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 115, 85, 0.35);
}

.login-button {
    display: inline-block;
    padding: 14px 40px;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    font-family: Arial, sans-serif;
}

.login-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    transform: translateY(-2px);
}

/* ============================================
   SONGS & INTENTIONS SECTION
   ============================================ */
.songs-section {
    background: linear-gradient(180deg, #f7f5f2 0%, #edeae5 100%);
    padding: 80px 40px;
    position: relative;
}

.songs-section::before {
    display: none;
}

.songs-header {
    text-align: center;
    margin-bottom: 50px;
}

.songs-header-icon {
    display: inline-block;
    font-size: 30px;
    color: #8b7355;
    margin-bottom: 12px;
}

.songs-header h2 {
    font-size: 38px;
    color: #3d342d;
    font-weight: normal;
    margin-bottom: 10px;
    font-family: 'Georgia', serif;
    letter-spacing: 1px;
}

.songs-header p {
    font-size: 16px;
    color: #999;
    font-style: italic;
    max-width: 500px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.songs-header-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #8b7355, transparent);
    margin: 0 auto;
    border-radius: 2px;
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 45px;
}

.tab-btn {
    background: white;
    color: #3d342d;
    border: 1.5px solid #e0dbd4;
    padding: 12px 36px;
    border-radius: 30px;
    font-size: 15px;
    font-family: Arial, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(61, 52, 45, 0.06);
    letter-spacing: 0.5px;
}

.tab-btn:hover {
    border-color: #8b7355;
    color: #8b7355;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(61, 52, 45, 0.1);
}

.tab-btn.active {
    background: linear-gradient(135deg, #8b7355, #6d5a45);
    color: white;
    border-color: #8b7355;
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Songs Grid */
.songs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Song Card */
.song-card-home {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(61, 52, 45, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    cursor: pointer;
}

.song-card-home::before {
    content: '♫';
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 56px;
    color: rgba(139, 115, 85, 0.07);
    font-weight: bold;
}

.song-card-home:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(61, 52, 45, 0.15);
}

.song-card-accent {
    height: 4px;
    background: linear-gradient(90deg, #8b7355, #b89e7a, #8b7355);
}

.song-card-inner {
    padding: 24px;
}

.song-title {
    font-size: 21px;
    color: #3d342d;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: 'Georgia', serif;
    line-height: 1.3;
}

.song-meta {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.song-badge {
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: Arial, sans-serif;
    background: #f5f0ea;
    color: #8b7355;
    border: 1px solid #e0d5c7;
}

.song-badge.language {
    background: #eef0f2;
    color: #5a6270;
    border: 1px solid #d8dce2;
}

.song-composer {
    font-size: 13px;
    color: #999;
    margin-bottom: 12px;
    font-style: italic;
}

.song-lyrics-preview {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
    max-height: 80px;
    overflow: hidden;
    position: relative;
    margin-bottom: 0;
    white-space: pre-line;
}

.song-lyrics-preview::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(transparent, white);
}

.no-songs {
    text-align: center;
    padding: 60px 20px;
}

.no-songs-icon {
    display: block;
    font-size: 42px;
    color: #c8bfb3;
    margin-bottom: 16px;
}

.no-songs p:first-of-type {
    font-size: 22px;
    color: #3d342d;
    margin-bottom: 8px;
    font-family: 'Georgia', serif;
}

.no-songs p:last-of-type {
    font-size: 15px;
    color: #999;
    font-style: italic;
}

/* Intention Cards */
.intention-card-home {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(61, 52, 45, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.intention-card-home::before {
    content: '✟';
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 56px;
    color: rgba(139, 115, 85, 0.07);
    font-weight: bold;
}

.intention-card-home:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(61, 52, 45, 0.15);
}

.intention-card-accent {
    height: 4px;
    background: linear-gradient(90deg, #8b7355, #b89e7a, #8b7355);
}

.intention-card-inner {
    padding: 24px;
}

.intention-title {
    font-size: 20px;
    color: #3d342d;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: 'Georgia', serif;
}

.intention-meta {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.intention-badge {
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: Arial, sans-serif;
    background: #f5f0ea;
    color: #8b7355;
    border: 1px solid #e0d5c7;
}

.intention-badge.date {
    background: #eef0f2;
    color: #5a6270;
    border: 1px solid #d8dce2;
}

.intention-details {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 10px;
}

.intention-details strong {
    color: #3d342d;
}

.intention-announced {
    color: #8b7355;
    font-weight: 600;
    font-size: 14px;
}

.intention-user {
    font-size: 13px;
    color: #999;
    font-style: italic;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f0ece7;
}

/* ============================================
   FOOTER
   ============================================ */
.info-footer {
    background: linear-gradient(135deg, #3d342d 0%, #2a231d 100%);
    color: white;
    padding: 60px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.footer-column h4 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: normal;
    font-family: 'Georgia', serif;
    letter-spacing: 1px;
}

.info-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    padding: 24px;
    border-radius: 14px;
    margin-bottom: 20px;
}

.info-card p {
    margin: 8px 0;
    font-size: 15px;
    line-height: 1.5;
}

.info-card p strong {
    color: white;
}

.info-card ul {
    list-style: none;
    padding-left: 10px;
}

.info-card li {
    margin-bottom: 6px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

.contact-info {
    margin-top: 20px;
}

.contact-info h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: normal;
    font-family: 'Georgia', serif;
}

.contact-info p {
    margin: 4px 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
}

/* Song Modal */
.song-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.song-modal-content {
    background-color: #fefefe;
    margin: 3% auto;
    padding: 0;
    border-radius: 15px;
    width: 95%;
    max-width: 1200px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.song-modal-header {
    background: linear-gradient(135deg, #3d342d 0%, #5a4a3a 100%);
    color: white;
    padding: 25px 30px;
    border-radius: 15px 15px 0 0;
    position: relative;
}

.song-modal-header h2 {
    margin: 0;
    font-size: 28px;
    font-family: 'Georgia', serif;
}

.song-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: white;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.song-modal-close:hover {
    color: #f0f0f0;
}

.song-modal-play-btn {
    background: linear-gradient(135deg, #8b7355 0%, #6d5a45 100%);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 15px 30px;
    font-size: 16px;
    font-family: 'Georgia', serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    width: fit-content;
}

.song-modal-play-btn:hover {
    background: linear-gradient(135deg, #6d5a45 0%, #5a4a3a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.song-modal-play-btn.hidden {
    display: none;
}

.song-modal-body {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
}

.modal-song-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.modal-song-info {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e8e6e3;
}

.modal-song-info p {
    margin: 8px 0;
    color: #555;
    font-size: 16px;
}

.modal-song-info strong {
    color: #3d342d;
}

.modal-lyrics {
    background: #f9f8f7;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #8b7355;
}

.modal-lyrics h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #3d342d;
    font-family: 'Georgia', serif;
}

.modal-lyrics-text {
    white-space: pre-line;
    line-height: 1.8;
    color: #333;
    font-size: 15px;
}

.modal-youtube {
    margin-top: 25px;
}

.modal-audio {
    margin-bottom: 25px;
    background: linear-gradient(135deg, #f5f3f0 0%, #e8e6e3 100%);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #8b7355;
}

.modal-audio h3 {
    margin-bottom: 15px;
    color: #3d342d;
    font-family: 'Georgia', serif;
    font-size: 20px;
}

.modal-audio audio {
    width: 100%;
    margin-top: 10px;
    border-radius: 10px;
    outline: none;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    pointer-events: auto;
    cursor: pointer;
}

.modal-audio audio::-webkit-media-controls-panel {
    background-color: #fff;
}

.modal-audio audio::-webkit-media-controls-play-button,
.modal-audio audio::-webkit-media-controls-pause-button {
    background-color: #8b7355;
    border-radius: 50%;
}

.audio-controls {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
}

.skip-btn {
    background: linear-gradient(135deg, #8b7355 0%, #6d5a45 100%);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 14px;
    font-family: 'Georgia', serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 5px;
}

.skip-btn:hover {
    background: linear-gradient(135deg, #6d5a45 0%, #5a4a3a 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.skip-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.modal-youtube h3 {
    margin-bottom: 15px;
    color: #3d342d;
    font-family: 'Georgia', serif;
}

.youtube-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

.youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .hero-content h2 { font-size: 42px; }
    .hero-content h3 { font-size: 36px; }
    .hero-cross { font-size: 36px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .songs-section { padding: 50px 20px; }
    .songs-header h2 { font-size: 28px; }
    .tab-navigation { flex-direction: column; align-items: center; gap: 10px; }
    .tab-btn { width: 100%; max-width: 280px; text-align: center; }
    .songs-grid { grid-template-columns: 1fr; gap: 20px; }
    .info-footer { padding: 40px 20px; grid-template-columns: 1fr; gap: 30px; }
    .song-modal-content { width: 95%; margin: 10% auto; }
    .song-modal-body { padding: 20px; max-height: 50vh; }
}
