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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header Styles */
header {
    background-color: #fff;
    color: #000;
    padding: 15px 0;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 15px;
    margin: 0 0 0 20px;
}

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

.logo img {
    height: 80px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #000;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Hamburger Menu */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1001;
    position: absolute;
    right: 80px;
    margin-top: 25px;
}

.bar1, .bar2, .bar3 {
    width: 30px;
    height: 6px;
    background-color: #000;
    margin: 3px 0;
    transition: 0.4s;
}

/* Rotate first bar */
.change .bar1 {
    transform: translate(0, 9px) rotate(-45deg);
    background-color: #000;
}

/* Fade out the second bar */
.change .bar2 {
    opacity: 0;
}

/* Rotate last bar */
.change .bar3 {
    transform: translate(0, -9px) rotate(45deg);
    background-color: #000;
}

/* Navigation Menu */
nav {
    display: none;
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background-color: #fff;
    padding: 80px 40px 40px;
    z-index: 999;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

nav.show {
    display: block;
    right: 0;
}

nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    margin-top: 60px;
}

nav ul li {
    width: 100%;
}

nav ul li a {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 15px 0;
    display: block;
    color: #000;
    border-bottom: 2px solid transparent;
}

nav ul li a:hover {
    color: #666;
    border-bottom: 2px solid #000;
}

/* Hero Section */
.hero {
    height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-container video {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

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

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    letter-spacing: 5px;
}

.hero p {
    font-size: 1.5rem;
    letter-spacing: 3px;
}

/* Hero Sign-Up Form */
.hero-signup {
    position: absolute;
    bottom: 120px;
    left: 20px;
    background-color: transparent;
    padding: 14px;
    border-radius: 0;
    max-width: 360px;
    z-index: 3;
}

.hero-signup-text {
    font-size: 0.18rem;
    margin-bottom: 6px;
    line-height: 1.2;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    display: block;
}

.hero-signup-form {
    display: flex;
    gap: 0;
    margin-bottom: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-signup-form input[type="email"] {
    flex: 1;
    padding: 10px 12px;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    background-color: transparent;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    border-radius: 0;
    outline: none;
}

.hero-signup-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.2px;
    font-size: 0.9rem;
}

.hero-signup-form input[type="email"]:focus {
    background-color: rgba(255, 255, 255, 0.05);
}

.hero-signup-btn {
    background-color: transparent;
    color: #fff;
    border: none;
    padding: 10px 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.hero-signup-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-consent {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    margin-top: 8px;
}

.hero-consent input[type="checkbox"] {
    margin-top: 1px;
    accent-color: #fff;
    transform: scale(0.9);
}

.hero-consent label {
    font-size: 0.8rem;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    white-space: nowrap;
}

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

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #f9f9f9 0%, #e8e8e8 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.8), transparent);
    pointer-events: none;
}

.about-intro {
    text-align: center;
    margin-bottom: 60px;
}

.about-intro p {
    font-size: 1.3rem;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    color: #333;
    line-height: 1.8;
}

.about-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.about-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.about-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.about-box:hover::before {
    left: 100%;
}

.about-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.about-box:hover .about-icon {
    background: linear-gradient(135deg, #333 0%, #555 100%);
    transform: scale(1.1) rotate(5deg);
}

.about-icon i {
    font-size: 2rem;
    color: #fff;
}

.about-box h3 {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #000;
}

.about-box p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service {
    background-color: #f9f9f9;
    padding: 30px;
    text-align: center;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

/* Roster Section */
.roster {
    background-color: #000;
    color: #fff;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.artist {
    text-align: center;
}

.artist-image {
    height: 300px;
    background-color: #333;
    margin-bottom: 20px;
    background-image: url('https://source.unsplash.com/random/300x300/?musician');
    background-size: cover;
    background-position: center;
    transition: all 0.3s ease;
}

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

.artist h3 {
    font-size: 1.3rem;
    letter-spacing: 1px;
}

/* Contact Section */
.contact {
    background-color: #f9f9f9;
    text-align: center;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-info a {
    color: #000;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    border-bottom: 2px solid #000;
}

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

.social-icon {
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #555;
}

/* Newsletter Section */
.newsletter {
    background-color: #000;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.newsletter-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

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

.newsletter-form input[type="email"] {
    width: 100%;
    padding: 15px;
    border: none;
    background-color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.sign-up-btn {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 15px 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.sign-up-btn:hover {
    background-color: #ddd;
}

.consent-group {
    display: flex;
    align-items: flex-start;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.consent-group input {
    margin-right: 10px;
    margin-top: 5px;
}

.consent-group label {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Instagram Feed Section */
.instagram-feed {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.instagram-header {
    text-align: right;
    margin-bottom: 40px;
}

.instagram-profile h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #000;
    letter-spacing: 1px;
}

.instagram-profile p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.verified {
    color: #1DA1F2;
    font-size: 1rem;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.instagram-post {
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.instagram-post:hover {
    transform: translateY(-5px);
}

.post-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-post:hover .post-overlay {
    opacity: 1;
}

.instagram-post:hover .post-image img {
    opacity: 0.8;
    filter: brightness(0.7);
}

.post-stats {
    display: flex;
    gap: 20px;
    align-self: flex-start;
}

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 600;
}

.stat i {
    font-size: 1.1rem;
}

.stat span {
    font-size: 1rem;
}

.post-description {
    align-self: flex-end;
    width: 100%;
}

.post-description p {
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    background-color: #000;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

/* Media Queries */
@media (max-width: 768px) {
    .topnav a.icon {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
    }
    
    header .container {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 15px;
    }
    
    .hamburger-menu {
        right: 20px;
    }
    
    nav {
        width: 300px;
        padding: 60px 30px 30px;
    }
    
    nav ul {
        gap: 25px;
        margin-top: 40px;
    }
    
    nav ul li a {
        font-size: 1.2rem;
    }
    
    .logo img {
        height: 60px;
        max-width: 180px;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .about-boxes {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .about-box {
        padding: 30px 25px;
    }
    
    .about-intro p {
        font-size: 1.1rem;
    }
    
    .about-icon {
        width: 70px;
        height: 70px;
    }
    
    .about-icon i {
        font-size: 1.8rem;
    }
    
    .about-box h3 {
        font-size: 1.2rem;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .post-image {
        height: 250px;
    }
    
    .instagram-profile h3 {
        font-size: 1.5rem;
    }
    
    .instagram-profile p {
        font-size: 1rem;
    }
    
    .newsletter-text {
        font-size: 1.1rem;
    }
    
    .sign-up-btn {
        padding: 12px 30px;
    }
    
    .consent-group {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .consent-group input {
        margin-bottom: 10px;
    }
    
    .hero-signup {
        bottom: 40px;
        left: 20px;
        max-width: 320px;
        padding: 12px;
    }
    
    .hero-signup-text {
        font-size: 0.3rem;
        margin-bottom: 6px;
    }
    
    .hero-signup-form {
        flex-direction: column;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .hero-signup-form input[type="email"] {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        padding: 8px 10px;
        font-size: 0.6rem;
    }
    
    .hero-signup-btn {
        width: 100%;
        font-size: 0.6rem;
        padding: 8px 10px;
    }
    
    .hero-consent label {
        font-size: 0.55rem;
    }
}

@media (min-width: 769px) {
    .topnav a.icon {
        display: none;
    }
    
    #main-nav {
        display: block;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    section h2 {
        font-size: 1.8rem;
    }
    
    .service h3, .artist h3 {
        font-size: 1.1rem;
    }
    
    .about-box {
        padding: 25px 20px;
    }
    
    .about-intro p {
        font-size: 1rem;
    }
    
    .about-icon {
        width: 60px;
        height: 60px;
    }
    
    .about-icon i {
        font-size: 1.5rem;
    }
    
    .about-box h3 {
        font-size: 1.1rem;
    }
    
    .about-box p {
        font-size: 0.9rem;
    }
    
    .instagram-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .post-image {
        height: 280px;
    }
    
    .instagram-profile h3 {
        font-size: 1.3rem;
    }
    
    .instagram-profile p {
        font-size: 0.9rem;
    }
    
    .post-description p {
        font-size: 0.8rem;
    }
} 