/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Body Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

/* Header and Navigation */
header {
    background: #222;
    padding: 20px;
    text-align: center;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin: 0 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

/* Main Sections */
.main-section {
    padding: 60px 20px;
    text-align: center;
}

h1,
h2 {
    margin-bottom: 20px;
}

p {
    margin-bottom: 40px;
}

/* Gallery */
.gallery {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.gallery .item {
    width: 30%;
    margin: 10px 0;
}

.gallery img {
    width: 100%;
    height: auto;
    border: 1px solid #fff;
}

/* Form */
form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

form label {
    display: block;
    margin-bottom: 5px;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: none;
    background-color: #222;
    color: #fff;
    border-radius: 5px;
}

form button {
    padding: 10px 20px;
    background-color: #444;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

form button:hover {
    background-color: #666;
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 20px;
    background-color: #000000;
    color: #fff;
    font-size: 14px;
    margin-top: 40px;
    /* Add space above the footer */
}

/* Founders Section */
.founders {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.founder {
    width: 45%;
    text-align: center;
    margin-bottom: 40px;
}

.founder img {
    width: 100%;
    height: auto;
    max-width: 250px;
    margin-bottom: 20px;
    border: 3px solid #fff;
    /* Border to define the image edges */
}

.founder-info {
    padding: 20px;
    background-color: #222;
    border-radius: 5px;
}

.founder-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #fff;
}

.founder-info p {
    font-size: 16px;
    color: #bbb;
}

/* Our Services Section */
.services-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    gap: 30px;
    flex-wrap: wrap;
}

.services-text {
    width: 50%;
}

.services-text ul {
    list-style: none;
    padding-left: 0;
}

.services-text li {
    font-size: 18px;
    margin-bottom: 10px;
}

.services-image {
    width: 45%;
}

.services-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    border: 3px solid #fff;
}

/* Home Section */
#home {
    padding: 100px 20px;
    text-align: center;
    color: #fff;
    background: url('images/background-image.png') no-repeat center center/cover; /* Use PNG file here */
    position: relative;
    height: 100vh; /* Ensures the section takes full viewport height */
}

/* Optional: Add a dark overlay to make the text more readable */
#home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: -1;
}

h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
}


/* Contact Us Section */
#contact {
    padding: 60px 20px;
    text-align: center;
    background-color: #222;
    color: #fff;
}

/* Contact Information */
.contact-info p {
    font-size: 18px;
    margin-bottom: 20px;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.contact-buttons {
    margin-top: 20px;
}

.contact-buttons .btn {
    display: inline-block;
    padding: 12px 30px;
    margin: 10px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

/* About Us Section */
#about-us {
    width: 100%; /* Bütün genişliği kapsar */
    max-width: 1200px; /* Genişliği sınırlıyoruz */
    margin: 0 auto; /* Ortalanmasını sağlıyoruz */
    padding: 60px 20px; /* Üst ve alt boşluk, sağ ve sol boşluk */
    box-sizing: border-box; /* Padding ve border'ı genişlik hesaplamasına dahil eder */
    text-align: center; /* Başlık ve metnin ortalanması */
}

/* About Us Text */
#about-us h2,
#about-us p {
    max-width: 960px; /* Metinlerin genişliğini sınırlıyoruz */
    margin: 0 auto; /* Kenarlardan uzaklaştırma */
    padding: 20px 0; /* Yalnızca üst ve alt boşluk */
}

/* About Us Image */
#about-us img {
    display: block;
    margin: 20px auto; /* Resmi ortalar */
    max-width: 100%; /* Resmin genişliğini sınırlıyoruz */
}

/* Responsive (Mobile) */
@media (max-width: 768px) {
    #about-us {
        padding: 40px 15px; /* Mobilde padding'i küçültüyoruz */
    }

    #about-us h2, 
    #about-us p {
        margin: 0 10px; /* Küçük ekranlar için daha fazla boşluk */
    }
}


/* Button Hover Effect */
.contact-buttons .btn:hover {
    background-color: #666;
}