/* Import Cinzel font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap');

/* Responsive styles for Rogue Fawx website, mimicking existing dark, bold aesthetic */

/* Base styles for all devices */
body {
    font-family: 'Arial', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    margin: 0;
    padding: 0;
    font-size: 16px; /* Base font size for scaling */
}

.container {
    width: 90%; /* Relative width */
    max-width: 1200px; /* Cap for large screens */
    margin: 0 auto;
    padding: 1rem;
}

header {
    background: url('../images/header-bg.jpg') no-repeat center center;
    background-size: cover;
    text-align: center;
    display: flex; /* Use flexbox for alignment */
    flex-direction: column;
    align-items: center; /* Center horizontally */
    justify-content: flex-start; /* Align content to the top */
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 1rem;
}

header h1 {
    font-family: 'Cinzel', serif;
    font-weight: 300;
    font-size: 4vw;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px #000;
    margin: 0;
    display: flex;
    align-items: center; /* Align logo and text vertically */
}

.logo {
    width: 80px; /* Set width to 80px */
    height: 80px; /* Set height to match width for circle */
    border-radius: 50%; /* Make the logo a circle */
    object-fit: cover; /* Ensure the image scales correctly within the circle */
    margin-right: 7px;
}

/* Social media icons styling */
.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 0.5rem; /* Add spacing between header text and icons */
}

.social-icons img {
    width: 35px;
    height: 35px;
    transition: transform 0.3s;
}

.social-icons a {
    text-decoration: none;
    color: #333;
    font-size: 24px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #0077b5;
}

nav {
    background-color: #333;
    padding: 0.5rem 0;
    text-align: center;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 1.1rem;
}

nav a:hover {
    color: #ff6200; /* Orange accent */
}

main {
    padding: 1rem 0;
}

.album, .merch-item {
    background-color: #2a2a2a;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.album img, .merch-item img {
    max-width: 100%;
    width: 200px; /* Default size, scales down if needed */
    height: auto;
    border-radius: 5px;
}

.album-content, .merch-content {
    flex: 1;
    min-width: 200px;
}

footer {
    background-color: #333;
    text-align: center;
    padding: 1rem 0;
    width: 100%;
}

footer a {
    color: #ff6200;
    text-decoration: none;
}

.cta-button {
    display: inline-block;
    background-color: #ff6200;
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 0.5rem;
    font-size: 1rem;
}

.cta-button:hover {
    background-color: #e55a00;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.photo-gallery img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9; /* Maintains video aspect ratio */
}

/* New styles for Latest Release section */
.latest-release {
    display: flex;
    align-items: center;
    background-color: #2a2a2a;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
    gap: 1rem;
}

.album-cover {
    position: relative;
    width: 300px;
    height: 300px;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.album-text-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #fff;
    text-shadow: 2px 2px 4px #000;
}

.band-name {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    display: block;
}

.album-title {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    display: block;
}

.streaming-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.streaming-link {
    display: block;
    padding: 0.75rem;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    border-radius: 5px;
	white-space: nowrap; /* Prevents text wrapping */
}

.streaming-link.apple {
    background-color: #ff69b4; /* Pink for Apple Music */
}

.streaming-link.amazon {
    background-color: #1e90ff; /* Blue for Amazon Music */
}

.streaming-link.spotify {
    background-color: #1db954; /* Green for Spotify */
}

.streaming-link.youtube {
    background-color: #ff0000; /* Red for YouTube Music */
}

.streaming-link.pandora {
    background-color: #ff8c00; /* Orange for Pandora */
}

.streaming-link.itunes {
    background-color: #000; /* Black for iTunes */
}

.streaming-link:hover {
    opacity: 0.9;
}

/* Mobile menu styles */
.nav-toggle {
    display: none; /* Hidden by default */
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-menu {
    display: flex;
    justify-content: center;
}

/* Tablet styles (max-width: 768px) */
@media screen and (max-width: 768px) {
    header {
        height: 20vw;
        padding-top: 5vw;
    }

    header h1 {
        font-size: 6vw;
    }

    .logo {
        width: 60px;
        height: 60px;
        margin-right: 5px;
    }

    .social-icons {
        gap: 8px;
    }

    .social-icons img {
        width: 30px;
        height: 30px;
    }

    nav a {
        margin: 0 0.5rem;
        font-size: 1rem;
    }

    .container {
        width: 95%;
    }

    .album img, .merch-item img {
        width: 150px;
    }

    .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .latest-release {
        flex-direction: column;
        align-items: center;
    }

    .album-cover {
        width: 250px;
        height: 250px;
		min-width: 250px;
    }
		/* Album Description */
		.album-description {
			max-width: 300px;
			background-color: #2a2a2a; /* Slightly lighter background */
			padding: 1.0rem;
			border-radius: 10px;
			box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
			color: #ffffff; /* White text for readability */
		}

		.album-description h3 {
			font-size: 1.8rem;
			margin-bottom: 1rem;
			text-align: center;
			text-transform: uppercase; /* Adds a bold, thematic touch */
		}

		.album-description p {
			font-size: 1.1rem;
			line-height: 1.6; /* Improves readability */
			text-align: justify;
		}

    .band-name {
        font-size: 1.0rem;
    }

    .album-title {
        font-size: 1rem;
    }

    .streaming-options {
        width: 200px;
        align-items: center;
		white-space: nowrap; /* Prevents text wrapping */
    }

    .streaming-link {
        width: 90%;
        font-size: 0.9rem;
		white-space: nowrap; /* Prevents text wrapping */    }
}

/* Mobile styles (max-width: 480px) */
@media screen and (max-width: 480px) {
    header {
        height: 30vw;
        min-height: 150px;
        padding-top: 10vw;
    }

    header h1 {
        font-size: 8vw;
        flex-direction: column;
        align-items: center;
    }

    .logo {
        width: 50px;
        height: 50px;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .social-icons {
        margin-top: 0.5rem;
        gap: 10px;
    }

    .social-icons img {
        width: 25px;
        height: 25px;
    }

    .nav-toggle {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        background-color: #333;
        position: absolute;
        top: 3rem;
        right: 1rem;
        width: 200px;
        padding: 1rem;
        border-radius: 5px;
    }

    .nav-menu.active {
        display: flex;
    }

    nav a {
        margin: 0.5rem 0;
        font-size: 1rem;
    }

    .album, .merch-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .album img, .merch-item img {
        width: 120px;
    }

    .album-content, .merch-content {
        min-width: unset;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    form input, form textarea {
        width: 100%;
        box-sizing: border-box;
    }

    .album-cover {
        width: 200px;
        height: 200px;
    }

    .band-name {
        font-size: 1.1rem;
    }

    .album-title {
        font-size: 0.9rem;
    }

    .streaming-link {
        width: 90%;
        font-size: 0.8rem;
        padding: 0.5rem;
    }
}