/* 
   Hardy Rocky - Main Stylesheet
   Modern, rock-themed design with full mobile responsiveness
   SEO-optimized for Google
*/

/* Base Styles & Reset */
:root {
    /* Main color scheme - rock theme */
    --primary-color: #ff5722;
    --secondary-color: #9c27b0;
    --accent-color: #ff9800;
    --dark-color: #121212;
    --darker-color: #0a0a0a;
    --light-color: #f5f5f5;
    --text-color: #e0e0e0;
    --text-dark: #121212;
    
    /* Fonts */
    --heading-font: 'Oswald', sans-serif;
    --body-font: 'Montserrat', sans-serif;
}

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

html {
    font-size: 62.5%; /* 1rem = 10px */
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--dark-color);
    overflow-x: hidden;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: 5.2rem;
}

h2 {
    font-size: 3.8rem;
}

h3 {
    font-size: 2.6rem;
}

p {
    margin-bottom: 2rem;
}

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

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 9rem 0;
    position: relative;
}

.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--text-color);
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn:hover {
    color: var(--dark-color);
}

.btn:hover::before {
    width: 100%;
}

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

.btn-primary::before {
    background-color: var(--light-color);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--accent-color);
}

.btn-secondary::before {
    background-color: var(--accent-color);
}

.highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
    opacity: 0.3;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -1rem;
    width: 8rem;
    height: 3px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
}

.section-header p {
    max-width: 60rem;
    margin: 1rem auto 0;
    color: var(--text-color);
    opacity: 0.8;
    font-size: 1.8rem;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 0;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-svg {
    height: 5rem;
    width: auto;
}

nav ul {
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 2.5rem;
}

nav ul li a {
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 3rem;
    height: 2.4rem;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 70rem;
    display: flex;
    align-items: center;
    background-color: var(--darker-color);
    background-image: linear-gradient(135deg, rgba(255, 87, 34, 0.1) 0%, rgba(156, 39, 176, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23ff5722' fill-opacity='0.1'%3E%3Cpath fill-rule='evenodd' d='M11 0l5 20H6l5-20zm42 31a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM0 72h40v4H0v-4zm0-8h31v4H0v-4zm20-16h20v4H20v-4zM0 56h40v4H0v-4zm63-25a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm10 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM53 41a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm10 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm10 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-30 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-28-8a5 5 0 0 0-10 0h10zm10 0a5 5 0 0 1-10 0h10zM56 5a5 5 0 0 0-10 0h10zm10 0a5 5 0 0 1-10 0h10zm-3 46a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm10 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM21 0l5 20H16l5-20zm43 64v-4h-4v4h-4v4h4v4h4v-4h4v-4h-4zM36 13h4v4h-4v-4zm4 4h4v4h-4v-4zm-4 4h4v4h-4v-4zm8-8h4v4h-4v-4z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.15;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 80rem;
}

.hero-content h1 {
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 2.2rem;
    margin-bottom: 3.5rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
}

/* About Section */
.about {
    background-color: var(--darker-color);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 2rem;
    font-size: 1.7rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.stat {
    text-align: center;
    padding: 3rem;
    border: 1px solid rgba(255, 87, 34, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 87, 34, 0.1), rgba(156, 39, 176, 0.1));
    z-index: -1;
}

.stat:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.stat h3 {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat p {
    font-size: 1.6rem;
    margin-bottom: 0;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Music Section */
.music {
    background-color: var(--dark-color);
    position: relative;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 3rem;
}

.music-card {
    padding: 4rem 3rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(10, 10, 10, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.music-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.music-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
}

.music-card:hover::after {
    transform: scaleX(1);
}

.music-icon {
    margin-bottom: 2.5rem;
}

.music-card h3 {
    margin-bottom: 1.5rem;
}

.music-card p {
    color: var(--text-color);
    opacity: 0.7;
    font-size: 1.5rem;
}

/* Entertainment Section */
.entertainment {
    background-color: var(--darker-color);
    position: relative;
}

.entertainment-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(40rem, 1fr));
    gap: 4rem;
}

.link-category {
    margin-bottom: 3rem;
}

.link-category h3 {
    color: var(--accent-color);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
    gap: 1.5rem;
}

.link-grid li a {
    display: block;
    padding: 1.2rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.link-grid li a:hover {
    background-color: rgba(255, 87, 34, 0.1);
    transform: translateX(5px);
    color: var(--primary-color);
}

/* Contact Section */
.contact {
    background-color: var(--dark-color);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.contact-form {
    max-width: 60rem;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 2.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--text-color);
    font-family: var(--body-font);
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.05);
}

.form-group textarea {
    resize: vertical;
    min-height: 15rem;
}

/* Footer */
footer {
    background-color: var(--darker-color);
    padding: 6rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo svg {
    height: 6rem;
    width: auto;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column h4 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.footer-column ul li {
    margin-bottom: 1.2rem;
}

.footer-column ul li a {
    font-size: 1.4rem;
    opacity: 0.7;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-column ul li a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -3px;
    left: 0;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-column ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 1.4rem;
    opacity: 0.7;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 1024px) {
    html {
        font-size: 58%;
    }
    
    .entertainment-links {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 56%;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    nav ul {
        position: fixed;
        top: 8rem;
        left: 0;
        width: 100%;
        height: 0;
        overflow: hidden;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: all 0.5s ease;
        opacity: 0;
        visibility: hidden;
    }
    
    nav ul.active {
        height: auto;
        opacity: 1;
        visibility: visible;
        padding: 3rem 0;
    }
    
    nav ul li {
        margin: 1.5rem 0;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .stat {
        flex: 1 0 calc(50% - 1.5rem);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        display: flex;
        justify-content: center;
        margin-bottom: 3rem;
    }
}

@media screen and (max-width: 576px) {
    html {
        font-size: 54%;
    }
    
    .link-grid {
        grid-template-columns: 1fr;
    }
    
    .music-grid {
        grid-template-columns: 1fr;
    }
    
    .stat {
        flex: 1 0 100%;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .section-header h2 {
        font-size: 3.2rem;
    }
}
