* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* HERO */
.hero {
    background: url('../img/kapak.png') center/cover no-repeat;
    height: 100vh;
    position: relative;
}

.hero-overlay {
    background: rgba(0,0,0,0.6);
    height: 100%;
    color: #fff;
    padding: 20px;
}

.hero-text {
    margin-left: clamp(20px, 10%, 160px);
}

.hero-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-top h1 {
    margin-left: clamp(20px, 10%, 150px);
}

.hero-top nav {
    margin-right: clamp(20px, 10%, 150px);
}

.hero-top nav a {
    color: #fff;
    margin-left: 15px;
    text-decoration: none;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80%;
}

.hero-call {
    margin-right: clamp(20px, 10%, 160px);
}

.hero-call a {
    display: block;
    margin-bottom: 10px;
    padding: 12px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
	transition: all 0.3s ease;
}

.hero-call a:hover {
    transform: scale(1.07);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.call-btn {
    background: #e63946;
}

.wp-btn {
    background: #25D366;
}

.sticky-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.sticky-buttons a {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
	transition: transform 0.3s ease;
}

.sticky-call {
    background: #e63946;
}

.sticky-wp {
    background: #25D366;
}

.sticky-buttons a:hover {
    transform: scale(1.1);
}

/* SOSYAL */
.social {
    padding: 40px;
    text-align: center;
}

.instagram-feed {
    max-width: 1000px;
    margin: auto;
}

/* FOOTER */
footer {
    background: #222;
    color: #fff;
    display: flex;
    justify-content: space-around;
    padding: 30px;
}

footer a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-top: 5px;
}

/* MOBİL */
@media (max-width: 768px) {

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }

    .hero-top h1 {
        margin-left: 5%;
    }

    .hero-top nav {
        margin-right: 5%;
    }

    .hero-text {
        margin-left: 5%;
    }

    .hero-call {
        margin-right: 5%;
    }
	
	.hero-top {
        flex-direction: column;
        gap: 10px;
    }

    .hero-top nav {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-top nav a {
        padding: 6px 0;
        font-size: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important;
    }
}