/*
 * END IT - Custom Theme Stylesheet
 * Professional IT Business Theme
 * Created: 2025-10-12
 */

/* ========================================
   Font Imports
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Cascadia+Code:wght@400;600;700&display=swap');

/* ========================================
   CSS Variables (Theme Colors)
   Note: These custom properties are correctly defined.
   Any IDE warnings are false positives.
   ======================================== */
:root {
    --primary-color: #0066cc;
    --secondary-color: #004080;
    --accent-color: #00ccff;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
}

/* ========================================
   Base Styles
   ======================================== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

/* Brand Name Styling */
.brand-name {
    font-family: 'Cascadia Code', 'Courier New', monospace;
    font-weight: 600;
}

/* ========================================
   Under Construction Banner
   ======================================== */
.under-construction-banner {
    background: linear-gradient(135deg, #ff9800 0%, #ff5722 100%);
    color: white;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1050;
    border-bottom: 4px solid #e64a19;
}

.construction-content h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.construction-content p {
    margin: 5px 0 0 0;
    font-size: 1.1rem;
    opacity: 0.95;
}

/* ========================================
   Navigation Styles
   ======================================== */
.navbar {
    background-color: var(--dark-bg, #1a1a1a) !important;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: white !important;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    padding: 0;
}

.navbar-logo {
    height: 50px !important;
    width: auto !important;
    max-width: 200px !important;
    max-height: 50px !important;
    object-fit: contain !important;
    background-color: white;
    padding: 5px 10px;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block !important;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
    box-shadow: 0 2px 10px rgba(0, 204, 255, 0.5);
}

.navbar-text-brand {
    font-family: 'Cascadia Code', 'Courier New', monospace;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-left: 15px;
    letter-spacing: 1px;
}

.navbar-brand:hover .navbar-text-brand {
    color: var(--accent-color, #00ccff);
}

.nav-link {
    color: rgba(255,255,255,0.85) !important;
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent-color, #00ccff) !important;
}

/* ========================================
   Logo Section
   ======================================== */
.logo-container {
    width: 250px;
    height: 250px;
    margin-right: 30px;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.logo-placeholder {
    font-size: 3rem;
    color: var(--primary-color, #0066cc);
    font-weight: bold;
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color, #0066cc) 0%, var(--secondary-color, #004080) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-custom {
    background-color: var(--accent-color, #00ccff);
    color: var(--dark-bg, #1a1a1a);
    padding: 12px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-custom:hover {
    background-color: white;
    color: var(--primary-color, #0066cc);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* ========================================
   Services Section
   ======================================== */
.services-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-card p {
    color: #666;
    line-height: 1.7;
}

/* ========================================
   About Section
   ======================================== */
.about-section {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.form-control {
    padding: 12px 20px;
    margin-bottom: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.legal-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.legal-content h4 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 15px;
}

.legal-content h4:first-child {
    margin-top: 0;
}

.legal-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer p {
    margin: 0;
    opacity: 0.8;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .logo-container {
        margin: 0 auto 20px;
    }
}
