/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #333, #555);
    color: #fff;
    border: 1px solid #666;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #555, #777);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #666, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #666;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #666, #888);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #ccc;
    transform: scale(1.1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--hero-bg-image, url('/hero-bg.jpg?v=4')) center/cover;
    opacity: 0.7;
    z-index: 2;
    filter: brightness(0.8) contrast(1.2) saturate(0.3) grayscale(0.4);
    animation: heroZoom 30s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.03);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5), rgba(0,0,0,0.3));
    z-index: 3;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    animation: fadeInUp 1s ease;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}



/* Quick Info Section */
.quick-info {
    padding: 5rem 0;
    background: #000;
}

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

.info-item {
    text-align: center;
    padding: 2rem;
}

.info-icon {
    font-size: 3rem;
    color: #666;
    margin-bottom: 1rem;
}

.info-item h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.info-item p {
    color: #ccc;
}

/* Footer */
.footer {
    background: #111;
    padding: 3rem 0 1rem;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-section h3,
.footer-section h4 {
    margin: 0 0 1rem 0;
    padding: 0;
    color: #666;
    line-height: 1.2;
}

.footer-section p {
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
}

.footer-section a:hover {
    color: #666;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #666;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-list {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1.5rem;
        z-index: 999;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
    }
    
    .nav-list.active {
        display: flex;
        transform: translateY(0);
    }
    
    .nav-list li {
        margin: 0.5rem 0;
    }
    
    .nav-list a {
        font-size: 1.1rem;
        padding: 0.75rem;
        display: block;
        text-align: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Contact form mobile styling */
    .contact-form {
        padding: 25px 1px;
        margin: 0 10px;
        border-radius: 15px;
    }
    
    .contact-form-section {
        padding: 2rem 0;
    }
    
    .contact-form-section .container {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Page specific styles */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-content {
    padding: 4rem 0;
}

/* Form styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #fff;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #333;
    border-radius: 5px;
    background: #111;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #666;
}

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

/* Event list styles */
.event-list {
    background: #111;
    border-radius: 10px;
    overflow: hidden;
}

.event-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #333;
    transition: background 0.3s ease;
}

.event-item:hover {
    background: #1a1a1a;
}

.event-item:last-child {
    border-bottom: none;
}

.event-date {
    font-weight: 600;
    color: #666;
    min-width: 100px;
}

.event-info {
    flex: 1;
    margin: 0 2rem;
}

.event-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.event-location {
    color: #ccc;
    font-size: 0.9rem;
}

.event-btn {
    font-size: 0.9rem;
    padding: 8px 16px;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.event-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Admin styles */
.admin-header {
    background: #111;
    padding: 1rem 0;
    border-bottom: 1px solid #333;
}

.admin-nav {
    display: flex;
    gap: 2rem;
}

.admin-nav a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.admin-nav a:hover,
.admin-nav a.active {
    background: #666;
}

.admin-content {
    padding: 2rem 0;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: #111;
    border-radius: 10px;
    overflow: hidden;
}

.admin-table th,
.admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #333;
}

.admin-table th {
    background: #1a1a1a;
    font-weight: 600;
    color: #666;
}

.admin-table tr:hover {
    background: #1a1a1a;
}

.admin-actions {
    display: flex;
    gap: 0.5rem;
}

.admin-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.admin-btn-edit {
    background: #666;
    color: #fff;
}

.admin-btn-delete {
    background: #dc3545;
    color: #fff;
}

.admin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* About page styles */
.about-grid {
    display: grid;
    gap: 3rem;
}

.about-info {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid #333;
}

.dj-photo {
    text-align: center;
}

.profile-image {
    width: 100%;
    max-width: 350px;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    filter: contrast(1.1) brightness(1.05);
}

.about-text h2 {
    margin-bottom: 1rem;
    color: #666;
}

.intro-text,
.experience-text {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #ccc;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #111;
    border-radius: 10px;
    border: 1px solid #333;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #666;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #ccc;
    font-size: 0.9rem;
}

/* References section */
.references-section {
    padding: 4rem 0;
    background: #111;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #fff, #666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.reference-category h3 {
    margin-bottom: 2rem;
    color: #666;
    font-size: 1.5rem;
}

.reference-category h3 i {
    margin-right: 0.5rem;
}

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

.reference-item {
    background: #1a1a1a;
    padding: 1.25rem;
    border-radius: 15px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.reference-item:hover {
    transform: translateY(-5px);
    border-color: #666;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: #222;
}

.reference-logo {
    width: 90px;
    height: 90px;
    background: linear-gradient(45deg, #333, #555);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.reference-logo img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 12px;
    background: #fff;
    padding: 1px;
    box-sizing: border-box;
}

/* SVG logos should have same styling as other logos */
.reference-logo img[src*=".svg"] {
    background: #fff;
    padding: 1px;
}

.reference-logo i {
    font-size: 1.5rem;
    color: #fff;
}

.reference-content h4 {
    margin-bottom: 0.5rem;
    color: #fff;
    font-size: 1.2rem;
}

.reference-content p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.reference-name {
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.reference-description {
    color: #ccc;
    font-size: 0.9rem;
}

/* Services section */
.services-section {
    padding: 4rem 0;
    background: #000;
}

/* Booking Section Styling */
.booking-section {
    padding: 4rem 0;
    background: #0a0a0a;
}

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

.booking-intro {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 500;
}

.booking-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-list li {
    background: #1a1a1a;
    padding: 1rem 2rem;
    border-radius: 8px;
    border: 1px solid #333;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.booking-list li:hover {
    background: #222;
    border-color: #555;
    transform: translateX(10px);
}

/* Booking Admin Styling */
.booking-item {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.booking-item-content {
    flex: 1;
}

.booking-item-text {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
}

.booking-item-order {
    color: #888;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.booking-item-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-move {
    background: #333;
    color: #fff;
    border: none;
    padding: 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-move:hover {
    background: #555;
}

.btn-move:disabled {
    background: #222;
    color: #666;
    cursor: not-allowed;
}

.btn-delete {
    background: #d32f2f;
    color: #fff;
    border: none;
    padding: 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-delete:hover {
    background: #b71c1c;
}

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

.service-item {
    text-align: center;
    padding: 2rem;
    background: #111;
    border-radius: 10px;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    border-color: #666;
}

.service-icon {
    font-size: 3rem;
    color: #666;
    margin-bottom: 1rem;
}

.service-item h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.service-item p {
    color: #ccc;
    line-height: 1.6;
}

/* Contact page styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-section h2,
.contact-info-section h2 {
    margin-bottom: 2rem;
    color: #666;
}

.contact-form {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid #333;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: #000;
    border: 2px solid #333;
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #666;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
    transform: translateY(-2px);
}

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

.contact-form .btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(45deg, #666, #888);
    border: none;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.contact-form .btn:hover {
    background: linear-gradient(45deg, #777, #ff7b3a);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    margin-bottom: 25px;
    border-radius: 10px;
    font-weight: 500;
    text-align: center;
}

.alert-success {
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: #fff;
    border: 1px solid #4CAF50;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.alert-error {
    background: linear-gradient(45deg, #f44336, #da190b);
    color: #fff;
    border: 1px solid #f44336;
    box-shadow: 0 5px 15px rgba(244, 67, 54, 0.3);
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 15px;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: #666;
}

.contact-icon {
    font-size: 2rem;
    color: #666;
    margin-right: 1.5rem;
    min-width: 50px;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    color: #fff;
}

.contact-details p {
    color: #ccc;
    margin: 0;
}

.contact-details a {
    color: #666;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-description {
    background: #111;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #333;
    margin-bottom: 2rem;
}

.contact-description p {
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

.social-contact h3 {
    margin-bottom: 1rem;
    color: #666;
}

/* FAQ section */
.faq-section {
    padding: 4rem 0;
    background: #111;
}

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

.faq-item {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333;
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: #666;
}

.faq-item p {
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

/* Tour page styles */
.no-events {
    text-align: center;
    padding: 4rem 2rem;
    background: #111;
    border-radius: 10px;
    border: 1px solid #333;
}

.no-events-icon {
    font-size: 4rem;
    color: #666;
    margin-bottom: 1rem;
}

.no-events h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.no-events p {
    color: #ccc;
    margin-bottom: 2rem;
}

.completed-events {
    padding: 4rem 0;
    background: #111;
}

.completed-list .event-item {
    opacity: 0.7;
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    padding: 0.75rem 0.5rem;
    background: #111;
    border-radius: 8px;
    text-align: center;
    border-left: 3px solid #333;
    margin-right: 1rem;
}

.date-day {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.date-month {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 0.2rem;
    letter-spacing: 0.5px;
}

.date-year {
    font-size: 0.65rem;
    color: #666;
    margin-top: 0.2rem;
}

.date-time {
    font-size: 0.65rem;
    color: #888;
    margin-top: 0.2rem;
}

.event-description {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.event-status {
    color: #28a745;
    font-weight: 500;
}

.event-status i {
    margin-right: 0.5rem;
}

.booking-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 1rem;
    color: #fff;
}

.cta-content p {
    margin-bottom: 2rem;
    color: #ccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Message styles */
.message {
    padding: 1rem 1.5rem;
    border-radius: 5px;
    margin-bottom: 2rem;
    font-weight: 500;
}

.message-success {
    background: #28a745;
    color: #fff;
    border: 1px solid #1e7e34;
}

.message-error {
    background: #dc3545;
    color: #fff;
    border: 1px solid #c82333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-info {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .references-grid {
        grid-template-columns: 1fr;
    }
    
    .reference-logo {
        width: 75px;
        height: 75px;
    }
    
    .reference-logo img {
        width: 63px;
        height: 63px;
        padding: 1px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .event-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 1rem;
    }
    
    .event-date {
        flex-direction: row;
        min-width: auto;
        padding: 0.5rem;
        background: transparent;
        border-left: none;
        margin-right: 0;
        margin-bottom: 1rem;
        gap: 0.5rem;
    }
    
    .date-day,
    .date-month,
    .date-year,
    .date-time {
        font-size: 0.8rem;
        margin-top: 0;
        color: #888;
    }
    
    .date-day {
        font-weight: 600;
        color: #fff;
    }
    
    .date-month {
        color: #666;
    }
    
    .date-year {
        color: #666;
    }
    
    .date-time {
        color: #888;
    }
    
    .event-info {
        margin: 0;
        flex: 1;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background: #000;
    min-height: 100vh;
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.gallery-header p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #1a1a1a;
    border: 1px solid #333;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border-color: #007bff;
}

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

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 2rem;
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-info p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.4;
}

.gallery-zoom {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0,0,0,0.7);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
}

.lightbox-close:hover {
    color: #007bff;
}

.lightbox-image-container {
    max-width: 90%;
    max-height: 70%;
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.lightbox-info {
    text-align: center;
    color: #fff;
    max-width: 600px;
    margin-bottom: 2rem;
}

.lightbox-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.lightbox-info p {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.6;
}

.lightbox-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: #fff;
}

.lightbox-nav-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.lightbox-nav-btn:hover {
    background: rgba(255,255,255,0.2);
    border-color: #007bff;
    transform: scale(1.05);
}

.lightbox-counter {
    font-size: 1.1rem;
    font-weight: 500;
    min-width: 80px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .gallery-image {
        height: 250px;
    }
    
    .gallery-header h1 {
        font-size: 2.5rem;
    }
    
    .gallery-header p {
        font-size: 1rem;
    }
    
    .lightbox-content {
        padding: 1rem;
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-image-container {
        max-width: 95%;
        max-height: 60%;
    }
    
    .lightbox-info h3 {
        font-size: 1.5rem;
    }
    
    .lightbox-info p {
        font-size: 1rem;
    }
    
    .lightbox-nav {
        gap: 1rem;
    }
    
    .lightbox-nav-btn {
        padding: 0.8rem 1.2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 3rem 0;
    }
    
    .gallery-header {
        margin-bottom: 2rem;
    }
    
    .gallery-header h1 {
        font-size: 2rem;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .gallery-overlay {
        padding: 1.5rem;
    }
    
    .gallery-info h3 {
        font-size: 1.2rem;
    }
    
    .gallery-info p {
        font-size: 0.9rem;
    }
    
    /* Contact form small mobile styling */
    .contact-form {
        padding: 20px 15px;
        margin: 0 5px;
        border-radius: 12px;
    }
    
    .contact-form-section .container {
        padding: 0 5px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 0.95rem;
    }
}
