@font-face {
    font-family: 'Atlanta College';
    src: url('atlanta-college-font/AtlantaCollegeRegular-1Gva2.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary-color: #6a0d83;
    /* RDB Purple */
    --accent-color: #eeaf61;
    /* RDB Orange */
    --text-color: #333333;
    --bg-gradient-start: #ffffff;
    --bg-gradient-end: #f3eef8;
    /* Very light purple tint */
}

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

body {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%); */
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    padding-top: 15vh;
    padding-bottom: env(safe-area-inset-bottom);
}

#bg-slideshow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background-color: #ffffff;
    /* Fallback */
}

.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    filter: grayscale(100%) brightness(1.8) contrast(0.8) blur(5px);
}

.bg-slide.active {
    opacity: 1;
}

.container {
    width: 90%;
    max-width: 800px;
    text-align: center;
    padding: 20px;
}

.logo {
    max-width: 250px;
    width: 50vw;
    height: auto;
    margin-bottom: 2rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

h2 {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: #555;
}

.description {
    font-family: 'Atlanta College', sans-serif;
    font-size: 4rem;
    font-weight: normal;
    margin-bottom: 2.5rem;
    color: #ffffff;
    -webkit-text-stroke: 1px black;
    text-stroke: 1px black;
}

a.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    text-decoration: none;
    color: #ffffff;
    background-color: var(--primary-color);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(106, 13, 131, 0.2);
}

a.contact-btn:hover {
    background-color: #ffffff;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(106, 13, 131, 0.3);
}

.icon {
    width: 20px;
    height: 20px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    body {
        padding-top: 10vh;
    }
}

.footer {
    width: 100%;
    background-color: var(--primary-color);
    padding: 20px 0;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
    margin-top: auto;
    /* Pushes footer to bottom if body is flex column */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer-icons {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-icon {
    width: 30px;
    height: 30px;
    fill: #ffffff;
    transition: transform 0.3s ease, fill 0.3s ease;
}

.footer-img {
    height: 30px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-img-filter {
    filter: brightness(0) invert(1);
    /* Make logos white */
}

.footer a:hover .footer-icon,
.footer a:hover .footer-img {
    transform: scale(1.1);
}

.footer a:hover .footer-icon {
    fill: var(--accent-color);
}

.copyright {
    color: #ffffff;
    font-size: 0.875rem;
    margin: 0;
}