/* Reset & base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Raleway';
    src: url('fonts/Raleway-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    /* enables weight axis for variable font */
    font-style: normal;
}

@font-face {
    font-family: 'Raleway';
    src: url('fonts/Raleway-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
}


body {
    font-family: 'Raleway', sans-serif;
}

/* Banner */
.banner {
    position: relative;
    background-color: #08182F;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 30vh;
    /* 30% of viewport height */
    width: 100%;

}

/* Logo */
.logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}

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

/* Main container */
main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.coming-soon-text {
    font-size: 5em;
    font-weight: 700;
    color: #08182F;
    opacity: 0.75;
    letter-spacing: 0.05em;
    text-align: center;
    vertical-align: middle;
}

.center-container {
    display: flex;
    justify-content: center;
    /* horizontal centering */
    padding-top: 50px;
    /* optional: pushes it down from top */
}

/* Dropdown button */
.primary_header {
    font-family: 'Raleway', sans-serif;
    width: 80%;
    max-width: 10000px;
    padding: 15px 30px;
    border: none;
    background-color: transparent;
    font-size: 30px;
    font-weight: bold;
    user-select: none;
    transition: background-color 0.3s ease;
    text-align: left;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    /* 🔄 CHANGED */
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    /* ✅ prevents wrapping */
}


.rotate {
    transform: rotate(180deg);
}


/* Collapsible content */
.dropdown-content {
    width: 80%;
    max-width: 10000px;
    border-top: none;
    overflow: hidden;
    max-height: 0;
    padding: 0;
    /* 👈 this hides spacing when collapsed */
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: #6f6f6f;
}

.dropdown-content.open {

    max-height: 2000px;
    padding: 30px;
    /* 👈 restored when open */
}

/* Headings and paragraphs */
h1,
h2 {
    margin-bottom: 16px;
    color: #333;
}

p {
    margin-bottom: 16px;
}

.content_item {
    margin-bottom: 16px;
}

ul {
    list-style-type: none;
    margin-bottom: 16px;
    padding-left: 0;
}

li {
    margin-bottom: 7px;
}

/* Bold inside list */
strong {
    font-weight: bold;
    color: #333;
}

/* Links */
a {
    color: #e45e34;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

a:hover,
a:focus {
    color: black;
    transition: all 0.3s ease-in-out;
}

.dropdown-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;

}