/* --- UNIVERSAL STYLES --- */
/* 1. REMOVE padding from the body so the gradient can touch the edges */
body {
    background-color: #000000;
    color: #ffffff;
    font-family: "Montserrat", sans-serif; 
    margin: 0;
    padding: 0; /* Changed from 20px to 0 */
    box-sizing: border-box; 
    overflow-x: hidden; /* Prevents accidental side-scrolling */
}

/* Adds a thin gray divider line below all sections */
section {
    border-bottom: 1px solid #333; /* Matches the header border color */
    padding-bottom: 60px; /* Optional: adds consistent breathing room above the line */
}



/* Add this to ensure every element respects the box-sizing rule */
*, *::before, *::after {
    box-sizing: inherit;
}

h1, h2, h3 {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    margin-top: 0;
}

/* --- NAVIGATION --- */
header {
    background-color: #2d0303;
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid #333;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Ensure the parent link has enough room on the left for the arrow */
nav ul li a {
    position: relative;
    padding-left: 20px; /* Space for the arrow */
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

/* The Artsy Arrow Styling */
nav ul li a.active::before {
    /* Choose an artsy character: '»', '✦', '—', or '➤' */
    content: '✦'; 
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%); /* Keeps it perfectly centered vertically */
    
    color: #000000; /* Matches your maroon branding */
    font-size: 1.2rem;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8); /* Gives it a slight "neon" glow */
    
    /* Animation: make it subtly pulse or breathe */
    animation: arrowPulse 2s infinite ease-in-out;
}

/* Optional Pulse Animation */
@keyframes arrowPulse {
    0% { opacity: 0.5; transform: translateY(-50%) scale(0.9); }
    50% { opacity: 1; transform: translateY(-50%) scale(1.1); }
    100% { opacity: 0.5; transform: translateY(-50%) scale(0.9); }
}

/* Highlight the active link text */
nav ul li a.active {
    color: #ffffff;
    letter-spacing: 2px; /* Slightly expands the text for emphasis */
}

/* --- HERO SECTION --- */
#hero {
    min-height: 90vh;
    width: 100%;
    /* The radial-gradient circle at center is the key anchor point */
    background: radial-gradient(circle at center, #ffffff 0%, #ffffff 10%, #8f121d 40%, #2a0005 70%, #000000 100%);
    
    /* Forces everything inside to stack and align to the mathematical center */
    display: grid; 
    place-items: center; 
    
    text-align: center;
    padding: 100px 0 60px 0;
    margin: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.hero-content {
    /* This container holds your image and text together */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 25px;
    z-index: 2;
}

.hero-image-frame {
    /* Larger size as requested previously */
    width: 100%;
    max-width: 650px; 
    background-color: #222222;
    padding: 20px;
    border: 2px solid #444;
    border-radius: 8px;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.9);
    margin-bottom: 40px;
    
    /* Ensures the frame itself doesn't drift */
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.hero-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.contact-info {
    /* Anchors the text below the image regardless of screen height */
    margin-top: 10px;
}

.contact-info p {
    font-size: clamp(1.2rem, 4vw, 1.6rem); /* Smoothly scales text size based on window width */
    margin-bottom: 8px;
    line-height: 1.4;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8); /* Ensures text is readable against the white light */
}

/* --- BUTTONS --- */
.button {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.4rem;
    letter-spacing: 2px;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 12px 30px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    margin: 10px;
    border-radius: 30px;
}

.button:hover {
    background-color: #ffffff;
    color: #8f121d; /* Matches the maroon theme */
    transform: scale(1.05);
}

.button-small {
    padding: 8px 20px;
    font-size: 1.1rem;
    margin: 5px;
}

/* --- ARTIST SECTION --- */
#artists {
    padding: 80px 5%;
    background-color: #000;
}

.artist-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.artist-card {
    background-color: #5a1515; /* Solid maroon base */
    border-radius: 12px;
    padding: 15px;
    width: 340px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artist-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(143, 18, 29, 0.4);
}

.artist-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.artist-inner-box {
    background-color: rgba(0, 0, 0, 0.6); /* Darkens the text area for readability */
    padding: 20px;
    border-radius: 8px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.artist-inner-box h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #fff;
}

.artist-inner-box p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.button-group {
    margin-top: auto; /* Pushes buttons to the bottom of the card */
    padding-bottom: 15px;
}

.cert-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #aaa;
    margin-top: 10px;
}

/* The Grid Layout */
.reviews-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 0;
}

/* The Individual Review Card */
.review-card {
    background-color: rgba(255, 255, 255, 0.05); /* Subtle dark lift */
    border: 1px solid #333;
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    max-width: 350px;
    text-align: left; /* Keep text left-aligned for readability */
    display: flex;
    flex-direction: column;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.author-name {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.star-rating {
    color: #f1c40f; /* Classic Gold */
}

.review-body {
    font-style: italic;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ddd;
    flex-grow: 1; /* Pushes the date to the bottom */
}

.review-date {
    font-size: 0.75rem;
    color: #777;
    margin-top: 15px;
    text-transform: uppercase;
}

/* --- FOOTER --- */
footer {
    background-color: #000;
    color: #888;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #333;
}