* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Open Sans Condensed, sans-serif;
}
.baltus {
    color: rgb(205, 202, 32);
}
h3 {
    color: rgb(255, 255, 255);
}

body {
    min-height: 100vh;
    overflow-x: hidden;
}

/* Slideshow background */
.slideshow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #000;
}
.coco {
   padding-top: 5px;
}
.coco:hover {
    color: rgb(205, 202, 32);
    text-decoration: underline;
}
.slideshow-bg .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideFade 20s ease-in-out infinite;
}

.slideshow-bg .slide:nth-child(1) { animation-delay: 0s; }
.slideshow-bg .slide:nth-child(2) { animation-delay: 5s; }

@keyframes slideFade {
    0% { opacity: 0; }
    2% { opacity: 1; }
    18% { opacity: 1; }
    20% { opacity: 0; }
    100% { opacity: 0; }
}

/* Dimmed overlay */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

/* Page content: header fills viewport, rest flows below */
.page-content {
    position: relative;
    z-index: 2;
    opacity: 0.8;
}

.header {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    padding: 2rem;
}

.header h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    animation: fadeUp 1s ease-out forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header h3 {
    font-size: 1.75rem;
    font-weight: 400;
    opacity: 0.95;
}

.audio-section {
    text-align: center;
    color: white;
    padding: 4rem 2rem;
}

.columns-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.column-first,
.column-second {
    flex: 1 1 0;
    min-width: 0;
    text-align: left;
}

.column-first {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.column-second p {
    margin: 0;
    line-height: 1.6;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .columns-row {
        flex-direction: column;
        align-items: center;
    }

    .column-first,
    .column-second {
        width: 100%;
        max-width: 100%;
    }
}

.audio-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.audio-clip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.audio-clip audio {
    max-width: 100%;
    height: 40px;
}

.footer-divider {
    width: 100%;
    max-width: 200px;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    margin: 1.25rem 0 1rem;
}

.contact-heading {
    margin: 0.5rem 0 1rem;
    font-size: 1.1rem;
    font-weight: 400;
}

.audio-section a {
    color: rgb(205, 202, 32);
    text-decoration: none;
}

.audio-section a:hover {
    text-decoration: underline;
}

.contact-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 0.75rem;
}

.contact-row a {
    color: rgb(205, 202, 32);
    text-decoration: none;
    transition: transform 0.2s ease;
}

.contact-row a:hover {
    transform: scale(1.1);
}

.contact-row .icon {
    color: rgb(205, 202, 32);
    fill: rgb(205, 202, 32);
}

.phone-number {
    display: none;
    margin-top: 0.75rem;
    color: rgb(205, 202, 32);
    text-decoration: none;
    font-size: 1rem;
}

.phone-number:hover {
    text-decoration: underline;
}

@media (min-width: 769px) {
    .contact-row .phone-icon {
        display: none;
    }

    .phone-number {
        display: block;
    }
}

@media (max-width: 768px) {
    .phone-number {
        display: none;
    }
}

.footer {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    padding: 2rem;
}

.footer a {
    color: rgb(205, 202, 32);
}
