body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: sans-serif;
    color: white;
}

body {
    /* The user needs to provide background.png in the 'images' folder */
    background-color: black;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column; /* Arrange items vertically */
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    background-color: rgba(
        0,
        0,
        0,
        0.5
    ); /* Semi-transparent background for readability */
    padding: 2rem 4rem;
    border-radius: 10px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.2rem;
}

.headshot {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid white;
}

.container-link {
    text-decoration: none;
    color: inherit;
    display: block; /* Ensures the link wrapping the container behaves like a block */
}

.links-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
}

.button-link {
    padding: 0.75rem 1.5rem;
    color: white !important;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: sans-serif;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: 2px solid transparent;
}

.button-link:hover {
    opacity: 0.9;
}

.button-link.instagram {
    background-color: #e1306c;
}

.button-link.signup {
    background-color: #007bff;
}

.button-link.directions {
    background-color: #28a745;
}

.header-logo {
    width: 500px;
    max-width: 80%; /* Ensure it's responsive on small screens */
    height: auto; /* Maintain aspect ratio */
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.button-link.guidelines {
    background-color: #6c757d;
}

.collapse-panel {
    width: 80%;
    max-width: 600px;
    margin-bottom: 1.5rem;
    border: 1px solid #444;
    border-radius: 8px;
    overflow: hidden; /* To keep rounded corners */
}

.panel-header {
    background-color: #333;
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.panel-title {
    font-weight: bold;
}

.panel-toggle-icon {
    transition: transform 0.3s ease;
}

.panel-content {
    padding: 1rem 1.5rem;
    background-color: #222;
    display: block; /* Initially visible */
}

/* State when collapsed */
.panel-content.collapsed {
    display: none;
}

.panel-toggle-icon.collapsed {
    transform: rotate(-90deg);
}
