@font-face {
    font-family: 'Handel-Gothic-BT';
    src:url('../fonts/Handel-Gothic-BT.ttf.woff') format('woff'),
        url('../fonts/Handel-Gothic-BT.ttf.svg#Handel-Gothic-BT') format('svg'),
        url('../fonts/Handel-Gothic-BT.ttf.eot'),
        url('../fonts/Handel-Gothic-BT.ttf.eot?#iefix') format('embedded-opentype'); 
    font-weight: normal;
    font-style: normal;
}
                
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Handel-Gothic-BT', Arial, sans-serif;
    background-image: url('../images/bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
    color: #fff;
    display: flex;
    flex-direction: column;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

#logo img {
    max-height: 60px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 90px;
    margin-right: 100px;
}

nav li {
    font-size: clamp(1.5rem, 3vw, 2.8rem);
    color: #FFCC00;
    transition: color 0.3s;
    text-transform: uppercase;
    text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.4);
}

main {
    position: relative;
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
    flex: 1;
    text-align: center;
}

main h1 {
    font-size: clamp(1.3rem, 3vw, 3rem);
    line-height: 1.4;
    font-weight: normal;
    text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
}

#contact {
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

#contact h2 {
    font-size: 2.5rem;
    color: #FFCC00;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-item strong {
    color: #FFCC00;
    font-size: 0.9rem;
}

.contact-item a {
    color: #ffffff;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s;
    color: #FFCC00;
}

.contact-item a:hover,
.contact-item a:focus {
    color: #FFCC00;
}

.contact-item span {
    color: #fff;
    font-size: 1rem;
}

.yellow {
    color: #FFCC00;
}

footer {
    padding: 40px;
    text-align: center;
    margin-top: auto;
}

footer p {
    font-size: 1.5rem;
}

footer h2 {
    font-size: 2rem;
    margin-top: 10px;
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 1500px) {
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }
    
    header {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-right: 0;
    }
    
    .graph-container {
        margin-top: 40px;
    }
    
    .graph-image {
        display: none;
    }
    
    #contact h2 {
        font-size: 2rem;
    }
    
    .contact-info {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    #logo img {
        max-height: 50px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
}
