/* 
 * Royal Code - Layout Fixes
 * This file contains CSS fixes for layout issues
 * Author: Manus AI
 * Date: March 22, 2025
 */

/* Fix for buttons being hidden behind layout */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 5;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    min-width: 180px;
    position: relative;
    z-index: 5;
}

/* Increase spacing between sections */
.section-padding {
    padding: 7rem 0;
}

/* Fix spacing between section titles and content */
.section-header {
    margin-bottom: 5rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Increase spacing in cards */
.bot-card, .vps-plan, .game-server-card, .lavalink-plan, 
.pterodactyl-plan, .database-plan, .testimonial-card {
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.bot-name, .plan-name, .game-server-name {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.bot-description, .game-server-type {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Fix spacing in features lists */
.bot-features li, .game-server-spec {
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* Fix mobile menu positioning */
.mobile-menu {
    width: 85%;
    max-width: 400px;
}

.mobile-menu-link {
    padding: 1.2rem 0;
    font-size: 1.1rem;
}

/* Fix FAQ spacing */
.faq-question {
    padding: 2rem;
}

.faq-question h3 {
    font-size: 1.3rem;
}

.faq-answer p {
    padding: 0 2rem 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Fix contact form spacing */
.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.form-group input, .form-group textarea {
    padding: 1rem 1.2rem;
    font-size: 1.1rem;
}

/* Fix footer spacing */
.footer-title {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.footer-menu li {
    margin-bottom: 1rem;
}

.footer-menu li a {
    font-size: 1.1rem;
}

/* Responsive fixes */
@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-lg {
        width: 100%;
        text-align: center;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-padding {
        padding: 5rem 0;
    }
    
    .bot-card, .vps-plan, .game-server-card, .lavalink-plan, 
    .pterodactyl-plan, .database-plan, .testimonial-card {
        padding: 2rem;
    }
}

/* Fix for 3D elements and visualizations */
.hero-3d-element, .floating-cube, .server-rack {
    pointer-events: none;
    z-index: 1;
}

/* Fix for navigation links */
.nav-link {
    font-size: 1.1rem;
    padding: 0.5rem;
    margin: 0 0.5rem;
}

/* Fix for service tabs */
.service-tab {
    padding: 1.5rem;
    min-width: 150px;
}

.service-tab i {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-tab span {
    font-size: 1.1rem;
}
