/* General Settings and Black Background */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Open Sans', Arial, sans-serif; 
    color: white; 
    overflow: hidden; /* Prevent page scrolling */
    background-color: black; /* Black background for areas not covered by the image */
}

/* Background Image */
body {
    /* Ensure aykonak.jpg is in the same directory */
    background-image: url('aykonak.jpg'); 
    background-size: cover; /* Scale image to cover the entire area (Cover) */
    background-position: center; /* Center the image */
    background-repeat: no-repeat;
    background-attachment: fixed; /* Keep the background fixed */
}

/* Content Wrapper and Transparent Layer */
.content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55); /* Semi-transparent black overlay (Improves readability) */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

/* Content Area Styles */
header, main, footer {
    max-width: 700px; /* Maximum width of the content block */
    margin: 10px auto;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.7); /* Darker box behind text for contrast */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 3em; /* Decreased size for better aesthetics */
    margin-bottom: 0.1em;
    letter-spacing: 2px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9); 
}

h2 {
    font-size: 1.1em; /* Decreased size */
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 3px solid #FFD700; /* Gold accent color */
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

p {
    font-size: 0.95em; /* Decreased size for paragraph text */
    line-height: 1.7;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

/* Contact Button Style */
.contact-button {
    display: inline-block;
    padding: 12px 25px;
    margin-top: 20px;
    background-color: #FFD700; /* Gold/Yellow accent */
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.contact-button:hover {
    background-color: #e6c200;
}

/* Footer Style */
footer p {
    font-size: 0.8em;
    opacity: 0.7;
    margin-top: 20px;
    background: none; 
    padding: 0;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    h1 {
        font-size: 2.2em; /* Adjusted for smaller screens */
    }
    h2 {
        font-size: 0.9em; /* Adjusted for smaller screens */
    }
    header, main, footer {
        padding: 15px;
        max-width: 90%;
    }
}