@import url('https://fonts.googleapis.com/css2?family=Gloock&family=Rubik+Mono+One&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gloock', sans-serif;
}

/* Ensure the page fills the screen properly */
/* 🌑 Make sure body takes up full height */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    background-color: #000000 !important;
    color: #ffffff;
}

/* Content section should take up available space */
.content {
    flex-grow: 1; /* Makes sure the content section takes all available space */
}

body {
    background-color: #0a0a0a;
    color: white;
}

/* 🌑 Modern Navbar */
.navbar {
    display: flex;
    justify-content: center; /* Center the logo */
    align-items: center; /* Vertically center the logo */
    padding: 20px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: #121212; /* Dark gray shade */
    box-shadow: inset 0 -25px 40px rgba(0, 0, 0, 0.5); /* Inner shadow */
    backdrop-filter: blur(10px); /* Slight blur for modern effect */
}

/* Remove any other elements like navigation links */
.navbar ul {
    display: none; /* Hide the list */
}

/* Apply to "ayglø" text */
.logo {
    font-family: 'Blackletter Gothic', serif;
    font-size: 3em;
    color: #a32ff3;
    text-shadow: 0 0 3px #a32ff3, 0 0 3px #ff00ff;
}


@font-face {
    font-family: 'Blackletter Gothic';
    src: url('../fonts/OldLondonAlternate.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Apply to "ayglø" text */
.logo {
    font-family: 'Blackletter Gothic', serif;
    font-size: 3em;
    color: #a32ff3;
    text-shadow: 0 0 15px #a32ff3, 0 0 40px #ff00ff;
    text-transform: uppercase;
}

.navbar ul li {
    margin-left: 20px;
}

.navbar ul li a {
    text-decoration: none;
    color: #a32ff3;
    text-shadow: 0 0 10px #a32ff3;
    transition: all 0.3s ease-in-out;
}

.navbar ul li a:hover {
    color: white;
    text-shadow: 0 0 20px #ff00ff, 0 0 40px #ff00ff;
}

/* 🎸 HERO SECTION */
.hero {
    text-align: center;
    padding: 200px 20px;
    background-image: url('assets/bg-noise.png');
    background-size: cover;
    height: 100vh;
}

.glow-text {
    font-size: 3.5em;
    color: #a32ff3;
    text-shadow: 0 0 30px #a32ff3, 0 0 50px #ff00ff;
    font-weight: bold;
}

.hero p {
    font-size: 1.5em;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 0 10px rgba(163, 47, 243, 0.5);
}

/* 🔥 GALLERY */
.gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 50px 20px;
}

.album-card {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #a32ff3;
    box-shadow: 0 0 20px #a32ff3, 0 0 40px #ff00ff;
    text-align: center;
    line-height: 200px;
    font-size: 1.2em;
    transition: all 0.3s ease-in-out;
}

.album-card:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px #ff00ff, 0 0 60px #a32ff3;
}

/* ⚡ FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: black;
    font-size: 0.8em;
    opacity: 0.7;
}
/* 🌌 Website Background */
body {
    background: url('../images/upscaled_background.png') no-repeat center center fixed; 
    background-size: cover;
    background-attachment: fixed; /* Keeps the wallpaper in place */
    background-color: black; /* Fallback color */
}


/* 🖤 Footer Styling */
/* 🖤 Footer Styling */
/* 🖤 Footer Styling */
footer {
    text-align: center;
    background: black;
    color: white;
    padding: 20px 0; /* Adjust vertical padding to control footer height */
    font-size: 1em;
    box-shadow: inset 0 5px 10px rgba(0, 0, 0, 0.5);
}

/* 🖼️ Footer Container */
.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px; /* Adjust gap between items */
}

/* 📌 Icon Row Styling */
.footer-row {
    display: flex;
    justify-content: center;
    gap: 20px; /* Spacing between icons */
    flex-wrap: wrap;
    padding: 10px 0; /* Adjust padding around icons */
}

/* 🌐 Social & Music Icons - Always White */
.footer-row a {
    font-size: 2em; /* Adjust icon size */
    color: white !important; /* Force white icons */
    transition: transform 0.3s ease;
}

/* 🎧 Hover Effect */
.footer-row a:hover {
    color: #a32ff3 !important; /* Change to neon purple on hover */
    transform: scale(1.2);
}

/* 🖤 Platform-Specific Colors */
.footer-section a:nth-child(2) { color: #E1306C; } /* Instagram */
.footer-section a:nth-child(3) { color: #000000; } /* TikTok */
.footer-section a:nth-child(4) { color: #ffffff; } /* X (Twitter) */
.footer-section a:nth-child(5) { color: #1DB954; } /* Spotify */
.footer-section a:nth-child(6) { color: #FC3C44; } /* Apple Music */
.footer-section a:nth-child(7) { color: #FF0000; } /* YouTube */
.footer-section a:nth-child(8) { color: #ff7700; } /* SoundCloud */

html {
    scroll-behavior: smooth;
}

/* 🎡 Carousel Styling */
/* 🎡 Carousel Styling */
/* 🎡 Carousel Container Styling */
.carousel-container {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5); /* Darken the background */
    backdrop-filter: blur(10px); /* Apply a blur effect behind the carousel */
    box-shadow: 0 0 30px rgba(163, 47, 243, 0.8), 0 0 60px rgba(163, 47, 243, 0.6); /* Purple neon glow shadow */
}

/* Carousel styling remains the same */
.carousel {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

/* 🎡 Carousel Item Styling */
.carousel-item {
    min-width: 100%;
    position: relative;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    overflow: hidden;
    text-align: center;
    flex-direction: column; /* Ensure text is below the image */
}

/* Make images responsive */
/* Make images responsive with smooth hover transition */
.carousel-item img {
    width: 80%; /* Set width as percentage of the container */
    max-width: 600px; /* Prevent images from getting too large */
    height: auto; /* Maintain aspect ratio */
    object-fit: cover; /* Ensure the image fits within the container without distortion */
    transition: transform 0.3s ease; /* Smooth transition for scaling */
}

/* Slightly enlarge the image on hover */
.carousel-item img:hover {
    transform: scale(1.05); /* Scale the image to 105% of its original size */
}

/* Remove any spacing and position the text directly below the image */
.carousel-item a {
    margin: 0; /* No margin between the image and the text */
    color: white; /* Text color */
    font-size: 1.2em; /* Font size for the title */
    text-decoration: none; /* Remove underline */
    text-shadow: 0 0 10px rgba(163, 47, 243, 0.8); /* Drop shadow for text */
}

/* On hover, apply subtle drop shadow on the text */
.carousel-item a:hover {
    color: #a32ff3; /* Optionally change text color on hover */
}

/* Media Queries for small screens */
@media (max-width: 600px) {
    .carousel-item img {
        width: 90%; /* Allow for some side margin */
        max-width: 500px; /* Prevent the image from getting too large */
    }
}

/* Media Queries for larger screens */
@media (min-width: 1500px) {
    .carousel-item img {
        width: 90%; /* Adjust the width for large screens */
    }
}

/* Title Link (non-clickable for carousel item) */
.carousel-item a:last-child {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background 0.3s;
}

.carousel-item a:last-child:hover {
    background: #a32ff3; /* Purple background on hover */
}

/* ⬅️➡️ Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 2em;
    z-index: 1000;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.hidden {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
