* {
    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 {
    display: inline-block;
    padding: 8px 16px;
    margin-left: 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
	-webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.hero-top nav a:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

.hero-top nav a:active {
    background: #5c71bd;     
    border-color: #5c71bd;
    color: #fff;
}

.hero-top nav a:active:hover {
    background: #384675;
    transform: translateY(-2px) scale(1.03);
}

.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);
}

.hero-phone {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #38bdf8;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(56,189,248,0.6);
    text-decoration: none;
    display: inline-block;
}

.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 {
        margin: 5px 0;
        width: 100%;
        text-align: center;
    }
	
}

@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important;
    }
}