:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #333333;
    --text-color: #e0e0e0;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Oswald', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--primary-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

img {
    max-width: 100%;
    display: block;
}

/* Header */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--accent-color);
}

.main-logo {
    height: 60px;
    filter: invert(1);
    /* Ensure it stands out if it's black */
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #888;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomEffect 20s infinite alternate;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.hero p {
    font-size: 2rem;
    margin-bottom: 40px;
    letter-spacing: 5px;
}

.btn-main {
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: bold;
}

.btn-main:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

/* Sections */
section {
    padding: 80px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-size: 3rem;
    margin-bottom: 50px;
    text-align: center;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 10px;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
}

/* Brand History */
.brand-history {
    background-color: #0a0a0a;
}

.history-content {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.highlight-text {
    margin-top: 30px;
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff;
    border-left: 4px solid #fff;
    padding-left: 20px;
}

/* Magazine Preview */
.magazine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.mag-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #333;
}

.mag-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s;
    filter: grayscale(100%);
}

.mag-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.mag-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.mag-item:hover .mag-caption {
    transform: translateY(0);
}

/* Artist List */
.artist-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    width: 100%;
}

.artist-card {
    position: relative;
    height: 250px;
    background-color: #111;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #333;
}

.artist-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    filter: grayscale(100%);
}

.artist-card:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.artist-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 20px;
    display: flex;
    align-items: flex-end;
    height: 100%;
}

.artist-overlay h3 {
    font-size: 1.2rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    transform: translateY(10px);
    transition: transform 0.3s;
}

.artist-card:hover .artist-overlay h3 {
    transform: translateY(0);
}

/* Footer */
footer {
    padding: 40px;
    text-align: center;
    background-color: #000;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #666;
}

/* Submission Section */
.submission-section {
    background-color: #111;
    border-top: 1px solid #333;
}

.submission-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid #444;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #fff;
}

.file-upload-label {
    display: block;
    width: 100%;
    padding: 40px;
    border: 2px dashed #444;
    text-align: center;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.file-upload-label:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.btn-submit {
    padding: 15px;
    background: #fff;
    color: #000;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-submit:hover {
    background: #ccc;
    transform: translateY(-2px);
}