/* ============================================
   THEMALEFIK PRESS KIT - CSS STYLESHEET
   Consistent with themalefik.com design
   ============================================ */

/* ============================================
   VARIABLES & ROOT STYLES
   ============================================ */

:root {
    --primary-color: #ff6b35;
    --primary-dark: #e55a24;
    --primary-light: #ff8555;
    --background-dark: #0a0a0a;
    --background-darker: #000000;
    --background-card: #1a1a1a;
    --background-hover: #222222;
    --text-primary: #ffffff;
    --text-secondary: #dddddd;
    --text-tertiary: #aaaaaa;
    --text-muted: #888888;
    --border-color: #333333;
    --border-light: #222222;
    --accent-red: #ff6b35;
    --font-family-primary: 'Roboto', sans-serif;
    --font-family-secondary: 'Open Sans', sans-serif;
    --transition-speed: 0.3s;
    --transition-timing: ease;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--background-darker);
    color: var(--text-primary);
    font-family: var(--font-family-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-primary);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-red);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--accent-red);
    padding-bottom: 15px;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-top: 30px;
    margin-bottom: 15px;
}

h4 {
    font-size: 1.3rem;
    color: var(--accent-red);
    text-transform: uppercase;
    margin-bottom: 10px;
}

h5 {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

h6 {
    font-size: 1rem;
    color: var(--text-tertiary);
}

p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 15px;
    text-align: justify;
}

a {
    color: var(--accent-red);
    text-decoration: none;
    transition: color var(--transition-speed) var(--transition-timing);
}

a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

strong {
    font-weight: 700;
    color: var(--accent-red);
}

em {
    font-style: italic;
    color: var(--text-tertiary);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
    background-color: var(--background-dark);
    border-bottom: 1px solid var(--border-light);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.u-header {
    background-color: var(--background-dark);
}

.u-sheet {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.u-logo {
    display: flex;
    align-items: center;
    margin-right: 40px;
}

.u-logo-image {
    max-width: 144px;
    height: auto;
    transition: transform var(--transition-speed) var(--transition-timing);
}

.u-logo-image:hover {
    transform: scale(1.05);
}

.u-menu {
    flex: 1;
}

.u-nav-container {
    display: flex;
    align-items: center;
}

.u-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.u-nav-item {
    margin: 0;
}

.u-nav-link {
    display: inline-block;
    padding: 10px 20px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-speed) var(--transition-timing);
    border-bottom: 2px solid transparent;
}

.u-nav-link:hover {
    color: var(--accent-red);
    border-bottom-color: var(--accent-red);
}

.u-nav-link.u-text-active-palette-1-base {
    color: var(--accent-red);
    border-bottom-color: var(--accent-red);
}

.u-social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.u-social-url {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--background-card);
    border: 1px solid var(--border-color);
    transition: all var(--transition-speed) var(--transition-timing);
}

.u-social-url:hover {
    background-color: var(--accent-red);
    border-color: var(--accent-red);
}

.u-social-icon {
    display: inline-flex;
    width: 20px;
    height: 20px;
    color: var(--text-primary);
    transition: color var(--transition-speed) var(--transition-timing);
}

.u-social-url:hover .u-social-icon {
    color: var(--background-darker);
}

.menu-collapse {
    display: none;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .u-sheet {
        flex-wrap: wrap;
        gap: 20px;
    }

    .u-logo {
        margin-right: 0;
        order: 1;
    }

    .menu-collapse {
        display: block;
        order: 2;
    }

    .u-nav-container {
        order: 3;
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .u-nav {
        flex-direction: column;
        width: 100%;
    }

    .u-nav-link {
        width: 100%;
        padding: 12px 15px;
        border-bottom: 1px solid var(--border-light);
    }

    .u-social-icons {
        order: 4;
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.u-section-1 {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(255, 107, 53, 0.1) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,107,53,0.05)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="black"/><rect width="1200" height="600" fill="url(%23grid)"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.u-section-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.u-section-1 h1 {
    position: relative;
    z-index: 2;
    animation: fadeInDown 0.8s ease-out;
}

.u-section-1 p {
    position: relative;
    z-index: 2;
    font-size: 1.3rem;
    margin-top: 20px;
    color: var(--text-tertiary);
    font-style: italic;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   CONTAINER LAYOUT
   ============================================ */

.u-container-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   PRESS KIT SECTIONS
   ============================================ */

.press-kit-section {
    padding: 60px 20px;
    background-color: var(--background-dark);
    border-bottom: 1px solid var(--border-light);
    transition: background-color var(--transition-speed) var(--transition-timing);
}

.press-kit-section:nth-child(even) {
    background-color: var(--background-darker);
}

.press-kit-section:hover {
    background-color: var(--background-card);
}

/* ============================================
   DOWNLOAD SECTION
   ============================================ */

.download-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
    animation: fadeIn 0.6s ease-out 0.3s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.download-card {
    background: linear-gradient(135deg, var(--background-card) 0%, var(--background-darker) 100%);
    border: 2px solid var(--accent-red);
    border-radius: 5px;
    padding: 30px;
    width: 100%;
    max-width: 450px;
    text-align: center;
    transition: all var(--transition-speed) var(--transition-timing);
    position: relative;
    overflow: hidden;
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
    transition: left 0.5s ease;
}

.download-card:hover::before {
    left: 100%;
}

.download-card:hover {
    background: linear-gradient(135deg, var(--background-hover) 0%, var(--background-card) 100%);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.4),
                inset 0 0 20px rgba(255, 107, 53, 0.1);
    transform: translateY(-8px);
    border-color: var(--primary-light);
}

.download-card h4 {
    font-size: 1.3rem;
    color: var(--accent-red);
    margin: 0 0 15px 0;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.download-card p {
    font-size: 0.95rem;
    color: var(--text-tertiary);
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.download-card p:last-of-type {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ============================================
   DOWNLOAD BUTTON
   ============================================ */

.download-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--primary-dark) 100%);
    color: var(--background-darker);
    padding: 12px 40px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid var(--accent-red);
    border-radius: 3px;
    cursor: pointer;
    transition: all var(--transition-speed) var(--transition-timing);
    font-size: 0.95rem;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.download-btn:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-red) 100%);
    transform: scale(1.08);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
    color: var(--background-darker);
}

.download-btn:active {
    transform: scale(0.98);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    background: linear-gradient(135deg, var(--background-card) 0%, var(--background-darker) 100%);
    padding: 40px;
    border-left: 4px solid var(--accent-red);
    margin-top: 40px;
    border-radius: 3px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: all var(--transition-speed) var(--transition-timing);
}

.contact-section:hover {
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.2);
    border-left-color: var(--primary-light);
}

.contact-section h4 {
    color: var(--accent-red);
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.contact-section p {
    color: var(--text-secondary);
    margin-bottom: 10px;
    text-align: left;
}

.contact-section a {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-speed) var(--transition-timing);
}

.contact-section a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

/* ============================================
   TABLES
   ============================================ */

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: var(--background-card);
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

thead {
    background-color: var(--background-darker);
}

thead tr {
    border-bottom: 2px solid var(--accent-red);
}

thead th {
    text-align: left;
    padding: 15px;
    color: var(--accent-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

tbody tr {
    border-bottom: 1px solid var(--border-light);
    transition: background-color var(--transition-speed) var(--transition-timing);
}

tbody tr:hover {
    background-color: var(--background-hover);
}

tbody td {
    padding: 12px 15px;
    color: var(--text-secondary);
}

tbody tr:last-child {
    border-bottom: none;
}

/* ============================================
   LINEUP SECTION
   ============================================ */

.lineup-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
    justify-content: center;
}

.lineup-member {
    text-align: center;
    flex: 1;
    min-width: 200px;
    padding: 20px;
    background-color: var(--background-card);
    border: 1px solid var(--border-color);
    border-radius: 3px;
    transition: all var(--transition-speed) var(--transition-timing);
}

.lineup-member:hover {
    background-color: var(--background-hover);
    border-color: var(--accent-red);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
    transform: translateY(-5px);
}

.lineup-member h4 {
    color: var(--accent-red);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.lineup-member p {
    color: var(--text-tertiary);
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background-color: var(--background-darker);
    border-top: 1px solid var(--border-light);
    padding: 30px 20px;
    text-align: center;
    margin-top: 60px;
}

footer p {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    margin: 0;
}

footer a {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 600;
}

footer a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .u-section-1 {
        min-height: 300px;
        padding: 60px 20px;
    }

    .download-container {
        gap: 20px;
    }

    .download-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    p {
        font-size: 0.95rem;
        text-align: left;
    }

    .u-section-1 {
        min-height: 250px;
        padding: 40px 20px;
    }

    .u-section-1 p {
        font-size: 1rem;
    }

    .press-kit-section {
        padding: 40px 20px;
    }

    .download-container {
        flex-direction: column;
        gap: 15px;
    }

    .download-card {
        max-width: 100%;
        padding: 20px;
    }

    .download-btn {
        padding: 10px 30px;
        font-size: 0.9rem;
    }

    .contact-section {
        padding: 25px;
    }

    .lineup-container {
        flex-direction: column;
        gap: 20px;
    }

    .lineup-member {
        min-width: 100%;
    }

    table {
        font-size: 0.9rem;
    }

    thead th,
    tbody td {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    h3 {
        font-size: 1rem;
    }

    p {
        font-size: 0.9rem;
    }

    .u-section-1 {
        min-height: 200px;
        padding: 30px 15px;
    }

    .press-kit-section {
        padding: 30px 15px;
    }

    .download-card {
        padding: 15px;
    }

    .download-btn {
        padding: 8px 25px;
        font-size: 0.85rem;
    }

    .contact-section {
        padding: 15px;
        border-left-width: 3px;
    }

    table {
        font-size: 0.85rem;
    }

    thead th,
    tbody td {
        padding: 8px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.u-clearfix::after {
    content: '';
    display: table;
    clear: both;
}

.u-align-center {
    text-align: center;
}

.u-align-left {
    text-align: left;
}

.u-align-right {
    text-align: right;
}

.u-align-justify {
    text-align: justify;
}

.u-text-active-palette-1-base {
    color: var(--accent-red);
}

.u-black {
    background-color: var(--background-darker);
}

.u-body {
    font-family: var(--font-family-primary);
}

.u-overlap {
    position: relative;
}

.u-overlap-contrast {
    z-index: 1;
}

.u-overlap-transparent {
    opacity: 0.95;
}

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.animate-slide-left {
    animation: slideInLeft 0.6s ease-out;
}

.animate-slide-right {
    animation: slideInRight 0.6s ease-out;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    header,
    footer {
        display: none;
    }

    body {
        background-color: white;
        color: black;
    }

    .download-btn {
        display: none;
    }

    .press-kit-section {
        page-break-inside: avoid;
        border: 1px solid #ccc;
    }

    a {
        color: #0066cc;
        text-decoration: underline;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-color-scheme: dark) {
    :root {
        --background-dark: #0a0a0a;
        --background-darker: #000000;
        --text-primary: #ffffff;
    }
}

/* ============================================
   SCROLLBAR STYLING
   ============================================ */

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--background-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-red);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* ============================================
   FOCUS STATES (Accessibility)
   ============================================ */

button:focus,
a:focus,
input:focus {
    outline: 2px solid var(--accent-red);
    outline-offset: 2px;
}

/* ============================================
   END OF STYLESHEET
   ============================================ */
