/* ========================================
   PRIME COMPUTING LAB - STYLESHEET
   Modern, Professional Cloud Consulting Design
   ======================================== */

/* === BASE STYLES === */

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #050c12;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: whitesmoke;
}

h1, h2, h3, h4, h5, h6 {
    color: #34495e;
    font-weight: 600;
    line-height: 1.3;
}

h2 {
    color: #6FBEF3;
    margin-bottom: 1.5rem;
}

h3 {
    color: #AECFE5;
    margin-bottom: 1rem;
}

a {
    color: #6FBEF3;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #AECFE5;
}

.pure-img-responsive {
    max-width: 100%;
    height: auto;
}

/* === NAVIGATION MENU === */

.home-menu {
    padding: 0.5rem 1rem;
    background: rgba(45, 62, 80, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.home-menu.scrolled {
    background: rgba(45, 62, 80, 0.98);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.pure-menu.pure-menu-fixed {
    border-bottom: none;
    z-index: 100;
}

.home-menu .pure-menu-heading {
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.home-menu .pure-menu-selected a {
    color: white;
}

.home-menu a {
    color: #6FBEF3;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
}

.home-menu li a:hover,
.home-menu li a:focus {
    background: rgba(111, 190, 243, 0.1);
    color: #AECFE5;
    border-radius: 4px;
}

/* === HERO / SPLASH SECTION === */

.splash-container {
    background-image: url("images/cyber.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.splash-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(5, 12, 18, 0.7) 0%, rgba(45, 62, 80, 0.5) 100%);
    z-index: 1;
}

.splash {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 900px;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.splash-head {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    border: 3px solid white;
    padding: 1rem 2rem;
    border-radius: 8px;
    line-height: 1.4;
    display: inline-block;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 30px rgba(111, 190, 243, 0.4);
    }
}

.splash-subhead {
    color: white;
    font-size: 1.2rem;
    letter-spacing: 1px;
    opacity: 0.95;
    margin-bottom: 2rem;
    font-weight: 300;
}

.splash-cta {
    margin-top: 2rem;
}

.cta-button {
    background: #6FBEF3;
    color: white;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(111, 190, 243, 0.3);
}

.cta-button:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(111, 190, 243, 0.5);
}

/* === CONTENT WRAPPER === */

.content-wrapper {
    position: relative;
    top: 100vh;
    width: 100%;
    min-height: 100vh;
    z-index: 10;
    background: #050c12;
}

.content {
    padding: 3rem 5%;
    color: whitesmoke;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* === SECTION STYLES === */

.section-heading {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    color: #AECFE5;
}

/* === SERVICES GRID === */

.services-grid,
.benefits-grid {
    margin-top: 2rem;
}

.service-item,
.benefit-item {
    padding: 2rem;
    margin-bottom: 2rem;
    background: rgba(45, 62, 80, 0.3);
    border-left: 4px solid #6FBEF3;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-item:hover,
.benefit-item:hover {
    background: rgba(45, 62, 80, 0.5);
    border-left-color: #AECFE5;
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(111, 190, 243, 0.2);
}

.service-item h3,
.benefit-item h3 {
    margin-top: 0;
    font-size: 1.3rem;
}

.service-item p,
.benefit-item p {
    margin-bottom: 0;
    line-height: 1.7;
}

/* === WHY CHOOSE US SECTION === */

.why-choose-section {
    background: linear-gradient(135deg, rgba(45, 62, 80, 0.2) 0%, rgba(5, 12, 18, 0.5) 100%);
    padding: 4rem 5%;
    margin: 2rem 0;
}

/* === ABOUT SECTION === */

.about-links {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(45, 62, 80, 0.2);
    border-radius: 8px;
}

.professional-links {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.professional-links li {
    margin: 1rem 0;
}

.link-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: rgba(111, 190, 243, 0.2);
    border: 2px solid #6FBEF3;
    border-radius: 6px;
    color: #6FBEF3;
    font-weight: 600;
    transition: all 0.3s ease;
}

.link-button:hover {
    background: #6FBEF3;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(111, 190, 243, 0.3);
}

.youtube-note {
    margin-top: 1.5rem;
    font-style: italic;
    color: #AECFE5;
}

/* === CREDENTIALS SECTION === */

.credentials-section {
    background: rgba(45, 62, 80, 0.15);
    padding: 4rem 5%;
    margin: 2rem 0;
}

.credentials-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.credential-item {
    padding: 2rem;
    background: rgba(45, 62, 80, 0.3);
    border-radius: 8px;
    border-top: 3px solid #6FBEF3;
    transition: all 0.3s ease;
}

.credential-item:hover {
    background: rgba(45, 62, 80, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(111, 190, 243, 0.2);
}

.credential-item h3 {
    margin-top: 0;
    font-size: 1.3rem;
}

/* === CONTACT SECTION === */

.contact-section {
    padding: 4rem 5%;
}

.contact-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #AECFE5;
}

.contact-methods {
    margin-top: 2rem;
}

.contact-methods > div {
    padding: 2rem;
}

.email-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: #6FBEF3;
}

.contact-form {
    max-width: 500px;
}

.contact-form label {
    color: #AECFE5;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.required {
    color: #6FBEF3;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    background: rgba(45, 62, 80, 0.3);
    border: 2px solid rgba(111, 190, 243, 0.3);
    border-radius: 6px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #6FBEF3;
    background: rgba(45, 62, 80, 0.5);
    box-shadow: 0 0 0 3px rgba(111, 190, 243, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(174, 207, 229, 0.5);
}

.submit-button {
    background: #6FBEF3;
    color: white;
    padding: 0.9rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background: #5AAED3;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(111, 190, 243, 0.4);
}

.submit-button:active {
    transform: translateY(0);
}

/* === FOOTER === */

.footer {
    background: rgba(45, 62, 80, 0.5);
    padding: 2rem;
    text-align: center;
    border-top: 2px solid rgba(111, 190, 243, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    color: #AECFE5;
}

.footer-content p {
    margin: 0.5rem 0;
}

.footer-credit {
    font-size: 0.9rem;
}

.footer-credit a {
    color: #6FBEF3;
    font-weight: 600;
}

/* === RESPONSIVE DESIGN === */

/* Tablet and up */
@media (min-width: 48em) {
    body {
        font-size: 16px;
    }

    .home-menu {
        text-align: left;
        padding: 0.5rem 2rem;
    }

    .home-menu ul {
        float: right;
    }

    .splash {
        width: 70%;
    }

    .splash-head {
        font-size: 2.5rem;
        padding: 1.2rem 2.5rem;
    }

    .splash-subhead {
        font-size: 1.4rem;
    }

    .content {
        padding: 4rem 10%;
    }

    .section-heading {
        font-size: 2.5rem;
    }
}

/* Desktop and up */
@media (min-width: 78em) {
    .splash-head {
        font-size: 3rem;
        padding: 1.5rem 3rem;
    }

    .splash-subhead {
        font-size: 1.6rem;
    }

    .section-heading {
        font-size: 2.8rem;
    }

    .content {
        padding: 5rem 15%;
    }
}

/* Mobile optimization */
@media (max-width: 48em) {
    .home-menu {
        text-align: center;
    }

    .home-menu ul {
        margin-top: 0.5rem;
    }

    .home-menu .pure-menu-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .splash-head {
        font-size: 1.5rem;
        padding: 0.8rem 1.5rem;
    }

    .splash-subhead {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .section-heading {
        font-size: 1.8rem;
    }

    .service-item,
    .benefit-item {
        padding: 1.5rem;
    }

    .contact-methods > div {
        padding: 1rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}
