/* public/css/style.css - Full Woohoow Pty Ltd Theme */

body,
html {
    font-family: "Open Sans", sans-serif;
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    color: #444;
    font-weight: 400;
    width: 100%;
    height: 100%;
}

h2,
h3,
h4 {
    font-family: "Raleway", sans-serif;
}

h2 {
    text-transform: uppercase;
    margin: 0 0 20px;
    font-weight: 800;
    font-size: 36px;
    color: #1a2a3a; /* Midnight Blue */
}

h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a2a3a;
}

h4 {
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

h5 {
    text-transform: uppercase;
    font-weight: 700;
    line-height: 20px;
}

p {
    font-size: 15px;
    line-height: 1.6;
}

p.intro {
    margin: 12px 0 0;
    line-height: 24px;
}

a {
    color: #00d4ff; /* Electric Blue */
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s;
}

a:hover,
a:focus {
    color: #ccff00; /* Cyber Lime */
}

ul,
ol {
    list-style: none;
    padding: 0;
}

hr {
    height: 3px;
    width: 70px;
    background: #ccff00; /* Brand Accent */
    margin: 0 auto 20px auto;
    border: 0;
    opacity: 1;
}

/* --- Navigation --- */

#menu {
    padding: 15px;
    transition: all 0.8s;
    background-color: #fff;
    border: 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

#menu .navbar-brand {
    font-family: "Raleway", sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #1a2a3a;
    text-transform: uppercase;
    letter-spacing: -1px;
}

#menu .nav-link {
    font-family: "Lato", sans-serif;
    text-transform: uppercase;
    color: #1a2a3a !important;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 2px;
    margin: 9px 20px 0;
    position: relative;
}

#menu .nav-link::after {
    display: block;
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, #00d4ff 0%, #ccff00 100%);
    content: "";
    transition: width 0.3s;
}

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

/* --- Section Titles --- */

.section-title {
    margin-bottom: 70px;
}

.section-title h2 {
    position: relative;
    margin-top: 10px;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.section-title h2::after {
    position: absolute;
    content: "";
    background: linear-gradient(to right, #00d4ff 0%, #ccff00 100%);
    height: 4px;
    width: 60px;
    bottom: 0;
    margin-left: -30px;
    left: 50%;
}

/* --- Buttons --- */

.btn-custom {
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    color: #1a2a3a;
    background-color: #ccff00;
    background-image: linear-gradient(to right, #ccff00 0%, #00d4ff 100%);
    padding: 14px 36px;
    letter-spacing: 1px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
    border: 0;
    box-shadow: 0 4px 15px rgba(204, 255, 0, 0.3);
}

.btn-custom:hover {
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

/* --- Header Section --- */
header .intro {
    background: url(../img/intro-bg.jpg) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-color: #0d161f;
}

.intro .overlay {
    background: rgba(
        13,
        22,
        31,
        0.8
    ); /* Darkened slightly for better text contrast */
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.intro h1 {
    font-family: "Raleway", sans-serif;
    color: #fff;
    font-size: 58px;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 15px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.intro h1 span {
    color: #ccff00;
    text-shadow: 0 0 20px rgba(204, 255, 0, 0.5);
}

/* FIXED VISIBILITY FOR SUB-HEADLINE */
.intro p {
    color: #ffffff; /* Forced pure white */
    font-size: 22px; /* Balanced size */
    font-weight: 400;
    line-height: 30px;
    margin: 0 auto 60px auto;
    max-width: 800px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Shadow for readability */
}

/* Styling for keywords inside the p tag */
.intro p strong {
    color: #ccff00;
    font-weight: 700;
}

/* --- Features Section --- */

#features {
    padding: 100px 0;
    background: #f8f9fa;
}

#features i[class*="fa-"] {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a2a3a;
    width: 100px;
    height: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ccff00;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
}

/* --- About Section Refined --- */
#about {
    padding: 120px 0; /* Increased top/bottom padding for better breathing room */
    background: #fff;
}

/* Ensure the row inside About has proper alignment */
#about {
    padding: 120px 0; /* Increased top/bottom padding for better breathing room */
    background: #fff;
}
#about .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

#about .about-text li {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: #555; /* Matches your paragraph color */
    font-weight: 400; /* Changed from 600 to 400 to fix the "thickness" */
    list-style: none;
    padding-left: 0;
}

#about .about-text li strong {
    color: #1a2a3a; /* Midnight Blue for the key feature */
    font-weight: 700; /* Explicitly bold for the title part only */
}

#about .about-text li:before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #ccff00;
    font-size: 16px;
    margin-right: 10px;
    vertical-align: middle;
}

#about .about-text h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a2a3a;
}

/* --- Services Section --- */

#services {
    padding: 100px 0;
    background: #1a2a3a; /* Midnight Blue */
    color: #fff;
}

/* Force the Title and Paragraph to be visible */
#services .section-title h2 {
    color: #ffffff !important; /* Pure white for contrast */
}

#services .section-title p {
    color: #ccff00; /* Cyber Lime for "The Woohoow Twist" */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 14px;
}

/* Ensure descriptions are readable silver/grey */
#services .service-desc p {
    color: #bdc3c7;
    font-size: 15px;
    margin-top: 10px;
}

#services .col-md-4:hover i {
    background: #ccff00;
    color: #1a2a3a;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(204, 255, 0, 0.2);
}

#services i[class*="fa-"] {
    font-size: 42px;
    width: 120px;
    height: 120px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #253b52;
    border: 2px solid #ccff00;
    border-radius: 50%;
    color: #ccff00;
    transition: all 0.4s;
}

/* --- Portfolio Section --- */

#portfolio {
    padding: 100px 0;
}

.hover-bg .hover-text {
    background: linear-gradient(
        to bottom,
        rgba(26, 42, 58, 0.9),
        rgba(0, 212, 255, 0.9)
    );
}

/* --- Testimonials --- */

#testimonials {
    padding: 100px 0;
    background: #f1f4f7;
}

.testimonial-meta {
    color: #1a2a3a;
    font-weight: 700;
}

/* --- Team Section --- */

#team {
    padding: 100px 0;
}

/* --- New Team Section Styling --- */

#team {
    padding: 100px 0;
    background: #f9f9f9;
}

.team-desc {
    padding: 20px;
}

.service-icon-box {
    padding: 40px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border-bottom: 4px solid transparent;
}

.service-icon-box i {
    font-size: 42px;
    color: #ccff00; /* Cyber Lime */
    background: #1a2a3a; /* Midnight Blue */
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-icon-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a2a3a;
}

.service-icon-box p {
    color: #777;
    font-size: 15px;
    margin-top: 15px;
}

/* Hover Effect */
.service-icon-box:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid #ccff00;
}

.service-icon-box:hover i {
    background: #ccff00;
    color: #1a2a3a;
}

/* --- Contact Section --- */

#contact {
    background: #1a2a3a;
    color: #bdc3c7;
}

#contact h2,
#contact h3 {
    color: #fff;
}

#contact .section-title h2::after {
    background: #ccff00;
    left: 0;
    margin-left: 0;
}

#contact .form-control {
    border-radius: 8px;
    padding: 12px;
}

#contact .btn-custom {
    background: transparent;
    border: 2px solid #ccff00;
    color: #ccff00;
    background-image: none;
}

#contact .btn-custom:hover {
    background: #ccff00;
    color: #1a2a3a !important;
}

#contact .social i {
    border: 2px solid #00d4ff;
    color: #00d4ff;
}

#contact .social i:hover {
    background: #00d4ff;
    color: #1a2a3a;
}

/* --- Footer --- */

#footer {
    background: #0d161f;
    padding: 30px 0;
    color: #555;
}

/* RESPONSIVE UPDATES */
@media (max-width: 768px) {
    .intro h1 {
        font-size: 36px;
        line-height: 1.2;
    }
    .intro p {
        font-size: 18px;
        line-height: 24px;
    }
}
