/* ============================================
   FONT LOADING (Local GDPR-Compliant)
   ============================================ */
@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Bold.woff2') format('woff2'),
         url('fonts/Montserrat-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Regular.woff2') format('woff2'),
         url('fonts/Montserrat-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-SemiBold.woff2') format('woff2'),
         url('fonts/Montserrat-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    overflow-x: hidden;
}

body {
    height: 100vh;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background-color: #0a0a0a;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 87, 34, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 230, 118, 0.03) 0%, transparent 50%);
    background-attachment: fixed;
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

/* Optional: Subtle animated gradient overlay */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, 
            rgba(255, 87, 34, 0.02) 0%, 
            transparent 40%, 
            rgba(0, 230, 118, 0.02) 100%);
    pointer-events: none;
    z-index: 0;
}

/* ============================================
   MAIN CONTAINER - CENTERED LAYOUT
   ============================================ */
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.content {
    text-align: center;
    max-width: 700px;
    width: 100%;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   LOGO
   ============================================ */
.logo-wrapper {
    margin-bottom: 40px;
    animation: fadeIn 1s ease-out;
}

.logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 87, 34, 0.3));
    transition: filter 0.3s ease;
}

.logo:hover {
    filter: drop-shadow(0 0 30px rgba(255, 87, 34, 0.5));
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.headline {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 
        0 0 10px rgba(255, 87, 34, 0.3),
        0 0 20px rgba(255, 87, 34, 0.2);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.subheadline {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Primary Button - Neon Style */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #FF5722 0%, #FF7043 100%);
    border: 2px solid #FF5722;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 20px rgba(255, 87, 34, 0.4),
        0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 0 35px rgba(255, 87, 34, 0.6),
        0 6px 20px rgba(0, 0, 0, 0.4);
    border-color: #FF7043;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-icon {
    font-size: 1.3rem;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

/* Secondary CTA */
.cta-secondary {
    font-size: 1rem;
    color: #aaaaaa;
    margin-top: 10px;
}

.phone-link {
    color: #00E676;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 230, 118, 0.3);
}

.phone-link:hover {
    color: #00FF7F;
    text-shadow: 0 0 15px rgba(0, 230, 118, 0.5);
    text-decoration: underline;
}

/* Maps Link */
.maps-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #888888;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    margin-top: 10px;
}

.maps-link:hover {
    color: #00E676;
    background: rgba(0, 230, 118, 0.05);
    text-shadow: 0 0 10px rgba(0, 230, 118, 0.3);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #666666;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, transparent 100%);
    z-index: 10;
}

.footer-link {
    color: #777777;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 5px 10px;
}

.footer-link:hover {
    color: #FF5722;
    text-shadow: 0 0 8px rgba(255, 87, 34, 0.4);
}

.footer-separator {
    margin: 0 8px;
    color: #444444;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablets */
@media (max-width: 768px) {
    .headline {
        font-size: 2.2rem;
    }
    
    .subheadline {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .logo {
        max-width: 160px;
    }
    
    .btn-primary {
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .content {
        max-width: 90%;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    body {
        overflow-y: auto;
        height: auto;
        min-height: 100vh;
    }
    
    .container {
        min-height: calc(100vh - 60px);
        padding: 30px 20px 80px 20px;
    }
    
    .headline {
        font-size: 1.6rem;
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    .subheadline {
        font-size: 0.95rem;
        margin-bottom: 30px;
        line-height: 1.5;
    }
    
    .logo {
        max-width: 120px;
    }
    
    .logo-wrapper {
        margin-bottom: 25px;
    }
    
    .btn-primary {
        padding: 12px 24px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 280px;
        letter-spacing: 0.3px;
    }
    
    .btn-icon {
        font-size: 1.1rem;
    }
    
    .cta-secondary {
        font-size: 0.85rem;
    }
    
    .maps-link {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .footer {
        position: relative;
        padding: 15px;
        font-size: 0.75rem;
    }
}

/* Very Small Screens */
@media (max-width: 360px) {
    .headline {
        font-size: 1.4rem;
        line-height: 1.2;
    }
    
    .subheadline {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .logo {
        max-width: 100px;
    }
    
    .btn-primary {
        font-size: 0.8rem;
        padding: 11px 20px;
        max-width: 260px;
    }
    
    .cta-secondary {
        font-size: 0.8rem;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    body {
        background: white;
        color: black;
    }
    
    .footer {
        position: static;
        background: none;
    }
    
    .btn-primary {
        border: 2px solid black;
        box-shadow: none;
    }
}

/* ============================================
   ACCESSIBILITY IMPROVEMENTS
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus {
    outline: 2px solid #FF5722;
    outline-offset: 4px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .headline,
    .subheadline {
        text-shadow: none;
    }
    
    .btn-primary {
        border-width: 3px;
    }
}