:root {
    --primary-color: #663300;
    --secondary-color: #000000;
    --accent-color: #FF0000;
    --light-color: #FFFFFF;
    --gray-color: #F5F5F5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--light-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    height: 90px;
    display: flex;
    align-items: center;
    padding: 0 2rem;
}

.nav-container {
    display: flex;
    justify-content: center; /* Tüm içeriği tam ortalamak için */
    align-items: center;
    height: 100%;
    width: 100%;
    position: relative;
}

.logo {
    position: absolute;
    left: 2rem; /* Logoyu sol tarafa sabitle */
}

.logo img {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease, opacity 0.3s ease; /* Hover için geçiş efekti */
}

.logo img:hover {
    transform: scale(1.1); /* Hover sırasında logo biraz büyür */
    opacity: 0.8; /* Hafif saydamlık efekti */
}

/* Navigasyon Menüsü */
.nav-menu {
    display: flex;
    gap: 3rem;
    list-style: none;
    justify-content: center; /* Menü öğelerini tam ortaya alıyoruz */
    padding: 0;
}

.nav-menu li a {
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
}

.nav-menu li a:hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

@media (max-width: 768px) {
    /* Anasayfa linkini mobilde gizle */
    .nav-menu li a[href="#"],
    .nav-menu li a[href="/#"],
    .nav-menu li a[href="index.html#"],
    .nav-menu li:first-child a {
        display: none !important;
    }
    
    .nav-menu {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        flex-wrap: nowrap;
        width: 100%;
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .nav-menu li {
        flex: 0 1 auto;
    }
    
    .nav-menu li a {
        font-size: 0.8rem;
        padding: 0.3rem 0.5rem;
        white-space: nowrap;
        text-align: center;
    }
    
    .header {
        padding: 0.5rem;
    }
    
    .nav-container {
        padding: 0;
    }
    
    .logo {
        margin-bottom: 0.5rem;
    }
    
    .logo img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .nav-menu li a {
        font-size: 0.7rem;
        padding: 0.2rem 0.3rem;
    }
    
    .logo img {
        height: 35px;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 880px; /* Hero yüksekliğini tam olarak 880px yapıyoruz */
    width: 100%;
    margin-top: 90px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
}

.hero .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Görselin alanı tamamen kaplanmasını sağlar */
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5); /* Şeffaf siyah kutu */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Görselin üzerine karartma efekti */
    z-index: -1;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cta-buttons a {
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    transition: backgrou
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-primary, .cta-secondary {
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.cta-primary {
    background: var(--accent-color);
    color: var(--light-color);
}

.cta-primary:hover {
    background: #cc0000;
    transform: scale(1.05);
}

.cta-secondary {
    background: var(--light-color);
    color: var(--secondary-color);
}

.cta-secondary:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--gray-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.about-section {
    padding: 6rem 0;
    background-color: var(--gray-color);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-features i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25D366;
    color: var(--light-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* Stats Section */
.stats {
    padding: 5rem 0;
    background: var(--primary-color);
    color: var(--light-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-item h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-section {
    padding: 4rem 0;
    background: var(--gray-color);
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--gray-color);
    color: var(--secondary-color);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

/* Footer bölümleri arasındaki çizgiler */
.footer-links {
    position: relative;
}

.footer-links::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: var(--primary-color);
    opacity: 0.3;
}

.footer-logo {
    height: 80px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--secondary-color);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

/* Footer bottom firma ismi stili */
.footer-bottom span {
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-bottom span:hover {
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-logo {
        height: 70px;
    }

    .footer-links::after {
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* About Section Styles */
.about-section {
    padding: 6rem 0;
    background-color: var(--gray-color);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature-item span {
    font-weight: 500;
    color: var(--secondary-color);
}

/* Responsive Design for About Section */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .header {
        height: auto;
        padding: 1rem;
    }

    .nav-container {
        flex-direction: column;
        padding: 1rem 0;
    }

    .logo {
        position: static;
        margin-bottom: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 1rem;
    }

    .hero {
        height: auto;
        min-height: 600px;
        margin-top: 120px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-primary, .cta-secondary {
        width: 100%;
        text-align: center;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 1rem;
        right: 1rem;
    }

    .footer-logo {
        height: 60px;
    }
}

/* Hamburger Menü Stilleri */
.hamburger-menu {
    display: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        background-color: var(--light-color);
        width: 100%;
        height: auto;
        flex-direction: column;
        padding: 1rem;
        transition: 0.3s ease;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-container {
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
    }

    .logo {
        margin: 0;
    }

    /* Hamburger menü animasyonu */
    .hamburger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .nav-menu li {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }

    .nav-menu li a {
        font-size: 1rem;
        padding: 0.5rem 1rem;
        display: block;
    }
} 