/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(35, 25, 66, 0.85) 0%, rgba(68, 50, 124, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
}

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

.hero-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    background: var(--gradient-neon-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-pink);
    line-height: 1;
    display: block;
}

.stat-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-top: 0.5rem;
    display: block;
}

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

/* Remove the placeholder styling */
.hero-image-placeholder {
    display: none;
}

/* Add floating stats over the image */
.hero-image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(35, 25, 66, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.image-stats {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.image-stat {
    text-align: center;
    flex: 1;
}

.image-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
}

.image-stat-text {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

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

.btn-primary-large {
    background: var(--gradient-neon-orange);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: var(--shadow-medium);
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--surface-lighter);
    border-color: var(--accent-purple);
    color: var(--accent-purple);
    transform: translateY(-2px);
}

/* What is GameSpace Section */
.what-is-gamespace {
    padding: 5rem 0;
    background: var(--surface);
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.features-showcase {
    display: grid;
    gap: 3rem;
}

.feature-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--surface-light);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-dark);
}

.feature-content h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

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

.feature-card {
    background: var(--surface-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-dark);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--border-light);
}

.feature-card h4 {
    color: var(--accent-purple);
    font-size: 1.25rem;
    margin: 1rem 0 0.75rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
}

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

.feature-image:hover img {
    transform: scale(1.05);
    opacity: 1;
}

.feature-large .feature-image {
    height: 300px;
}

.feature-card .feature-image {
    height: 200px;
    margin-bottom: 1.5rem;
}

/* Games Section */
.games-section {
    padding: 6rem 0;
    background: var(--dark-gray);
}

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

.game-category {
    background: var(--surface-light);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.game-category.featured {
    border-color: var(--accent-purple);
    background: linear-gradient(135deg, var(--surface-light) 0%, rgba(108, 92, 231, 0.05) 100%);
}

.game-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--border-light);
}

.game-category.featured:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.2);
}

.game-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.game-category h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.game-category.featured h3 {
    color: var(--accent-purple);
}

.game-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.game-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.game-tag {
    background: var(--surface);
    color: var(--text-secondary);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--border-dark);
    transition: all 0.3s ease;
}

.game-category.featured .game-tag {
    background: rgba(108, 92, 231, 0.1);
    border-color: rgba(108, 92, 231, 0.3);
    color: var(--accent-purple);
}

.game-tag:hover {
    transform: translateY(-1px);
    background: var(--surface-lighter);
}

.game-stats {
    border-top: 1px solid var(--border-dark);
    padding-top: 1.5rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.stat-value {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Games Highlight Section */
.games-highlight {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.games-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    pointer-events: none;
}

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

.highlight-content h3 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.highlight-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-item span:last-child {
    color: var(--white);
    font-weight: 600;
}

/* Package Selection */
.package-selection {
    padding: 5rem 0;
    background: var(--dark-gray);
}

.packages-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.package-card {
    background: var(--surface-light);
    border: 2px solid var(--border-dark);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.package-card.featured {
    border-color: var(--accent-gold);
    transform: scale(1.02);
    background: var(--gradient-dark);
    box-shadow: var(--shadow-premium);
}

.package-card:hover {
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-gold);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-premium);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: var(--shadow-soft);
}

.package-header h3 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.package-subtitle {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.package-price {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--surface);
    border-radius: 12px;
    border: 1px solid var(--border-dark);
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.price-duration {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.price-per-person {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
}

.package-image {
    border-radius: 12px;
    overflow: hidden;
    margin: 1.5rem 0;
    box-shadow: var(--shadow-medium);
    height: 200px;
}

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

.package-image:hover img {
    transform: scale(1.05);
    opacity: 1;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.package-perfect-for {
    background: var(--surface);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 1px solid var(--border-dark);
}

.package-perfect-for strong {
    color: var(--accent-purple);
    display: block;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.package-perfect-for ul {
    list-style: none;
    margin-top: 0.75rem;
}

.package-perfect-for li {
    padding: 0.25rem 0;
    color: var(--text-secondary);
    line-height: 1.5;
}

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

.info-card {
    background: var(--surface-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-dark);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.info-card h4 {
    color: var(--accent-purple);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.info-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--surface);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact > .container > p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--surface-light);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Mobile responsive: single column forms */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .form-row {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-dark);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--surface);
    color: var(--text-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.2);
    background: var(--surface-lighter);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: var(--border-light);
    background: var(--surface-lighter);
}

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

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--surface-light);
    color: var(--text-primary);
}

.form-note {
    background: rgba(108, 92, 231, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    text-align: center;
    border: 1px solid rgba(108, 92, 231, 0.2);
}

.form-note p {
    margin: 0;
    color: var(--accent-purple);
}

.form-note strong {
    color: var(--text-primary);
}

.contact-form .btn-primary-large {
    width: 100%;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-text {
        order: 2;
        text-align: center;
    }
    
    .hero-image-container {
        order: 1;
    }
    
    .hero-image {
        width: 300px;
        height: 300px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .stat {
        text-align: center;
    }
    
    .packages-comparison {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: none;
    }
}

@media (min-width: 769px) {
    .hero {
        background: var(--surface);
    }
}

@media (max-width: 768px) {
    /* Hero Section adjustments */
    .hero {
        background: 
            linear-gradient(
                135deg, 
                rgba(35, 25, 66, 0.9) 0%, 
                rgba(68, 50, 124, 0.8) 50%,
                rgba(35, 25, 66, 0.9) 100%
            ),
            url('../images/hero/GameSpace_VR_BoardGames-800w.webp');
        background-size: cover;
        background-position: 80% 20%;
        background-repeat: no-repeat;
        background-attachment: scroll;
    }
    
    /* Add a subtle pattern overlay for extra visual interest */
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
        z-index: 1;
        pointer-events: none;
    }
    
    .hero-text {
        position: relative;
        z-index: 3;
    }

    .hero-overlay {
        display: none; /* Remove overlay since it's built into the background */
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 6rem 2rem 4rem;
        gap: 0;
    }
    
    .hero-image-container {
        display: none; /* Hide the separate image on mobile */
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        opacity: 0.95;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .stat {
        background: rgba(255, 255, 255, 0.1);
        padding: 1rem;
        border-radius: 12px;
        backdrop-filter: blur(10px);
    }
    
    .stat-number {
        font-size: 2rem;
        display: block;
        margin-bottom: 0.5rem;
    }
    
    .stat-text {
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .feature-large {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .feature-large .feature-image {
        height: 250px;
    }
    
    .feature-card .feature-image {
        height: 180px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {

    /* Hero Section adjustments */
    .hero {
        background-image: 
            linear-gradient(135deg, rgba(35, 25, 66, 0.85) 0%, rgba(68, 50, 124, 0.85) 100%),
            url('../images/hero/GameSpace_VR_BoardGames-800w.webp');
        padding-top: 100px;
    }
    
    .hero-content {
        padding: 4rem 1.5rem 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }

    .package-card {
        padding: 1.5rem;
    }
    
    .additional-info {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 1.5rem;
        margin: 0 1rem;
    }    
}


