/* Base Styles */
:root {
    --primary: #ff5500;
    --secondary: #ff9900;
    --dark: #121212;
    --light: #f8f8f8;
    --text: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark);
    color: var(--text);
    line-height: 1.6;
    background-image: url('rock-texture.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

h1, h2, h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary);
}

/* Header Styles */
header {
    padding: 2rem 1rem;
    text-align: center;
    position: relative;
    background-color: rgba(0, 0, 0, 0.8);
    border-bottom: 3px solid var(--primary);
}

.logo-container {
    max-width: 300px;
    margin: 0 auto 1.5rem;
}

.logo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 85, 0, 0.7));
}

h1 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    position: relative;
}

section {
    background-color: rgba(18, 18, 18, 0.85);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    border-left: 4px solid var(--primary);
    backdrop-filter: blur(5px);
}

h2 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary);
}

p {
    margin-bottom: 1rem;
}

.fas, .fab {
    margin-right: 0.5rem;
    color: var(--secondary);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('bar-interior.jpg') center/cover no-repeat;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: white;
}

.hero-content h2::after {
    display: none;
}

.hero-content p {
    font-size: 1.2rem;
}

/* Music Features */
.music-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.feature-card {
    background-color: rgba(30, 30, 30, 0.8);
    padding: 1.5rem;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border-bottom: 3px solid var(--primary);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.feature-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.feature-card h3 {
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.gallery-item {
    background-color: rgba(50, 50, 50, 0.6);
    height: 150px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 0 15px rgba(255, 85, 0, 0.5);
}

/* Map Section */
.map-container {
    margin-top: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

/* Contact Section */
.contact-info {
    margin-bottom: 1.5rem;
}

.social-links {
    flex-wrap: wrap;
    max-width: 100%;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding: 0; /* Reset extra spacing */
    text-align: center;
}

.powered-by {
    font-size: 0.95rem;
    color: var(--text);
    margin-top: 1rem;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.85;
    transition: opacity 0.3s ease;
    display: inline-block;
    position: relative;
}

.powered-by:hover {
    opacity: 1;
}

.powered-by a {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.powered-by a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}

.powered-by a:hover::after {
    transform: scaleX(1);
}

.powered-by a:hover {
    color: var(--primary);
}


.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 85, 0, 0.2);
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary);
    color: var(--light);
    transform: scale(1.1);
}

/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 2rem 1rem;
    text-align: center;
    margin-top: 2rem;
    border-top: 3px solid var(--primary);
}

.footer-content p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    section {
        padding: 1.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .logo-container {
        max-width: 200px;
    }
    
    h1 {
        font-size: 1.3rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
}