* {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

html, body {
    width: 100%;
    min-width: 320px;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

:root {
    --primary-green: #1B4D3E;
    --secondary-green: #2E8B57;
    --accent-green: #3CB371;
    --light-green: #98FB98;
    
    --text-light: #FFFFFF;
    --text-dark: #333333;
    --text-muted: rgba(255, 255, 255, 0.7);
    
    --font-family-fr: 'Arial', 'Helvetica Neue', sans-serif;
}

body {
    font-family: 'Noto Sans', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-dark);
}

.site-background {
    background-image: url('../img/back.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    width: 100%;
    position: relative;
    overflow-x: hidden;
}

.site-background::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.5)
    );
    z-index: 0;
}

.main-container {
    position: relative;
    z-index: 1;
    max-width: 1017px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.container {
    max-width: 1017px;
}

.warning-banner {
    background: transparent;
    padding: 0.5rem 1rem;
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: 71px; 
}

.warning-text {
    color: var(--text-light);
    font-size: 0.75rem;
    letter-spacing: 0.2px;
    margin: 0;
    line-height: 1.2;
}

.warning-phone {
    color: var(--text-light);
    font-weight: 500;
}

@media (max-width: 576px) {
    .warning-banner {
        padding: 0.4rem 0.5rem;
    }
    
    .warning-text {
        font-size: 0.7rem;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Sans', sans-serif;
}

button, .btn {
    font-family: 'Noto Sans', sans-serif;
}

@media (max-width: 768px) {
    .site-background {
        background-attachment: scroll;
        height: 100%;
        min-height: 100vh;
    }
    
    .site-background::before {
        position: absolute;
        height: 100%;
    }
}

@supports (-webkit-touch-callout: none) {
    .site-background {
        background-attachment: scroll;
    }
} 