/* 
   The Kalk - Site Oficial
   Design: Modern Rock Minimalism
   Responsivo e Otimizado para Mobile
*/

:root {
    --primary-color: #ffffff;
    --secondary-color: #888888;
    --accent-color: #ff0000;
    --bg-dark: #000000;
    --bg-light: #111111;
    --text-main: #ffffff;
    --text-muted: #aaaaaa;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .nav-links a {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

@media (min-width: 768px) {
    .container {
        padding: 0 30px;
    }
}

.section-padding {
    padding: 60px 0;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 100px 0;
    }
}

img {
    max-width: 100%;
    display: block;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255,255,255,0.1);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 10px 0;
    border-bottom: 1px solid #222;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    transition: var(--transition);
}

@media (min-width: 768px) {
    .logo img {
        height: 50px;
    }
}

.nav-links {
    display: none;
    list-style: none;
    gap: 30px;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.burger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

@media (min-width: 768px) {
    .burger {
        display: none;
    }
}

.burger div {
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 6px;
    transition: var(--transition);
}

.burger.active .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.active .line2 {
    opacity: 0;
}

.burger.active .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    padding: 20px;
    gap: 15px;
    border-bottom: 1px solid #222;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-family: 'Oswald', sans-serif;
    text-decoration: none;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .btn {
        padding: 15px 35px;
    }
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('../images/WhatsApp Image 2026-04-09 at 16.34.51 (1).jpeg') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 60px;
}

@media (min-width: 768px) {
    .hero {
        margin-top: 0;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.8));
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 7rem);
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: 10px;
}

.hero p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: var(--text-muted);
    margin-bottom: 30px;
    letter-spacing: 3px;
}

@media (min-width: 768px) {
    .hero p {
        margin-bottom: 40px;
    }
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .hero-btns {
        gap: 20px;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 2px;
}

.mouse {
    width: 20px;
    height: 35px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 20px); }
}

/* Section Header */
.section-header {
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 60px;
    }
}

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

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 10px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 1rem;
}

@media (min-width: 768px) {
    .about-text p {
        margin-bottom: 25px;
        font-size: 1.1rem;
    }
}

.band-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

@media (min-width: 768px) {
    .band-stats {
        gap: 40px;
        margin-top: 40px;
    }
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    color: var(--primary-color);
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
    }
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
}

.image-wrapper {
    position: relative;
}

.image-wrapper::after {
    content: '';
    position: absolute;
    top: 15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    z-index: -1;
}

@media (min-width: 768px) {
    .image-wrapper::after {
        top: 20px;
        right: -20px;
    }
}

.image-wrapper img {
    filter: grayscale(100%);
    transition: var(--transition);
}

.image-wrapper:hover img {
    filter: grayscale(0%);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 20px;
    }
}

.gallery-item {
    height: 250px;
    overflow: hidden;
    position: relative;
}

@media (min-width: 768px) {
    .gallery-item {
        height: 350px;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: transform 0.8s ease, filter 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* Music Section */
.music {
    background: var(--bg-light);
    position: relative;
    background-attachment: fixed;
}

.music-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8));
    z-index: 1;
}

.music-content {
    display: flex;
    justify-content: center;
}

.music-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    background: rgba(0, 0, 0, 0.85);
    border: 2px solid var(--accent-color);
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    border-radius: 8px;
}

@media (min-width: 768px) {
    .music-card {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 60px;
    }
}

.music-info h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .music-info h3 {
        font-size: 3.5rem;
    }
}

.music-info .status {
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.music-info .description {
    margin-bottom: 30px;
    color: var(--text-muted);
}

.music-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .music-actions {
        gap: 20px;
    }
}

.badge {
    background: var(--primary-color);
    color: var(--bg-dark);
    padding: 5px 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    width: fit-content;
    margin-bottom: 20px;
}

/* Schedule Section */
.schedule {
    background: var(--bg-dark);
}

.schedule-content {
    display: flex;
    justify-content: center;
}

.schedule-placeholder {
    text-align: center;
    padding: 60px 30px;
    background: var(--bg-light);
    border: 2px solid #222;
    border-radius: 8px;
    max-width: 600px;
}

@media (min-width: 768px) {
    .schedule-placeholder {
        padding: 80px 60px;
    }
}

.schedule-placeholder i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .schedule-placeholder i {
        font-size: 4rem;
    }
}

.schedule-placeholder h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .schedule-placeholder h3 {
        font-size: 2.5rem;
    }
}

.schedule-placeholder p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.schedule-subtitle {
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.schedule-socials {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
}

/* Shop Section */
.shop {
    background: var(--bg-dark);
}

.shop-content {
    display: flex;
    justify-content: center;
}

.product-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-light);
    width: 100%;
    max-width: 500px;
    border: 1px solid #222;
    transition: var(--transition);
}

.product-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.product-image {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #000;
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-color);
    color: #fff;
    padding: 5px 15px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    z-index: 2;
}

.product-info {
    padding: 30px;
    text-align: center;
}

@media (min-width: 768px) {
    .product-info {
        padding: 40px;
    }
}

.product-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .product-info h3 {
        font-size: 2.5rem;
    }
}

.product-description {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .product-price {
        font-size: 2rem;
    }
}

/* Contact Section */
.contact {
    background: var(--bg-light);
}

.contact-container {
    display: flex;
    justify-content: center;
}

.contact-info-card {
    text-align: center;
    padding: 40px;
    background: var(--bg-dark);
    border: 1px solid #222;
    max-width: 500px;
    width: 100%;
}

@media (min-width: 768px) {
    .contact-info-card {
        padding: 60px;
    }
}

.contact-info-card h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .contact-info-card h3 {
        font-size: 2.2rem;
    }
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.info-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
}

/* Footer */
footer {
    background: var(--bg-dark);
    border-top: 1px solid #222;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-logo img {
    height: 40px;
}

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

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

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

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

.reveal {
    animation: fadeInUp 0.8s ease-out forwards;
}

.reveal-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.reveal-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

/* Responsive Adjustments */
@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .band-stats {
        flex-direction: column;
        gap: 20px;
    }

    .music-card {
        padding: 20px;
    }

    .contact-info-card {
        padding: 20px;
    }
}
