* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 800; /* This is the extra-bold weight */
    background: #000;
    color: #fff;
}

/* Header */
header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1rem 2rem;
    /* other existing styles */
}

.logo {
    grid-column: 1;
}

nav {
    grid-column: 2;
}

.socials {
    grid-column: 3;
    justify-self: end;
}

nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
}

.logo img {
    height: 50px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: #f00;
}

/* Base styles for nav items */
nav ul li a {
    display: inline-block;
    position: relative;
    text-decoration: none;
    transition: transform 0.2s ease;
    /* Keep your existing styles */
}

/* Scale effect on hover */
nav ul li a:hover {
    transform: scale(1.1); /* Slightly more subtle scale */
}

/* Add an animated underline */
nav ul li a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -4px;
    left: 50%;
    background-color: #ff003c; /* Match your logo red color */
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav ul li a:hover::after {
    width: 100%;
}

.socials img {
    height: 20px;
    margin-left: 10px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 20px;
}

.video-content h1 {
    font-size: 120px;
    margin-bottom: 10px;
}

.artist-content h1 {
    font-size: 120px;
    margin-bottom: 10px;
}

.releases-content h1 {
    font-size: 120px;
    margin-bottom: 10px;
}
.news-content h1 {
    font-size: 120px;
    margin-bottom: 10px;
}

/* About Section */
.about {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.about video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.about-content h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.75); /* Horizontal offset, vertical offset, blur, color */
    font-size: 48px;
    margin-bottom: 10px;
}

.about-content h2 {
    color: #dadada;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.75); /* Horizontal offset, vertical offset, blur, color */
    font-size: 40px;
    margin-bottom: 10px;
}

.about-content h3 {
    color: #dadada;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.75); /* Horizontal offset, vertical offset, blur, color */
    font-size: 28px;
    margin-bottom: 20px;
    margin-left: -20%;
    margin-right: -20%;
}

/* Privacy Section */
.privacy {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.privacy-content {
    position: absolute;
    width: 80%;
    text-align: left;
    margin-top: 70px;
    margin-left: 10%;
    margin-right: 10%;
}

.privacy-content h1 {
    font-size: 48px;
    margin-bottom: 40px;
    text-align: center;
}

.privacy-content h2 {
    color: #f00;
    font-size: 40px;
    margin-bottom: 10px;
    text-align: center;
}

.privacy-content h3 {
    color: #f00;
    font-size: 28px;
    margin-bottom: 20px;
}

/* Contact Section */
.contact {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.contact-content {
    position: absolute;
    width: 80%;
    text-align: left;
    margin-top: 70px;
    margin-left: 10%;
    margin-right: 10%;
}

.contact-content h1 {
    font-size: 48px;
    margin-bottom: 40px;
    text-align: center;
}

.contact-content h2 {
    color: #f00;
    font-size: 40px;
    margin-bottom: 10px;
    text-align: center;
}

.contact-content h3 {
    color: #f00;
    font-size: 28px;
    margin-bottom: 20px;
}

.newsletter h3 {
    margin-top: 20px;
    margin-bottom: -10px;
}
.cta-button {
    background: #f00;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.cta-button:hover {
    background: #c00;
}

/* Sections */
/*.section {*/
/*    padding: 60px 20px;*/
/*}*/

.section {
    width: 100%;
    padding: 3rem 0; /* Vertical padding only */
    box-sizing: border-box;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .grid-container {
        width: 90%; /* Slightly wider on smaller screens */
    }

    .grid {
        gap: 1.5rem; /* Slightly reduced gap on smaller screens */
    }
}

.section h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

/* Global grid container styling */
.grid-container {
    width: 80%; /* Control width of all grid containers */
    max-width: 1200px; /* Maximum width to prevent stretching on large screens */
    margin: 0 auto; /* Centers the grid horizontally with equal margins */
    padding: 0; /* Remove any padding */
}

.video-content .grid-container {
    width: 80%; /* Control width of all grid containers */
    max-width: 1200px; /* Maximum width to prevent stretching on large screens */
    margin: 0 auto; /* Centers the grid horizontally with equal margins */
    padding: 0; /* Remove any padding */
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.video-content .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.card {
    width: 400px; /* Adjust this based on your layout */
    height: 500px; /* Adjust this based on your design */
    display: flex; /* Enables flexbox for consistent alignment */
    flex-direction: column; /* Stack content vertically */
    align-items: center; /* Center items horizontally */
    justify-content: space-between; /* Space items evenly */
    overflow: hidden; /* Automatically hide overflowing content */
    background-color: #f9f9f9; /* Add a background color (optional) */
    border-radius: 8px; /* Add rounded corners (optional) */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Add shadow (optional) */

    background: #111;
    padding: 20px;
    border-radius: 10px;
}

.video-content .card {
    width: 600px; /* Adjust this based on your layout */
    height: 410px; /* Adjust this based on your design */
    display: flex; /* Enables flexbox for consistent alignment */
    flex-direction: column; /* Stack content vertically */
    align-items: center; /* Center items horizontally */
    justify-content: space-between; /* Space items evenly */
    overflow: hidden; /* Automatically hide overflowing content */
    background-color: #f9f9f9; /* Add a background color (optional) */
    border-radius: 8px; /* Add rounded corners (optional) */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Add shadow (optional) */
    background: #1b1b39;
    padding: 20px;
    border-radius: 10px;
}

.card img {
    width: 100%; /* Make the image width fill the card container */
    height: 400px; /* Fix a uniform height for all images */
    object-fit: cover; /* Resize and crop the image proportionally */
    border-radius: 8px;
    margin-bottom: 8px;
}

.card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.stream-link {
    color: #f00;
    text-decoration: none;
}

.stream-link:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #111;
    padding: 40px 20px;
    text-align: center;
}

.footer-links a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

.newsletter form {
    margin: 20px 0;
}

.newsletter input {
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
}

.newsletter button {
    padding: 10px;
    background: #f00;
    color: #fff;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 18px;
    }
}

}
@keyframes fadeIn {
    to { opacity: 1; }
}

/* Apply fade-in when the card is hovered */
.card:hover {
    animation: fadein 1s forwards;
    opacity: 0.5;
}

/* Twitter / X */
/* 1: Target specifically the image inside the twitter-image div */
.twitter-image > img {
    width: 24px !important;
    height: 24px !important;
    object-fit: contain !important;
    max-width: none !important; /* Prevents parent container constraints */
    max-height: none !important;
}

/* 2: Style for the .twitter-image div */
.card .twitter-image {
    position: absolute;
    top: 30px;
    right: 30px;
    object-fit: contain !important; /* Maintain the correct aspect ratio */
    margin: 0; /* Reset any margins */
    padding: 0; /* Reset any padding */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 3: If there's an anchor tag inside twitter-image */
.twitter-image > a > img {
    width: 24px !important;
    height: 24px !important;
    object-fit: contain !important;
}

/* 4: Container styling (optional) */
.twitter-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px; /* Optional spacing */
}

/* 5: Optional: Add hover effects to the Twitter image */
.card .twitter-image img:hover {
    transform: scale(1.1); /* Slight zoom-in effect on hover */
    transition: transform 0.5s ease-in-out; /* Smooth hover transition */
}

/* Instagram */
/* 1: Target specifically the image inside the Instagram-image div */
.instagram-image > img {
    width: 24px !important;
    height: 24px !important;
    object-fit: contain !important;
    max-width: none !important; /* Prevents parent container constraints */
    max-height: none !important;
}

/* 2: Style for the .instagram-image div */
.card .instagram-image {
    position: absolute;
    top: 30px;
    right: 60px;
    object-fit: contain !important; /* Maintain the correct aspect ratio */
    margin: 0; /* Reset any margins */
    padding: 0; /* Reset any padding */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 3: If there's an anchor tag inside instagram-image */
.instagram-image > a > img {
    width: 24px !important;
    height: 24px !important;
    object-fit: contain !important;
}

/* 4: Target specifically the image inside the Instagram-image div */
.instagram-image > img {
    width: 24px !important;
    height: 24px !important;
    object-fit: contain !important;
    max-width: none !important; /* Prevents parent container constraints */
    max-height: none !important;
}

/* 5: Optional: Add hover effects to the Twitter image */
.card .instagram-image img:hover {
    transform: scale(1.1); /* Slight zoom-in effect on hover */
    transition: transform 0.5s ease-in-out; /* Smooth hover transition */
}

/* Spotify */
/* 1: Target specifically the image inside the Spotify-image div */
.spotify-image > img {
    width: 24px !important;
    height: 24px !important;
    object-fit: contain !important;
    max-width: none !important; /* Prevents parent container constraints */
    max-height: none !important;
}

/* 2: Style for the .spotify-image div */
.card .spotify-image {
    position: absolute;
    top: 30px;
    right: 90px;
    object-fit: contain !important; /* Maintain the correct aspect ratio */
    margin: 0; /* Reset any margins */
    padding: 0; /* Reset any padding */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 3: If there's an anchor tag inside spotify-image */
.spotify-image > a > img {
    width: 24px !important;
    height: 24px !important;
    object-fit: contain !important;
}

/* 4: Container styling (optional) */
.spotify-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px; /* Optional spacing */
}

/* 5: Optional: Add hover effects to the Spotify image */
.card .spotify-image img:hover {
    transform: scale(1.1); /* Slight zoom-in effect on hover */
    transition: transform 0.5s ease-in-out; /* Smooth hover transition */
}

.socials img:hover {
    transform: scale(1.1); /* Slight zoom-in effect on hover */
    transition: transform 0.5s ease-in-out; /* Smooth hover transition */
}
/* Optional: Add position relative to the card for positioning effects */
.card {
    position: relative;
}

/* Show the Twitter image on hover */
.card:hover .twitter-image {
    display: block;
}

/* Reset or remove the default margin for <h3> */
.card h3 {
    font-size: 2em; /* Adjust font size as needed */
    text-align: center;
    margin: 0; /* Remove the top and bottom margin */
    padding: 10px 0; /* Add consistent padding if needed */
    overflow: hidden;
    white-space: nowrap; /* Prevent text wrapping */
    text-overflow: ellipsis; /* Truncate text with ellipsis (if needed) */
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 800; /* This is the extra-bold weight */
    text-decoration: none;
    font-size: 1.5rem; /* Adjust size as needed */
    color: #ff0000; /* Bright red */
}

p {
    margin-top: 10px;    /* Space above paragraphs */
    margin-bottom: 10px; /* Space below paragraphs */
}

.about-content {
    text-align: center;
}
