/* Genel Stiller */
:root {
    --primary-color: #df4b4b; /* Ana kırmızı renk */
    --primary-dark: #701717;
    --text-color: #1d1d1f;
    --secondary-text: #86868b;
    --background-light: #f5f5f7;
    --border-color: #d2d2d7;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-color);
    line-height: 1.5;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Butonlar */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary-color);
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    background-color: var(--white);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 20px 0;
}

/* Dropdown Menü */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 1001;
    margin-top: 10px;
    transition: opacity 0.3s, transform 0.3s;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background-color: transparent;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-content:hover {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-content a {
    color: var(--text-color);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    transition: var(--transition);
    font-weight: 400;
}

.dropdown-content a:hover {
    background-color: var(--background-light);
    color: var(--primary-color);
}

.dropdown-arrow {
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo a {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
}

.navbar-menu {
    display: flex;
    gap: 30px;
}

.navbar-menu a {
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.navbar-menu a:hover,
.navbar-menu a.active {
    color: var(--primary-color);
}

.navbar-menu a.active:after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-color);
}

.navbar-icons {
    display: flex;
    gap: 20px;
    font-size: 16px;
        font-weight: 600;
    background: #ffb9b9;
    padding: 5px 10px;
    border-radius: 5px;
}

.navbar-icons a:hover {
    color: var(--primary-color);
}

/* Banner */
.banner {
    background-color: var(--background-light);
    background: url(https://images.pexels.com/photos/1083895/pexels-photo-1083895.jpeg?cs=srgb&dl=pexels-roonz-1083895.jpg&fm=jpg);
    background-size: cover;
    padding: 80px 0;
    text-align: center;
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.banner h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}

.banner p {
    font-size: 20px;
    color: var(--secondary-text);
    margin-bottom: 30px;
}

/* Ürünler Bölümü */
.products {
    padding: 80px 0;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.product-image {
    height: 240px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: -6px;
}

.product-description {
    color: var(--secondary-text);
    margin-bottom: 16px;
    font-size: 14px;
}

.product-price {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.section-footer {
    text-align: center;
}

/* Özellikler Bölümü */
.features {
    background-color: var(--background-light);
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-item p {
    color: var(--secondary-text);
}

/* Footer */
.footer {
    background-color: var(--text-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column p,
.footer-column li {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    font-size: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.7;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .navbar-menu {
        display: none;
    }

    /* Mobil için dropdown stilleri */
    .navbar-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
        z-index: 1000;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        margin-top: 0;
        padding-left: 20px;
        display: none;
        opacity: 1;
        transform: none;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .banner h1 {
        font-size: 36px;
    }

    .banner p {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}
/* --- Hakkımızda Sayfası Stilleri (about.php) --- */
.about-section {
    padding: 60px 0;
}

.about-section .lead-text {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: #555;
    text-align: center;
}

.mission-vision-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
}

.mission-card, .vision-card {
    flex: 1;
    background-color: #f7f7f7;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.mission-card .card-title, .vision-card .card-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-top: 0;
}

.team-section .section-heading {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.team-section ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.team-section ul li {
    background-color: #ffffff;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-left: 4px solid #df4b4b; /* Marka rengi vurgusu */
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.team-section ul li strong {
    color: #1d1d1f;
    font-weight: 600;
    margin-right: 5px;
}

/* --- İletişim Sayfası Stilleri (contact.php) --- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr; /* İki sütunlu düzen */
    gap: 60px;
    padding: 60px 0;
}

.contact-info {
    padding-right: 30px;
}

.contact-details {
    margin: 40px 0;
    display: grid;
    gap: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.detail-item .icon {
    font-size: 1.5rem;
    margin-right: 15px;
    color: #df4b4b;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background-color: #f0f0f5;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #888;
    margin-top: 30px;
}

.contact-form-wrapper {
    background-color: #f7f7f7;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'SF Pro Display', sans-serif;
    transition: border-color 0.2s;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: #df4b4b;
    outline: none;
    box-shadow: 0 0 0 2px rgba(229, 31, 55, 0.1);
}

.contact-form textarea {
    resize: vertical;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-info {
        padding-right: 0;
    }
    .mission-vision-grid {
        flex-direction: column;
    }
}
