/* O-Town Walls Mural Fest - Main Stylesheet */
/* Responsive design built for mobile-first */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Space+Grotesk:wght@400;500;700&display=swap');

:root {
    --pink: #E91E8C;
    --pink-dark: #c4177a;
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f5;
    --text-primary: #1a1a1a;
    --text-secondary: #333333;
    --text-muted: #666666;
    --border-color: #e0e0e0;
}

/* Section title underline - clean style */
.section-title {
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--pink);
}

/* Street art hover effect for cards */
.street-hover {
    transition: all 0.3s ease;
    position: relative;
}
.street-hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--pink);
    transition: width 0.3s ease;
}
.street-hover:hover::after {
    width: 100%;
}

/* Tagline/graffiti text style */
.tag-text {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}
.tag-text::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 80%;
    background: var(--pink);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.05em;
    line-height: 1.1;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 6vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
}

a {
    color: var(--pink);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a1a1a;
}

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header / Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e0e0e0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 80px;
    width: auto;
}

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

.nav-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 20px;
    display: none;
    flex-direction: column;
    gap: 15px;
    border-bottom: 3px solid var(--pink);
}

.nav-menu.active {
    display: flex;
}

.nav-menu a {
    color: #1a1a1a;
    font-size: 1.2rem;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    font-weight: 500;
}

.nav-menu a:hover {
    color: var(--pink);
}

/* Desktop Nav */
@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
    
    .nav-menu {
        position: static;
        display: flex;
        flex-direction: row;
        background: none;
        padding: 0;
        border: none;
        gap: 30px;
    }
    
    .nav-menu a {
        font-size: 1rem;
        padding: 0;
        border: none;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 20px 80px;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
    position: relative;
    overflow: visible;
}

.hero-logo {
    max-width: 400px;
    width: 90%;
    margin-bottom: 30px;
}

.hero-video {
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16/9;
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(233, 30, 140, 0.3);
}

.hero-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Action Buttons */
.action-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 600px;
    width: 100%;
    margin-top: 40px;
}

@media (min-width: 600px) {
    .action-buttons {
        grid-template-columns: repeat(3, 1fr);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    border: 2px solid var(--pink);
    background: transparent;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn:hover {
    background: var(--pink);
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 30, 140, 0.4);
}

.btn-primary {
    background: var(--pink);
    color: #1a1a1a;
}

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

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    color: #1a1a1a;
    font-family: 'Bebas Neue', 'Arial Black', sans-serif;
    letter-spacing: 0.1em;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--pink);
    margin: 15px auto 0;
}

/* Artists Grid */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px;
}

.artist-card {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}




.artist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid transparent;
    border-radius: 8px;
    transition: border-color 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.artist-card:hover::before {
    border-color: var(--pink);
}

.artist-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 40px rgba(233,30,140,0.3);
}

.artist-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.artist-card:hover img {
    transform: scale(1.1);
}

.artist-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: #ffffff;
}

.artist-card-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #ffffff;
}

.artist-card-overlay p {
    font-size: 0.9rem;
    color: #cccccc;
}

/* Artist Bio Page */
.artist-hero {
    min-height: 65vh;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: visible;
    position: relative;
    padding: 100px 20px 50px;
}

.artist-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 20%, rgba(10,10,10,0.97) 100%);
}

.artist-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.artist-hero-content h1 {
    font-family: 'Bebas Neue', 'Arial Black', sans-serif;
    font-size: clamp(4rem, 15vw, 9rem);
    color: #ffffff;
    text-shadow: 
        4px 4px 0 #E91E8C, 
        8px 8px 0 rgba(0,0,0,0.4),
        0 0 60px rgba(233,30,140,0.5);
    letter-spacing: 0.08em;
    line-height: 0.9;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.artist-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .artist-info {
        grid-template-columns: 250px 1fr;
    }
}

.artist-headshot {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--pink);
    margin: 0 auto;
    box-shadow: 0 8px 30px rgba(233,30,140,0.2);
}

.artist-headshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.artist-bio {
    font-size: 1.1rem;
    line-height: 1.8;
}

.artist-bio p {
    margin-bottom: 20px;
}

.artist-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.artist-meta-item {
    display: flex;
    flex-direction: column;
}

.artist-meta-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.artist-meta-value {
    font-weight: 500;
    color: var(--pink);
}

/* Sponsors Section */
.sponsors {
    background: #f5f5f5;
    padding: 60px 0;
}

.sponsors-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px 60px;
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.sponsor-logo {
    height: 80px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.sponsor-logo:hover {
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .sponsors-grid {
        gap: 30px 40px;
    }
    .sponsor-logo {
        height: 60px;
        max-width: 160px;
    }
}

/* Map Section */
.map-section {
    padding: 80px 20px;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.map-container iframe {
    width: 100%;
    height: 500px;
    border: none;
}

/* Contact / Forms */
.contact-section {
    padding: 80px 20px;
    background: #f5f5f5;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    color: #1a1a1a;
    font-family: inherit;
    font-size: 1rem;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--pink);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
.footer {
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }
}

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-links h4 {
    color: var(--pink);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: #1a1a1a;
}

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

@media (min-width: 768px) {
    .social-links {
        justify-content: flex-start;
    }
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.social-links a:hover {
    border-color: var(--pink);
    background: var(--pink);
}

.footer-bottom {
    max-width: 1400px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: #f5f5f5;
    border: none;
    color: #1a1a1a;
    font-family: inherit;
    font-size: 1.1rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e0e0e0;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--pink);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #ffffff;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 20px 25px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-pink { color: var(--pink); }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mt-40 { margin-top: 40px; }

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--pink);
    border: none;
    border-radius: 50%;
    color: #1a1a1a;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--pink-dark);
    transform: translateY(-5px);
}
