/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: "Electrolize", sans-serif;
    background-color: #222222;
    color: #333;
    line-height: 1.6;
    font-size: 18px;
}

h1 {
    font-family: "Audiowide", sans-serif;
}

h2 {
    font-family: "Audiowide", sans-serif;
}
/* Banner Section */
.pad-wrap {
}

.banner {
    position: relative;
    text-align: center;
    background-color: #222;
    padding: 20px;
}

.banner-background {
    width: 100%;
    height: auto;
    opacity: 0.7;
}

.banner-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: auto;
}

.download-buttons {
    margin-top: 20px;
}

.download-btn {
    display: inline-block;
    margin: 5px;
    padding: 10px 20px;
    background-color: #00aaff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.download-btn:hover {
    background-color: #0077cc;
}

/* Content Container */
.container {
    display: grid;
    margin: 20px 10%;
    grid-template-columns: auto auto;
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
}

/* Quick Facts Section */
.quick-facts {
    position: sticky;
    top:0;
    flex: 1;
    background-color: #dfdfdf;
    padding: 20px;
    border-radius: 5px;
}

.quick-facts h2 {
    margin-bottom: 20px;
    font-size: 1.5em;
    text-align: center;
    color: #000;
}

.quick-facts ul {
    list-style: none;
    padding-left: 0;
}


.quick-facts ul li strong {
    display: block;
    font-size: 1.2em;
    color: #000;
}

.quick-facts ul li span {
    display: block;
    margin-top: 5px;
    font-size: 1em;
    color: #000;
    padding-left: 10px;
}

.quick-facts a:visited {
    color: #000;
}

/* Elevator Pitch Section */
.elevator-pitch {
    flex: 4;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.elevator-pitch ul{
    margin-left: 20px;
}

.elevator-pitch h3{
    padding: 10px;
}
.carousel-container {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
}

.carousel-track-container {
    width: 80%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
    box-sizing: border-box;
}

.grid {
    text-align: center;
}

.grid img {
    width: 100%;
    height: auto;
}

button {
    display: block;
    margin: 10px;
    padding: 8px 12px;
    background-color: #70bf54;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Electrolize", sans-serif;
    font-weight: bold;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.carousel-controls .prev,
.carousel-controls .next {
    background-color: #222222;
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin: 0 10px;
    font-family: "Electrolize", sans-serif;
}


/* Text and Image Grid Section */
.text-image-grid {
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    margin-bottom: 20px;
}

.text-content {
    margin-bottom: 20px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.image-item {
    text-align: center;
}

.grid-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.download-btn {
    margin: 10px 0px 10px 0px;
    display: inline-block;
    background-color: #70bf54;
}

.download-btn:hover {
    background-color: #000;
    color:#eee;
}

/* Video Section */
.video-section {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

.video-item {
    flex: 1;
    text-align: center;
}

.video-item video {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Studio Info and Links Section */
.studio-links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

.studio-info,
.additional-links {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.additional-links ul {
    list-style: none;
    padding-left: 0;
}

.additional-links ul li {
    margin-bottom: 10px;
}

.additional-links ul li a {
    text-decoration: none;
    color: #70bf54;
}

.additional-links ul li a:hover {
    text-decoration: underline;
}
/* Team Section */
.team-section {
    margin-bottom: 20px;
    padding: 20px;
    color: white;
}

.team-section h2 {
    margin-bottom: 20px;
}

.team-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.team-member {
    flex: 1;
    text-align: center;
}

.team-member img {
    width: 100%;
    height: auto;
    max-width: 200px;
    margin-bottom: 10px;
    border-radius: 5px;
}


.info-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

.left-column {
    grid-column: 1 / 2; /* Default is the left column */
}

.right-column {
    grid-column: 2 / 3; /* Default is the right column */
}

.left-column p:last-of-type {
    grid-column: 1 / 3; /* Span across both columns */
}

/* Disclaimer Section */
.legal {
    padding: 20px;
    background-color: #fff;
    text-align: center;
    font-size: 0.9em;
    color: #555;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* Footer Section */
footer {
    display: flex;
    justify-content: space-between;
    padding: 100px;
    background-color: #222;
    color: #fff;
}

.footer-logo img {
    max-width: 350px;
    height: auto;
}

.footer-contact,
.footer-nav {
    flex: 1;
    text-align: center;
}

.footer-contact p,
.footer-nav ul {
    margin: 10px 0;
}

footer ul {
    list-style: none;
}

.footer-nav ul li {
    margin-bottom: 5px;
}

.footer-nav ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-nav ul li a:hover {
    text-decoration: underline;
}
footer a {
    color: #eee;
}
footer a:visited {
    color: #eee;
}

