/* style.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
    position: relative;
}

.background {
    background-image: url('aknaval-banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.footer {
    width: 100%;
    position: fixed;
    bottom: 20px;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.social-icons {
    margin-bottom: 8px;
}

.social-icons a {
    color: #fff;
    font-size: 26px;
    margin: 0 12px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #CBAE75;
}

.email {
    font-size: 15px;
    color: #ccc;
    text-align: center;
}
.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.contact-item {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background-color: rgba(203, 174, 117, 0.2);
    border-color: #CBAE75;
    color: #CBAE75;
}