/**
* Template Name: 1archi
* Template URL: https://1archi.ch/
* Updated: Apr 11 2025 with -1-Computer
* Author: Raoul Mengis
* License: Free Software Open Source
*/
        body {
            font-family: 'Open Sans', sans-serif;
            background-color: #f8f9fa;
            color: #444444;
            position: relative;
            min-height: 100vh;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Raleway', sans-serif;
        }
        
        #header {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../../assets/img/cervin.avif') center center;
            background-size: cover;
            position: relative;
        }
        
        .container-fluid {
            padding-left: 0;
            padding-right: 0;
        }
        
        .hero-container {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: absolute;
            bottom: 0;
            top: 0;
            left: 0;
            right: 0;
            padding: 0 15px;
        }
        
        .hero-container h1 {
            margin: 0 0 10px 0;
            font-size: 48px;
            font-weight: 700;
            line-height: 56px;
            text-transform: uppercase;
            color: #fff;
        }
        
        .hero-container h2 {
            color: #eee;
            margin-bottom: 40px;
            font-size: 24px;
        }
        
        .countdown {
            margin-bottom: 80px;
        }
        
        .countdown div {
            text-align: center;
            margin: 10px;
            width: 100px;
            padding: 15px 0;
            background: rgba(255, 255, 255, 0.12);
            border-top: 5px solid #EF6603;
        }
        
        .countdown div h3 {
            font-weight: 700;
            font-size: 32px;
            margin-bottom: 15px;
        }
        
        .countdown div h4 {
            font-size: 16px;
            font-weight: 600;
        }
        
        @media (max-width: 575px) {
            .countdown div {
                width: 70px;
                padding: 10px 0;
                margin: 10px 8px;
            }
            
            .countdown div h3 {
                font-size: 28px;
                margin-bottom: 10px;
            }
            
            .countdown div h4 {
                font-size: 14px;
                font-weight: 500;
            }
            
            .hero-container h1 {
                font-size: 36px;
                line-height: 42px;
            }
            
            .hero-container h2 {
                font-size: 20px;
                line-height: 30px;
            }
        }
        
        .subscribe {
            margin-bottom: 40px;
        }
        
        .subscribe .subscribe-form {
            width: 100%;
            max-width: 600px;
        }
        
        .subscribe .subscribe-form input {
            border: 0;
            outline: none;
            padding: 15px;
            width: 70%;
            float: left;
            font-size: 15px;
            border-radius: 5px 0 0 5px;
        }
        
        .subscribe .subscribe-form button {
            width: 30%;
            float: left;
            font-size: 15px;
            padding: 15px;
            background: #EF6603;
            color: #fff;
            border: 0;
            border-radius: 0 5px 5px 0;
            transition: all 0.3s ease-in-out;
            outline: none;
        }
        
        .subscribe .subscribe-form button:hover {
            background: #cf580c;
        }
        
        .subscribe .error-message {
            display: none;
            color: #fff;
            background: #ed3c0d;
            text-align: center;
            padding: 15px;
            font-weight: 600;
            margin-top: 30px;
        }
        
        .subscribe .sent-message {
            display: none;
            color: #fff;
            background: #18d26e;
            text-align: center;
            padding: 15px;
            font-weight: 600;
            margin-top: 30px;
        }
        
        @media (max-width: 768px) {
            .subscribe .subscribe-form input {
                width: 60%;
            }
            
            .subscribe .subscribe-form button {
                width: 40%;
            }
        }
        
        .social-links {
            margin-top: 20px;
        }
        
        .social-links a {
            font-size: 18px;
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            line-height: 1;
            padding: 9px 0;
            margin-right: 4px;
            border-radius: 50%;
            text-align: center;
            width: 36px;
            height: 36px;
            transition: 0.3s;
        }
        
        .social-links a:hover {
            background: #EF6603;
            color: #fff;
            text-decoration: none;
        }
        
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #fff;
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .loader-inner {
            width: 40px;
            height: 40px;
            border: 4px solid #EF6603;
            border-top: 4px solid transparent;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .about-section {
            padding: 60px 0;
            background: #fff;
        }
        
        .about-heading {
            color: #EF6603;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .about-img {
            border-radius: 5px;
            overflow: hidden;
        }
        
        .info-box {
            color: #444444;
            padding: 30px;
            background: #f7f5f2;
            width: 100%;
            box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
            margin-bottom: 20px;
            border-left: 5px solid #EF6603;
            border-radius: 5px;
        }
        
        .info-box i {
            font-size: 24px;
            color: #EF6603;
            border-radius: 50%;
            padding: 15px;
            float: left;
            background: rgba(239, 102, 3, 0.1);
            height: 54px;
            width: 54px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 15px;
        }
        
        .info-box h3 {
            font-size: 20px;
            color: #777777;
            font-weight: 700;
            margin: 5px 0 10px 0;
        }
        
        .info-box p {
            padding: 0;
            line-height: 24px;
            font-size: 14px;
            margin-bottom: 0;
        }
        
        .footer {
            background: #222222;
            color: #fff;
            font-size: 14px;
            text-align: center;
            padding: 30px 0;
            width: 100%;
        }
        
        .footer h3 {
            font-size: 24px;
            margin: 0 0 20px 0;
            padding: 2px 0 2px 0;
            line-height: 1;
            font-weight: 700;
        }
        
        .footer p {
            font-size: 14px;
            margin-bottom: 0;
        }
