/* Base styles */
body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: white;
}

body {
    background: url('images/background7.jpg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
}

/* Gradient overlay - dark on left, fading to transparent on right */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
                rgba(1, 28, 53, 0.6) 0%, 
                rgba(0, 0, 0, 0.3) 50%,
                rgba(82, 65, 65, 0) 80%);
    z-index: -1;
}

/* Content container - transparent background */
.container {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    max-width: 500px;
    padding: 20px;
}

/* Text styles */
h1 {
    font-weight: 40;
    font-size: 60px;
    letter-spacing: 2px;
    margin: 0 0 40px 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

h2 {
    font-weight: 40;
    font-size: 20px;
    letter-spacing: 2px;
    margin: 0 0 20px 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Contact box */
.contact-box {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 20px;
    max-width: 300px;
    margin: 0 auto 40px;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.contact-box:hover {
    background-color: rgba(23, 112, 163, 0.3);
    transform: scale(1.05);
}

.contact-box a {
    color: white;
    text-decoration: none;
    font-size: 17px;
    display: block;
    margin-bottom: 15px;
}

.contact-box h3 {
    font-weight: 40;
    font-size: 17px;
    letter-spacing: 2px;
    margin: 0;
}

.contact-box address {
    font-weight: 40;
    font-size: 17px;
    letter-spacing: 2px;
    margin: 0;
}

/* Footer - updated with solid background and centered content */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    font-size: 12px;
    background-color: rgba(0, 0, 0, 0.4);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive styles */
@media (max-width: 768px) {
    .container {
        left: 5%;
        right: 5%;
        max-width: 90%;
    }
    
    h1 {
        font-size: 30px;
    }

    h2, .contact-box a, .contact-box h3 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .background-overlay {
        background: rgba(0, 0, 0, 0.4);
    }
    
    h1 {
        font-size: 26px;
    }
    
    footer {
        background-color: rgba(0, 0, 0, 0.4);
    }
}