/* Aquaplane Band Website Styles */

/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
    background-color: #0f1414;
    color: #333;
}

/* Logo Container */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffcc00;
    border-radius: 50%;
    padding: 5%;
    max-width: 90%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 5%;
    width: 80%;
    height: 25%;
}

/* Logo Image */
.logo {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    object-fit: contain;
}

/* Index Highlight Container */
.index-highlight-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
    margin: 20px 0;
    text-align: left;
}

.index-highlight-container .image-text-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 80%;
}

.index-highlight-container .image-text-section img {
    max-width: 40%;
    height: auto;
    border-radius: 10px;
}

.index-highlight-container .text-content {
    max-width: 60%;
}

.index-highlight-container .text-content h1 {
    font-size: 3rem;
    color: #4da6ff;
    margin: 0 0 10px 0;
}

.index-highlight-container .text-content h2 a {
    font-size: 2rem;
    color: #0077cc;
    text-decoration: none;
}

.index-highlight-container .text-content h2 a:hover {
    text-decoration: underline;
}

/* Social Links, Upcoming Shows, and Contact Us Container */
.social-links-upcoming-shows-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    text-align: center;
    width: 100%;
}

/* Social Links */
.social-links {
    flex: 1; /* Equal column width */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 5px;
}

.social-links h3 {
    font-size: 2rem;
    color: #ffcc00;
    margin-bottom: 10px; /* Space between heading and links */
    text-align: center; /* Center the heading text */
}

.social-links a {
    color: #97add5;
    font-size: 1.5rem;
    text-decoration: none;
    margin: 5px 0; /* Reduced spacing between links */
    transition: color 0.3s ease;
    display: flex;
    align-items: center; /* Align the icon and text */
    gap: 10px; /* Space between the icon and the text */
}

.social-links a:hover {
    color: #0077cc;
    text-decoration: underline;
}

.social-links a i {
    font-size: 1.8rem; /* Adjust icon size */
}

.social-links a:nth-child(2) i {
    color: #0165E1; /* Facebook Blue */
}

.social-links a:nth-child(3) i {
    color: #E1306C; /* Instagram Pink */
}

.social-links a:nth-child(4) i {
    color: #1db954; /* Spotify Green */
}

.social-links a:nth-child(5) i {
    color: #FF0000; /* YouTube Red */
}

.social-links a:nth-child(6) i {
    color: #629aa9; /* Bandcamp teal */
}


/* Upcoming Shows */
.upcoming-shows {
    flex: 1; /* Equal column width */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 5px;
}

.upcoming-shows h3 {
    font-size: 2rem;
    color: #ffcc00;
    margin-bottom: 10px;
}

.upcoming-shows ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.upcoming-shows li {
    margin-bottom: 5px;
}

.upcoming-shows a {
    color: #97add5;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.upcoming-shows a:hover {
    color: #0077cc;
    text-decoration: underline;
}

/* Contact Us */
.contact-us {
    flex: 1; /* Equal column width */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 5px;
}

.contact-us h3 {
    font-size: 2rem;
    color: #ffcc00;
    margin-bottom: 10px;
}

.contact-us a {
    color: #97add5;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-us a:hover {
    color: #0077cc;
    text-decoration: underline;
}

/* aarelease Links */
.aarelease-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Default alignment */
    gap: 15px;
    margin: 20px auto;
    font-size: 1.5rem;
}

.aarelease-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #97add5;
    transition: color 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.aarelease-links a:hover {
    color: #0077cc;
    text-decoration: underline;
}

h4 {
	font-size: 1.8rem;
	color: #0077cc;
	margin: 10px 0;
	text-align: center; /* Changed to align to center */
}

.aarelease-links a i {
    font-size: 1.8rem;
}

.aarelease-links a:nth-child(1) i {
    color: #1db954;
}

.aarelease-links a:nth-child(2) i {
    color: #ff4E6B;
}

.aarelease-links a:nth-child(3) i {
    color: #ff9900;
}

.aarelease-links a:nth-child(4) i {
    color: #629aa9; /* Bandcamp teal */
}

/* Footer */
footer {
    text-align: center;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Stack columns vertically on smaller screens */
    .social-links-upcoming-shows-container {
        flex-direction: column;
        align-items: center;
    }

    /* Adjust logo container */
    .logo-container {
        width: 90%;
        height: auto;
        padding: 10%;
        margin-top: 5%;
    }

    /* Stack the text and image in the index highlight */
    .index-highlight-container {
        flex-direction: column;
        align-items: center;
    }

    .index-highlight-container .image-text-section {
        flex-direction: column;
        text-align: center;
    }

    .index-highlight-container .image-text-section img {
        max-width: 80%;
        margin-bottom: 20px;
    }

    .index-highlight-container .text-content {
        max-width: 100%;
    }

    /* Adjust font sizes for smaller screens */
    .index-highlight-container .text-content h1 {
        font-size: 2rem;
    }

    .index-highlight-container .text-content h2 a {
        font-size: 1.5rem;
    }

    .social-links a, .upcoming-shows a, .contact-us {
        font-size: 1.2rem;
    }

    .upcoming-shows li {
        margin-bottom: 10px;
    }

    /* Adjust individual sections for smaller screens */
    .social-links, .upcoming-shows, .contact-us {
        width: 100%;
        margin-bottom: 20px;
    }

    /* Adjust the release links layout */
    .aarelease-links {
        align-items: center;
        font-size: 1.2rem;
    }

    .aarelease-links a {
        font-size: 1.2rem;
    }

    .aarelease-links a i {
        font-size: 1.5rem;
    }

    /* Email address section adjustment */
    .contact-us a {
        font-size: 1.2rem;
    }
}
