#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1; /* Behind all content */
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background: #000000;
    color: #ffffff;
}
/* Navigation Bar */
.navbar {
    background-color: transparent;
    padding: 15px 50px;
    display: flex;
    /*justify-content: space-between;*/
    align-items: center;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 3;
}
.language-switcher {
    position: relative;
    display: inline-block;
    margin-left: 30px;
}

#language {
    background-color: #f58220;
    color: white;
    padding: 6px 25px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-align: center;
}

#language:focus {
    outline: none;
}

.language-switcher::after {
    content: "\25BC"; /* Unicode for down arrow */
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 12px;
    color: white;
}
.logo-img {
    width: 100px;  /* Adjust the width as needed */
    height: auto;  /* Maintain the aspect ratio */
}
.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    z-index: 4;
}
.navbar ul li {
    margin-left: 30px;
    z-index: 5;
}
.navbar ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    z-index: 6;
}
.navbar .logo a{
    text-decoration: none;
}
.navbar .logo a p{
    color: #ff4b2b;
    font-size: 35px;
    font-weight: bold;
}

/* Genel Menü Stil */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.nav-links {
    /*list-style: none;*/
    /*display: flex;*/
    /*justify-content: space-around;*/
    /*width: 100%;*/
}

.nav-links ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    z-index: 4;
}

.nav-links ul li {
    margin-left: 30px;
    z-index: 5;
}

.nav-links ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    z-index: 6;
}

/* Hamburger Menüsü Stili */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: white;
    margin-bottom: 5px;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    height: 110vh;
    background-image: url('../m1.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}
.hero-content h1 {
    font-size: 4em;
    color: #ffffff;
}
.hero-content .buttons {
    margin-top: 20px;
}
.hero-content .buttons a {
    margin: 0 10px;
    padding: 10px 20px;
    background-color: #ff4b2b;
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.hero-content .buttons a:hover {
    background-color: #ff6b4b;
}
/*!* About Section *!*/
/*.about {*/
/*    background-color: #333333;*/
/*    padding: 50px 20px;*/
/*    text-align: center;*/
/*}*/
/*.about h2 {*/
/*    color: #ff4b2b;*/
/*    font-size: 2.5em;*/
/*}*/
/*.about p {*/
/*    max-width: 700px;*/
/*    margin: 20px auto;*/
/*    color: #dddddd;*/
/*}*/



/* About Section */
.about {
    background-color: #333333;
    padding: 60px 20px;
    text-align: center;
}

.about h2 {
    color: #ff4b2b;
    font-size: 2.8em;
    margin-bottom: 30px;
    letter-spacing: 1.5px;
}

.about p, h4 {
    max-width: 1200px;
    margin: 0 auto 20px;
    color: #dddddd;
    font-size: 1.1em;
    line-height: 1.8em;  /* Increased line-height for better readability */
    letter-spacing: 0.5px;
    text-align: left;
}


.about p:last-child {
    margin-bottom: 0;
}

/* Optional: Add transition effect for smoother appearance */
.about p, .about h2 {
    transition: all 0.3s ease;
}

/* Contact Section */
.contact {
    background-color: #333333;
    padding: 50px 20px;
    text-align: center;
}

.contact h2 {
    color: #ff4b2b;
    font-size: 2.5em;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    /*flex-direction: column;*/
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    font-size: 1.1em;
    border: none;
    border-radius: 5px;
    background-color: #444444;
    color: #ffffff;
}

.form-group input[type="submit"] {
    background-color: #ff4b2b;
    color: #ffffff;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-group input[type="submit"]:hover {
    background-color: #ff6b4b;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #cccccc;
}


/* Buy me a coffee button */
.buy-coffee-btn {
    background-color: #4A90E2;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.buy-coffee-btn:hover {
    background-color: #357ABD;
}

/* Coffee Form Container */
.coffee-form {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.hidden {
    display: none;
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-header h2 {
    font-size: 18px;
    margin: 0;
}

.close-form {
    font-size: 24px;
    cursor: pointer;
}


/* Certificates Section */
.certificates {
    background-color: #333333;
    padding: 60px 20px;
    color: #dddddd;
}

.certificates h2 {
    color: #ff4b2b;
    font-size: 2.5em;
}

.certificate-item {
    text-align: center;
    width: 100%;
}

.certificate-img {
    max-width: 100%; /* Makes the image responsive */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.certificate-img:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}


.quantity-options {
    display: flex;
    justify-content: space-around;
    margin: 10px 0;
}

.quantity-btn {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.quantity-btn.active, .quantity-btn:hover {
    background-color: #4A90E2;
    color: white;
}

.form-group {
    margin-bottom: 15px;
}

input[type="text"], textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.submit-coffee-btn {
    width: 100%;
    background-color: #4A90E2;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.submit-coffee-btn:hover {
    background-color: #357ABD;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal-content {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 50%;
    max-height: 80%;
    margin: auto;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Responsive media query for mobile devices */
@media screen and (max-width: 768px) {
    .navbar ul {
        display: none;
    }
    .hero {
        height: 55vh !important;
    }
    .language-switcher select {
        width: 80px;
        padding: 5px;
    }
    /* Navbar changes */

    .logo-img {
        width: 60px; /* Smaller logo for small screens */
    }

    /* Hero Section */
    .hero-content h1 {
        font-size: 2em;
    }

    .hero-content .buttons a {
        padding: 8px 12px;
        font-size: 12px;
    }

    /* About Section */
    .about {
        padding: 20px 10px;
    }

    .about h2 {
        font-size: 1.6em;
    }

    .about p {
        font-size: 0.9em;
    }

    /* Contact Section */
    .contact {
        padding: 20px 10px;
    }

    .contact h2 {
        font-size: 1.6em;
    }

    .contact form {
        max-width: 100%;
        padding: 0 10px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #333;
        text-align: center;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-links.active {
        display: flex;
    }

    /* Buy me a coffee button */
    .buy-coffee-btn {
        padding: 8px 15px;
        font-size: 12px;
    }

    /* Coffee Form Container */
    .coffee-form {
        width: 90%;
        padding: 15px;
    }

    .quantity-btn {
        width: 25px;
        height: 25px;
        line-height: 25px;
    }

    .submit-coffee-btn {
        padding: 10px;
        font-size: 12px;
    }


}
