/* ==========================================
   DJ.GERI - NEON NIGHT DESIGN
   Modern Minimalism with Cyan & Magenta
   ========================================== */

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

:root {
    --bg-dark: #0a0e27;
    --bg-card: #1a1f3a;
    --text-white: #ffffff;
    --text-gray: #a0a0c0;
    --border-color: #404060;
    --cyan: #00ffff;
    --magenta: #ff00ff;
    --cyan-glow: 0 0 20px rgba(0, 255, 255, 0.8);
    --magenta-glow: 0 0 20px rgba(255, 0, 255, 0.8);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */

.text-cyan {
    color: var(--cyan);
    text-shadow: var(--cyan-glow);
}

.text-magenta {
    color: var(--magenta);
    text-shadow: var(--magenta-glow);
}

.text-white {
    color: var(--text-white);
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--cyan);
    color: var(--bg-dark);
    box-shadow: var(--cyan-glow);
}

.btn-primary:hover {
    background-color: #00e6e6;
    box-shadow: 0 0 30px rgba(0, 255, 255, 1);
    transform: scale(1.05);
}

.btn-outline {
    background-color: transparent;
    color: var(--cyan);
    border: 2px solid var(--cyan);
}

.btn-outline:hover {
    background-color: rgba(0, 255, 255, 0.1);
    box-shadow: var(--cyan-glow);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    background-color: transparent;
    color: var(--cyan);
    border: 1px solid var(--cyan);
}

.btn-small:hover {
    background-color: rgba(0, 255, 255, 0.1);
    box-shadow: var(--cyan-glow);
}

/* ==========================================
   NAVIGATION
   ========================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(10, 14, 39, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

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

.navbar-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.brand-dj {
    color: var(--cyan);
    text-shadow: var(--cyan-glow);
}

.brand-geri {
    color: var(--text-gray);
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.navbar-menu a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.navbar-menu a:hover {
    color: var(--cyan);
    text-shadow: var(--cyan-glow);
}

@media (max-width: 768px) {
    .navbar-menu {
        gap: 1rem;
        font-size: 0.8rem;
    }
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 39, 0.6);
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.neon-circles {
    position: relative;
    width: 250px;
    height: 250px;
}

.circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    animation: pulse 3s ease-in-out infinite;
}

.circle-1 {
    inset: 0;
    border-color: var(--cyan);
    box-shadow: var(--cyan-glow);
}

.circle-2 {
    inset: 30px;
    border-color: var(--magenta);
    box-shadow: var(--magenta-glow);
    animation-delay: 0.5s;
}

.circle-3 {
    inset: 60px;
    border-color: var(--cyan);
    box-shadow: var(--cyan-glow);
    animation-delay: 1s;
}

.music-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--cyan);
    text-shadow: var(--cyan-glow);
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }
}

/* ==========================================
   SECTIONS
   ========================================== */

section {
    padding: 5rem 0;
    border-top: 1px solid var(--border-color);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    border: 2px solid var(--cyan);
    box-shadow: var(--cyan-glow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 0, 255, 0.1) 100%);
    pointer-events: none;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-text h3 {
    font-size: 1.75rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.about-text p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.about-card {
    padding: 1.5rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.about-card:hover {
    border-color: var(--cyan);
    box-shadow: var(--cyan-glow);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
}

.about-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.about-card p {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
}

/* ==========================================
   SERVICES SECTION
   ========================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--magenta);
    box-shadow: var(--magenta-glow);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* ==========================================
   SCHEDULE SECTION
   ========================================== */

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.schedule-item {
    display: grid;
    grid-template-columns: 150px 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 1.5rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.schedule-item:hover {
    border-color: var(--cyan);
    box-shadow: var(--cyan-glow);
}

.schedule-date {
    color: var(--cyan);
    font-weight: 600;
    font-size: 0.9rem;
}

.schedule-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.schedule-info p {
    color: var(--text-gray);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .schedule-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    padding: 2rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--cyan);
    box-shadow: var(--cyan-glow);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--cyan);
}

.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 0.35rem;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: var(--cyan-glow);
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    background-color: rgba(10, 14, 39, 0.5);
    text-align: center;
}

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

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--cyan);
    text-shadow: var(--cyan-glow);
}

/* ==========================================
   ANIMATIONS
   ========================================== */

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    section {
        padding: 3rem 0;
    }
}

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .schedule-item {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   SERVICE & EVENT PAGES
   ========================================== */

.page-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 80px;
}

.page-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.back-link {
    display: inline-block;
    color: var(--cyan);
    text-decoration: none;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--magenta);
    text-shadow: var(--magenta-glow);
}

.service-detail,
.event-detail,
.booking-section {
    padding: 3rem 0;
}

.service-detail-content,
.event-detail-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.service-detail-main,
.event-detail-main,
.booking-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-detail-main h3,
.event-detail-main h3,
.booking-form-wrapper h3 {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-top: 1rem;
}

.service-features,
.equipment-list,
.program-list,
.event-features,
.price-list,
.services-list,
.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-features li,
.equipment-list li,
.program-list li,
.event-features li,
.price-list li,
.services-list li,
.why-list li {
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.service-features li:before,
.equipment-list li:before,
.program-list li:before,
.event-features li:before,
.price-list li:before,
.services-list li:before,
.why-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--cyan);
    font-weight: bold;
}

.package-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1rem 0;
}

.package-item {
    padding: 1.5rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.package-item:hover {
    border-color: var(--cyan);
    box-shadow: var(--cyan-glow);
}

.package-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--cyan);
}

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

.service-detail-sidebar,
.event-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-box {
    padding: 1.5rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.info-box:hover {
    border-color: var(--magenta);
    box-shadow: var(--magenta-glow);
}

.info-box h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.info-box p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.info-text {
    margin-top: 1rem;
    font-style: italic;
}

.price-text {
    font-size: 1.2rem;
    color: var(--cyan);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.share-buttons,
.other-events {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.other-events li {
    list-style: none;
}

.other-events a {
    color: var(--cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.other-events a:hover {
    color: var(--magenta);
    text-shadow: var(--magenta-glow);
}

.event-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.event-info-item {
    padding: 1rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    text-align: center;
}

.event-info-item h4 {
    color: var(--cyan);
    margin-bottom: 0.5rem;
}

.event-info-item p {
    color: var(--text-white);
    font-size: 0.95rem;
}

/* ==========================================
   BOOKING FORM
   ========================================== */

.booking-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.booking-form-wrapper {
    padding: 2rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
}

.booking-form-wrapper h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.booking-form-wrapper h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.booking-form select {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 0.35rem;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.booking-form select:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: var(--cyan-glow);
}

.booking-form select option {
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.booking-info h2 {
    font-size: 1.5rem;
}

@media (max-width: 1024px) {
    .service-detail-content,
    .event-detail-content,
    .booking-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-title {
        margin-top: 60px;
    }

    .package-details {
        grid-template-columns: 1fr;
    }

    .event-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .navbar-brand {
        font-size: 1.2rem;
    }

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