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

:root {
    --primary-red: #c41e3a;
    --dark-bg: #0a0a0a;
    --darker-bg: #000000;
    --light-text: #ffffff;
    --gray-text: #cccccc;
    --section-bg: #1a1a1a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Arial', 'Helvetica', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
}

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

/* Header */
.main-header {
    background-color: var(--darker-bg);
    padding: 25px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-red);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header-content {
    max-width: 100%;
    margin: 0;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo a {
    color: var(--light-text);
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 2px;
    background-color: var(--primary-red);
    padding: 12px 25px;
    display: inline-block;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary-red);
}

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

.social-links a {
    color: var(--light-text);
    font-size: 1.1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--primary-red);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

/* Hero Section */
.hero {
    min-height: 200vh;
    padding: 0;
    background: url('../images/bg_main.jpg');
    background-size: cover;
    background-position: center top;
    background-attachment: scroll;
}

.hero-top {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 140px 40px 80px 400px;
}

.featured-single {
    max-width: 600px;
    text-align: left;
}

.label {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 10px;
    animation: fadeInUp 1s ease-out 0.1s both;
}

.single-title {
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--primary-red) 0%, #ff4d6d 50%, #e01e37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.single-cover {
    position: relative;
    max-width: 480px;
    cursor: pointer;
    animation: fadeInUp 1s ease-out 0.5s both;
    display: block;
    text-decoration: none;
}

.single-cover img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(196, 30, 58, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.single-cover:hover img {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 60px rgba(196, 30, 58, 0.6);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: var(--light-text);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.single-cover:hover .play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
    text-shadow: 0 0 20px rgba(196, 30, 58, 0.8);
}

.hero-bottom {
    width: 100%;
    padding: 200px 0 0 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.instagram-header {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-out 0.8s both;
}

.instagram-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 4px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #ff4d6d 50%, #e01e37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.instagram-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    animation: lineExpand 1s ease-out 1.3s both;
}

.collage-image {
    width: 100%;
    height: auto;
    display: block;
    animation: fadeIn 1.2s ease-out;
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes lineExpand {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

/* Fixed Twin Angel Logo */
.fixed-logo {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    max-width: 150px;
    animation: fadeIn 1s ease-out 0.8s both;
}

.fixed-logo img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.fixed-logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 15px rgba(196, 30, 58, 0.4));
}

.hero-image {
    width: 100%;
    max-width: 500px;
}

.artist-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

/* Placeholder Images */
.placeholder-image {
    background: linear-gradient(135deg, var(--section-bg) 0%, #2a2a2a 100%);
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 2px solid #333;
}

.placeholder-image.large {
    aspect-ratio: 3/4;
}

.placeholder-image i {
    font-size: 4rem;
    color: var(--gray-text);
    margin-bottom: 15px;
}

.placeholder-image p {
    color: var(--gray-text);
    font-size: 1rem;
}

/* Section Titles */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 3px;
    color: var(--primary-red);
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--primary-red);
}

/* Instagram Section */
.instagram-section {
    padding: 80px 40px;
    background-color: var(--dark-bg);
}

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

.instagram-item {
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.instagram-item:hover {
    transform: scale(1.05);
}

.instagram-item .placeholder-image {
    aspect-ratio: 1;
}

.instagram-item .placeholder-image i {
    font-size: 3rem;
}

/* Media Section */
.media-section {
    padding: 80px 40px;
    background-color: var(--section-bg);
}

.media-subtitle {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--light-text);
    margin-bottom: 30px;
    text-align: center;
}

/* Listen Section */
.listen-section {
    margin-bottom: 60px;
}

.listen-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.listen-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #333;
    border-radius: 12px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out both;
}

.listen-card:nth-child(1) { animation-delay: 0.1s; }
.listen-card:nth-child(2) { animation-delay: 0.2s; }

.listen-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-red);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.3);
}

.track-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.play-button {
    font-size: 2.5rem;
    color: var(--primary-red);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.listen-card:hover .play-button {
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(196, 30, 58, 0.8);
}

.track-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--light-text);
    letter-spacing: 0.5px;
}

.music-links {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.music-link {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.music-link.amazon {
    background: linear-gradient(135deg, #232F3E 0%, #37475A 100%);
    color: #FF9900;
    border: 2px solid transparent;
}

.music-link.amazon:hover {
    background: #FF9900;
    color: #232F3E;
    border-color: #FF9900;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.4);
}

.music-link.apple {
    background: linear-gradient(135deg, #FC3C44 0%, #FF5B60 100%);
    color: #ffffff;
    border: 2px solid transparent;
}

.music-link.apple:hover {
    background: #ffffff;
    color: #FC3C44;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(252, 60, 68, 0.4);
}

/* Watch Section */
.watch-section {
    margin-top: 60px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: fadeInUp 0.8s ease-out both;
}

.video-item:nth-child(1) { animation-delay: 0.3s; }
.video-item:nth-child(2) { animation-delay: 0.4s; }
.video-item:nth-child(3) { animation-delay: 0.5s; }
.video-item:nth-child(4) { animation-delay: 0.6s; }

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(196, 30, 58, 0.4);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.video-item .video-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light-text);
    text-align: center;
    letter-spacing: 0.5px;
}

/* Bio Section */
.bio-section {
    padding: 80px 40px;
    background-color: var(--dark-bg);
}

.bio-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.bio-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 20px;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 40px;
    background-color: var(--section-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 1;
    animation: fadeInUp 0.8s ease-out both;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.9) 0%, rgba(160, 24, 40, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    color: var(--light-text);
    transform: scale(0.5);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Live Section */
.live-section {
    padding: 80px 40px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('../images/bg_live.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.event-info {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 8px;
    border: 2px solid var(--primary-red);
}

.event-info p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 15px;
}

.event-info p strong {
    color: var(--light-text);
}

.thank-you {
    margin-top: 30px;
    font-style: italic;
    color: var(--light-text);
}

/* Contact Section */
.contact-section {
    padding: 80px 40px;
    background-color: var(--section-bg);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    position: relative;
    margin-bottom: 35px;
}

.form-group label {
    position: absolute;
    top: 18px;
    left: 20px;
    font-size: 1rem;
    color: var(--gray-text);
    pointer-events: none;
    transition: all 0.3s ease;
    background-color: var(--section-bg);
    padding: 0 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    background-color: transparent;
    border: 2px solid #333;
    border-radius: 8px;
    color: var(--light-text);
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* Override browser autofill styles */
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--light-text);
    -webkit-box-shadow: 0 0 0 1000px var(--section-bg) inset;
    box-shadow: 0 0 0 1000px var(--section-bg) inset;
    transition: background-color 5000s ease-in-out 0s;
    border: 2px solid #333;
}

.form-group input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px rgba(196, 30, 58, 0.05) inset;
    box-shadow: 0 0 0 1000px rgba(196, 30, 58, 0.05) inset;
    border: 2px solid var(--primary-red);
}

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

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -10px;
    left: 15px;
    font-size: 0.85rem;
    color: var(--primary-red);
    font-weight: 600;
}

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

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 250px;
    margin: 40px auto 0;
    padding: 18px 30px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #a01828 100%);
    color: var(--light-text);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.5);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn i {
    font-size: 1.1rem;
}

/* Footer */
.main-footer {
    background-color: var(--darker-bg);
    padding: 30px 40px;
    text-align: center;
    border-top: 2px solid var(--primary-red);
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .header-content {
        flex-direction: column;
        gap: 25px;
    }

    .main-nav {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-top {
        justify-content: center;
        padding: 140px 20px 80px;
    }

    .featured-single {
        text-align: center;
        max-width: 100%;
    }

    .single-cover {
        margin: 0 auto;
        max-width: 400px;
    }

    .listen-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .instagram-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .single-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 20px 0;
    }

    .hero {
        background-attachment: scroll;
    }

    .hero-top {
        padding: 120px 20px 60px;
    }

    .single-cover {
        max-width: 300px;
    }

    .instagram-title {
        font-size: 2rem;
    }

    .media-subtitle {
        font-size: 1.6rem;
    }

    .listen-card {
        padding: 20px 25px;
    }

    .play-button {
        font-size: 2.2rem;
    }

    .track-name {
        font-size: 0.95rem;
    }

    .music-link {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }

    .video-grid {
        gap: 25px;
    }

    .gallery-grid {
        gap: 20px;
    }

    .fixed-logo {
        max-width: 100px;
        bottom: 20px;
        left: 20px;
    }

    .instagram-section,
    .media-section,
    .bio-section,
    .live-section,
    .contact-section {
        padding: 60px 20px;
    }

    .main-nav {
        gap: 15px;
    }

    .main-nav a {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .single-title {
        font-size: 1.5rem;
    }

    .single-cover {
        max-width: 400px;
    }

    .instagram-title {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }

    .instagram-header {
        margin-bottom: 30px;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .logo a {
        font-size: 1.1rem;
        padding: 10px 18px;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .single-cover {
        max-width: 280px;
    }

    .instagram-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .instagram-header {
        margin-bottom: 25px;
    }

    .media-subtitle {
        font-size: 1.4rem;
    }

    .listen-card {
        padding: 18px 20px;
        flex-wrap: wrap;
    }

    .track-info {
        gap: 12px;
    }

    .play-button {
        font-size: 2rem;
    }

    .track-name {
        font-size: 0.9rem;
    }

    .music-link {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .video-grid {
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-overlay i {
        font-size: 2.5rem;
    }

    .video-item .video-title {
        font-size: 1rem;
    }

    .fixed-logo {
        max-width: 80px;
        bottom: 15px;
        left: 15px;
    }

    .collage-image {
        max-width: 100%;
    }
}

/* ===========================
   Lightbox Gallery
   =========================== */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    color: var(--primary-red);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(196, 30, 58, 0.8);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10001;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-red);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 2.5rem;
        width: 40px;
        height: 40px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }

    .lightbox-content {
        max-width: 95%;
    }
}
