@import url('../lib/fontsource-montserrat/300.css');
@import url('../lib/fontsource-montserrat/400.css');
@import url('../lib/fontsource-montserrat/500.css');
@import url('../lib/fontsource-montserrat/600.css');
@import url('../lib/fontsource-montserrat/700.css');

:root {
    --bs-font-sans-serif: 'Montserrat', 'Open Sans', 'Inter', sans-serif;
    --bs-body-font-family: var(--bs-font-sans-serif);
    --primary-red: #c01026;
    --primary-red-hover: #9c0c1f;
    --primary-green: #3f6f3f;
    --primary-green-hover: #2e532e;
    --dark-bg: #111;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Montserrat', 'Open Sans', 'Inter', sans-serif;
    color: #333;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Settings */
.hero-wrapper {
    position: relative;
    background: url('/assets/datacenterpitwa-1920x1000-2.jpg') no-repeat center center / cover;
    background-attachment: fixed;
    color: white;
    padding: 0; min-height: 420px; display: flex; align-items: center; justify-content: center;
    z-index: 1;
}

.hero-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: -1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.9;
}

/* Red Banner Divider */
.red-banner {
    background-color: var(--primary-red);
    color: white;
    position: relative;
    padding: 60px 0;
}

/* Service Box Hover */
.service-icon-box i {
    font-size: 3rem;
    color: #444;
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-box:hover .service-icon-box i {
    transform: scale(1.15);
    color: var(--primary-green);
}

/* Modern Buttons */
.btn-primary-custom {
    background-color: var(--primary-green);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 400;
    padding: 12px 24px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: var(--primary-green-hover);
    color: white !important;
}

.ross-specter-theme .btn:hover,
.btn[style*="background-color: #3a6830"]:hover {
    color: white !important;
    background-color: var(--primary-green-hover) !important;
    border-color: var(--primary-green-hover) !important;
}

.btn-outline-success:hover {
    color: white !important;
}

/* Glow Animation */
@keyframes pitwaGlow {
    0% { filter: drop-shadow(0 0 10px rgba(255,255,255,0.2)); }
    50% { filter: drop-shadow(0 0 25px rgba(255,255,255,0.8)); }
    100% { filter: drop-shadow(0 0 10px rgba(255,255,255,0.2)); }
}

.pitwa-glow-img {
    animation: pitwaGlow 3s infinite alternate ease-in-out;
}

/* Contact Background */
.contact-bg {
    background: url('/assets/datacenterpitwa-1920x1000-2.jpg') no-repeat center center / cover;
    color: white;
    position: relative;
    padding: 100px 0;
    z-index: 1;
}

.contact-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: -1;
}

.glass-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    padding: 40px;
    color: #333;
}

/* Fix for oversized sub-titles on subpages */
.hero-sub-title { font-size: 16px !important; line-height: 1.8 !important; font-weight: normal !important; }

.hero-main-title {
    font-size: 2.8rem !important;
    font-weight: 700;
}







