/* Base z-index structure */
body {
    position: relative;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

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

.hero-content {
    height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content .container {
    text-align: center;
    max-width: 700px;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: transparent;
    border: 2px solid white;
    border-radius: 0;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: none;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: transparent;
    border: 2px solid transparent;
    z-index: -1;
    transition: all 0.4s ease;
}

.cta-button:hover {
    color: white;
    border-color: transparent;
    box-shadow: 0 0 15px rgba(184, 41, 232, 0.3);
}

.cta-button:hover::before {
    border-top-color: var(--primary-purple);
    border-right-color: var(--primary-blue);
    border-bottom-color: var(--primary-purple);
    border-left-color: var(--primary-blue);
    animation: rotateBorder 2s linear infinite;
    opacity: 1;
}

@keyframes rotateBorder {
    0% {
        border-top-color: var(--primary-purple);
        border-right-color: var(--primary-blue);
        border-bottom-color: var(--primary-purple);
        border-left-color: var(--primary-blue);
    }
    25% {
        border-top-color: var(--primary-blue);
        border-right-color: var(--primary-purple);
        border-bottom-color: var(--primary-blue);
        border-left-color: var(--primary-purple);
    }
    50% {
        border-top-color: var(--primary-purple);
        border-right-color: var(--primary-blue);
        border-bottom-color: var(--primary-purple);
        border-left-color: var(--primary-blue);
    }
    75% {
        border-top-color: var(--primary-blue);
        border-right-color: var(--primary-purple);
        border-bottom-color: var(--primary-blue);
        border-left-color: var(--primary-purple);
    }
    100% {
        border-top-color: var(--primary-purple);
        border-right-color: var(--primary-blue);
        border-bottom-color: var(--primary-purple);
        border-left-color: var(--primary-blue);
    }
}

/* Adjust for mobile */
@media (max-width: 768px) {
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* About Section */
.about {
    position: relative;
    padding: 8rem 0;
    background: var(--dark-bg);
    z-index: 1;
}

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

.about-text {
    padding-right: 2rem;
}

.about-text .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 2;
    font-family: 'Amsterdam Four', cursive;
    color: var(--primary-purple);
    display: inline-block;
    letter-spacing: 2px;
    padding: 0.3em 0.7em;
    text-shadow: 
        0 0 5px rgba(184, 41, 232, 0.5),
        0 0 10px rgba(41, 182, 232, 0.5);
    background: linear-gradient(45deg, var(--primary-purple), var(--primary-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text .section-title::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-purple), var(--primary-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 2;
}

.about-text .tagline {
    font-size: 1.5rem;
    color: var(--accent-red);
    margin-bottom: 2rem;
    font-weight: 600;
}

.about-text .description {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Fix for Watch Promo Button */
.watch-promo-btn {
    position: relative !important;
    z-index: 100 !important;
    pointer-events: auto !important;
    display: inline-block !important;
    cursor: pointer !important;
}

.watch-promo-btn::before {
    pointer-events: none !important;
}

/* About image styling */
.about-image .image-container {
    width: 100%;
    height: 500px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transform: skewY(-5deg);
    transition: transform 0.3s ease;
}

.about-image .image-container:hover {
    transform: skewY(-5deg) scale(1.02);
}

.about-image .image-container .about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 20px;
}

@media (max-width: 968px) {
    .about-image .image-container {
        height: 400px;
        transform: skewY(0);
    }
    
    .about-image .image-container:hover {
        transform: skewY(0) scale(1.02);
    }
}

/* Details Section */
.about-details {
    padding: 6rem 0;
    background: linear-gradient(rgba(18, 3, 24, 0.7), rgba(18, 3, 24, 0.97));
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
}

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

.detail-card {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: white;
    border: 1px solid rgba(184, 41, 232, 0.2);
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(184, 41, 232, 0.2);
}

.detail-card h3 {
    font-size: 1.8rem;
    color: var(--header-color);
    margin-bottom: 1rem;
}

.detail-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Styles */
@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-text {
        padding-right: 0;
        text-align: center;
    }

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

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .about {
        padding: 4rem 0;
    }

    .about-details {
        padding: 4rem 0;
    }

    .detail-card {
        text-align: center;
    }
}

/* Reference hero styles from _oldstyle.css */ 

/* Parallax styling */
.parallax-section {
    height: 100vh;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
}

.parallax {
    height: 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-content {
    text-align: center;
    color: white;
    padding: 2rem;
    /*background-color: rgba(0, 0, 0, 0.4);*/
    border-radius: 8px;
}

.parallax-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .parallax-content h2 {
        font-size: 2.5rem;
    }
    
    .parallax-content {
        padding: 1.5rem 2rem;
    }
}

/* Contact and Gallery sections */
.contact, .gallery {
    position: relative;
    background: var(--dark-bg);
    z-index: 1;
}

/* Gallery Styles */
.gallery {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--header-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.gallery-item {
    height: 300px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
    cursor: pointer;
}

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

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

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

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

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

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.lightbox-prev, .lightbox-next {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 20px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(184, 41, 232, 0.7);
}

/* Gallery Responsive Styles */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery {
        padding: 4rem 0;
    }
    
    .gallery h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-item {
        height: 300px;
    }
}

/* Contact Section Styling */
.contact {
    position: relative;
    background: var(--dark-bg);
    padding: 4rem 0;
}

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

.contact-container {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
    font-size: 1rem;
}

.contact-form-container {
    flex: 1;
}

.contact h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--header-color);
}

.contact-description {
    margin-bottom: 1.5rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.contact-details {
    margin-top: 1.5rem;
}

.contact-detail {
    margin-bottom: 0.75rem;
}

.contact-label {
    font-weight: bold;
    color: var(--primary-purple);
    margin-right: 0.5rem;
}

.contact-detail a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: var(--primary-blue);
}

/* Contact Form 7 styling - slimmer version */
.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
    padding: 0.75rem;
    border: 2px solid rgba(184, 41, 232, 0.3);
    border-radius: 8px;
    background: rgba(18, 3, 24, 0.7);
    color: white;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    width: 100%;
}

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

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 10px rgba(184, 41, 232, 0.3);
}

.wpcf7-form input[type="submit"] {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid white;
    border-radius: 0;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: none;
    cursor: pointer;
    align-self: flex-start;
}

.wpcf7-form input[type="submit"]::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: transparent;
    border: 2px solid transparent;
    z-index: -1;
    transition: all 0.4s ease;
}

.wpcf7-form input[type="submit"]:hover {
    color: white;
    border-color: transparent;
    box-shadow: 0 0 15px rgba(184, 41, 232, 0.3);
}

.wpcf7-form input[type="submit"]:hover::before {
    border-top-color: var(--primary-purple);
    border-right-color: var(--primary-blue);
    border-bottom-color: var(--primary-purple);
    border-left-color: var(--primary-blue);
    animation: rotateBorder 2s linear infinite;
    opacity: 1;
}

/* Responsive styles for contact section */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .contact-info, .contact-form-container {
        width: 100%;
    }
    
    .contact h2 {
        text-align: center;
    }
    
    .contact-description {
        text-align: center;
    }
    
    .contact-details {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .wpcf7-form input[type="submit"] {
        align-self: center;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 4rem 0;
    }
    
    .contact h2 {
        font-size: 2rem;
    }
}

/* Reviews Section Styling */
.reviews {
    position: relative;
    background: linear-gradient(rgba(18, 3, 24, 0.9), rgba(18, 3, 24, 0.9));
    padding: 6rem 0;
    z-index: 1; /* Ensure it appears above the parallax background */
    font-size:14px;
}

.reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--header-color);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(184, 41, 232, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(184, 41, 232, 0.2);
}

.review-stars {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.review-author {
    color: var(--primary-purple);
    font-weight: 500;
}

/* Responsive styles for reviews section */
@media (max-width: 768px) {
    .reviews {
        padding: 4rem 0;
    }
    
    .reviews h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* Extra small screen fixes */
@media (max-width: 320px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        padding-right: 0;
        padding-left: 0;
    }

    .logo .neon-text{
        font-size: 1rem;
    }
    
    .about-image .image-container {
        width: 100%;
        height: 300px;
        transform: none;
        margin: 0 auto;
        max-width: 280px; /* Ensure it fits within smallest screens */
    }
    
    .about-image .image-container:hover {
        transform: scale(1.02);
    }
    
    .about-text .section-title {
        font-size: 2rem;
        word-wrap: break-word;
    }
    
    .about-text .tagline {
        font-size: 1.2rem;
    }

    /* New details section fixes for extra small screens */
    .about-details {
        padding: 3rem 0;
    }
    
    .details-grid {
        gap: 1.5rem;
    }
    
    .detail-card {
        padding: 1.5rem;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .detail-card h3 {
        font-size: 1.5rem;
    }
    
    .detail-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* Social Media Icons */
.contact-social {
    margin-top: 1rem;
    display: flex;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-left: 0.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(184, 41, 232, 0.1);
    color: var(--primary-purple);
    transition: all 0.3s ease;
    border: 1px solid rgba(184, 41, 232, 0.3);
}

.social-icon:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(184, 41, 232, 0.4);
}

/* Responsive adjustments for social icons */
@media (max-width: 768px) {
    .contact-social {
        justify-content: center;
        margin-top: 1.5rem;
    }
    
    .social-icons {
        justify-content: center;
    }
}



