:root {
    --primary-color: #F26101;
    --secondary-color: #D9E8F5;
    --text-color: #333333;
    --background-color: #FFFFFF;
    --accent-color: #2C3E50;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
}

.digital-marketing-strategy {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

h1,
h2,
h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

/* Hero Bölümü */
.hero {
    background-color: var(--primary-color);
    color: var(--background-color);
    text-align: center;
    padding: 80px 20px;
    margin: -40px -20px 60px;
    border-radius: 0 0 50px 50px;
    background-image: linear-gradient(45deg, var(--primary-color), var(--accent-color));
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--background-color);
}

.hero p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto;
}

/* Hizmetler Bölümü */
.services {
    margin-bottom: 60px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: var(--background-color);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--secondary-color);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.service-item h3 {
    color: var(--primary-color);
    margin-top: 0;
}

/* Neden Biz Bölümü */
.why-choose-us {
    background-color: var(--accent-color);
    color: var(--background-color);
    padding: 60px 40px;
    border-radius: 15px;
    margin-bottom: 60px;
}

.why-choose-us h2 {
    color: var(--background-color);
}

.why-choose-us ul {
    list-style-type: none;
    padding-left: 0;
}

.why-choose-us li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.why-choose-us li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Görsel Bölümü */
.image-showcase {
    text-align: center;
    margin-bottom: 60px;
}

.image-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.image-container img {
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-width: 100%;
    height: auto;
}

.image-container img:hover {
    transform: scale(1.05);
}

/* CTA Bölümü */
.cta {
    background-color: var(--secondary-color);
    color: var(--accent-color);
    text-align: center;
    padding: 80px 40px;
    border-radius: 15px;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: var(--accent-color);
    transform: scale(1.05);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2em;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .image-container {
        flex-direction: column;
        align-items: center;
    }

    .why-choose-us,
    .cta {
        padding: 40px 20px;
    }
}

body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    background-color: #D9E8F5;
    color: #F26101;
}

/* Navbar stili */
.navbar {
    background-color: #F26101;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 800;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #222831;
}

/* Footer Kısmı */
.site-footer {
    background-color: #1e1e1e;
    color: #ffffff;
    padding: 50px 0 20px;
    font-family: Arial, sans-serif;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo,
.footer-links,
.footer-contact {
    flex: 1;
    margin-right: 30px;
}

.footer-logo h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 14px;
    line-height: 1.5;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    padding: 20px 20px 0;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
}

.social-icons a {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-left: 10px;
    background-size: contain;
    background-repeat: no-repeat;
}

.icon-twitter {
    background-image: url('path/to/twitter-icon.png');
}

.icon-facebook {
    background-image: url('path/to/facebook-icon.png');
}

.icon-instagram {
    background-image: url('path/to/instagram-icon.png');
}

.icon-dribbble {
    background-image: url('path/to/dribbble-icon.png');
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-logo,
    .footer-links,
    .footer-contact {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .social-icons {
        margin-top: 20px;
    }
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    /* Change to white */
    margin: 5px 0;
    transition: 0.4s;
}

@media screen and (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }

    .nav-links-container {
        display: none;
        position: fixed;
        top: 0;
        right: 0;

        width: 40%;
        /* Set to 50% of the screen */
        height: 100vh;
        background-color: #fff;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
        transition: 0.3s;
    }

    .nav-links-container.active {
        display: block;
    }

    @media screen and (max-width: 768px) {
        .nav-links {
            flex-direction: column;
            padding-top: 60px;
            /* Add space for the logo */
        }

        .nav-links a {
            padding: 15px;
            width: 100%;
            text-align: center;
            color: #000;
            /* Set to black */
            text-decoration: none;
            transition: 0.3s;
        }

        .nav-links a:hover {
            color: #FFA500;
            /* Change to orange on hover */
            background-color: rgba(255, 165, 0, 0.1);
            /* Light orange background */
        }
    }
}

.close-menu {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #000;
}

/* Hide close-menu button on desktop */
@media screen and (min-width: 769px) {
    .close-menu {
        display: none;
    }
}