/* styles.css */

/* Genel Reset ve Temel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background-color: #2c3e50;
    padding: 20px 0;
    color: #fff;
}

header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-top: 10px;
}

nav ul li a {
    color: #ecf0f1;
    text-decoration: none;
    padding: 8px 12px;
    transition: background 0.3s, color 0.3s;
    border-radius: 4px;
}

nav ul li a:hover {
    background-color: #34495e;
    color: #fff;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)), url('https://images.unsplash.com/photo-1549924231-f129b911e442?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.hero h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background-color: #e67e22;
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s;
}

.btn:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

/* About Us */
.about {
    background-color: #fff;
    padding: 60px 20px;
    margin-top: 40px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    border-radius: 8px;
}

.about h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    color: #555;
}

/* Products Section */
.products {
    background-color: #f9f9f9;
    padding: 60px 20px;
}

.products h2 {
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #2c3e50;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-item {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.product-item h3 {
    margin-bottom: 15px;
    color: #2980b9;
    font-family: 'Montserrat', sans-serif;
}

.product-item p {
    color: #555;
    line-height: 1.5;
}

/* Services Section */
.services {
    background-color: #fff;
    padding: 60px 20px;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.services h2 {
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #2c3e50;
}

.services ul {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
    padding-left: 0;
}

.services li {
    background-color: #ecf0f1;
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: background-color 0.3s, transform 0.3s;
}

.services li:hover {
    background-color: #d0d3d4;
    transform: translateX(5px);
}

/* Contact Section */
.contact {
    background-color: #f4f4f4;
    padding: 60px 20px;
    margin-top: 40px;
    border-radius: 8px;
}

.contact h2 {
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #2c3e50;
}

.contact p {
    max-width: 600px;
    margin: 0 auto 20px auto;
    font-size: 1.1rem;
    color: #555;
}

.contact a {
    color: #2980b9;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

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

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #2980b9;
    box-shadow: 0 0 8px rgba(41, 128, 185, 0.2);
    outline: none;
}

.contact-form button {
    padding: 15px;
    background-color: #27ae60;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.contact-form button:hover {
    background-color: #1e8449;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: #2c3e50;
    padding: 20px 0;
    margin-top: 40px;
    color: #ecf0f1;
    text-align: center;
    font-size: 0.95rem;
}

/* Responsive Typography */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.5rem;
    }
    .hero h2 {
        font-size: 2rem;
    }
    .about h2,
    .products h2,
    .services h2,
    .contact h2 {
        font-size: 1.75rem;
    }
    .btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
}