* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
}

/* Hero Section */
.hero {
    flex: 1;
    background-image: url('fon.jpg');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 70vh;
}

@media (min-aspect-ratio: 1/1) {
    .hero {
        background-size: cover;
        background-position: center 30%;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    font-size: 80px;
    font-weight: 300;
}

.logo-text {
    color: white;
    letter-spacing: 5px;
}

.logo-svg {
    height: 80px;
    width: auto;
    margin: 0 -10px;
}

.main-title {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* Footer */
.footer {
    background: #000;
    color: white;
    padding: 40px 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-left {
    flex: 1;
}

.footer-logo-svg {
    height: 120px;
    width: auto;
}

.footer-center {
    flex: 1;
    text-align: left;
}

.footer-center h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.contacts {
    list-style: none;
    font-size: 18px;
    line-height: 2;
}

.contacts a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contacts a:hover {
    opacity: 0.7;
}

.disclaimer {
    font-size: 11px;
    margin-top: 15px;
    opacity: 0.7;
}

.footer-right {
    flex: 1;
    text-align: right;
}

.slogan {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
    .logo {
        font-size: 60px;
    }
    
    .main-title {
        font-size: 36px;
        letter-spacing: 10px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-right {
        text-align: left;
    }
}

@media (max-width: 768px) {
    body {
        min-height: 100vh;
    }
    
    .hero {
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
        min-height: 75vh;
    }
    
    .logo {
        font-size: 50px;
        gap: 5px;
        margin-bottom: 30px;
    }
    
    .logo-svg {
        height: 55px;
    }
    
    .main-title {
        font-size: 20px;
        letter-spacing: 8px;
        gap: 3px;
    }
    
    .title-logo {
        height: 18px;
        margin: 0 -3px;
    }
    
    .title-spacing {
        margin-left: 5px;
    }
    
    .footer {
        padding: 20px 15px;
        min-height: 25vh;
    }
    
    .footer-content {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }
    
    .footer-left {
        flex: 0 0 auto;
    }
    
    .footer-logo-svg {
        height: 80px;
    }
    
    .footer-center {
        flex: 1;
        text-align: left;
    }
    
    .footer-center h2 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .contacts {
        font-size: 12px;
        line-height: 1.6;
    }
    
    .disclaimer {
        font-size: 8px;
        margin-top: 8px;
    }
    
    .footer-right {
        flex: 0 0 auto;
        text-align: right;
        max-width: 140px;
    }
    
    .slogan {
        font-size: 11px;
        line-height: 1.4;
        letter-spacing: 0.5px;
    }
}
