/* Reset ve Temel Stiller */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

/* Erişilebilirlik */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: white;
    padding: 8px;
    z-index: 100;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.navbar-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff5625;
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar-brand a:hover {
    color: #e04115;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-link {
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff5625;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://picsum.photos/seed/serikemlak/1920/1080.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

/* Signboard Animations */
.signboard-wrapper {
    width: 105vmin;
    height: 55vmin;
    position: relative;
    flex-shrink: 0;
    transform-origin: center 2.5vmin;
    animation: 1000ms init forwards, 1000ms init-sign-move ease-out 1000ms, 3000ms sign-move 2000ms infinite;
}

/* --- SADECE BU KISIM DEĞİŞTİ --- */
.signboard {
    color: #ffffff;
    font-weight: bold;
    background-color: #ff5625;
    
    /* Sabit width ve height kaldırıldı */
    display: inline-block; /* Yazıya göre boyutlanması için */
    padding: 2vmin 6vmin;   /* Yazı etrafındaki boşluk */
    
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%); /* Yatayda ortalamak için */
    border-radius: 4vmin;
    text-shadow: 0 -0.015em #be2b00;
    font-size: 200px;
    box-shadow: 0 10px 30px rgba(255, 86, 37, 0.3);
    white-space: nowrap; /* Yazının alt satıra inmesini engeller */
}
/* --- DEĞİŞİKLİK SONU --- */

.string {
    width: 30vmin;
    height: 30vmin;
    border: solid 0.9vmin #893d00;
    border-bottom: none;
    border-right: none;
    position: absolute;
    left: 50%;
    transform-origin: top left;
    transform: rotatez(45deg);
}

.pin {
    width: 5vmin;
    height: 5vmin;
    position: absolute;
    border-radius: 50%;
}

.pin.pin1 {
    background-color: #9f9f9f;
    top: 0;
    left: calc(50% - 2.5vmin);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.pin.pin2,
.pin.pin3 {
    background-color: #d83000;
    top: 18.5vmin;
    box-shadow: 0 2px 5px rgba(216, 48, 0, 0.3);
}

.pin.pin2 {
    left: 30vmin;
}

.pin.pin3 {
    right: 30vmin;
}

/* Animations */
@keyframes init {
    0% {
        transform: scale(0);
    }
    40% {
        transform: scale(1.1);
    }
    60% {
        transform: scale(0.9);
    }
    80% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes init-sign-move {
    100% {
        transform: rotatez(3deg);
    }
}

@keyframes sign-move {
    0% {
        transform: rotatez(3deg);
    }
    50% {
        transform: rotatez(-3deg);
    }
    100% {
        transform: rotatez(3deg);
    }
}

/* Info Section */
.info-section {
    padding: 80px 0;
    background-color: #fff;
}

.content-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.content-card h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    position: relative;
    display: inline-block;
}

.content-card h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ff5625;
}

.content-card p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    text-align: left;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 2rem;
    color: #ff5625;
    margin-right: 15px;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #333;
}

.phone-button {
    color: #007BFF;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 600;
    transition: color 0.3s ease;
}

.phone-button:hover {
    color: #0056b3;
}

.phone-link {
    color: #007BFF;
    text-decoration: none;
    font-weight: 600;
}

/* Domain Features */
.domain-features {
    text-align: left;
    margin-top: 40px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.domain-features h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.domain-features ul {
    list-style: none;
}

.domain-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.domain-features i {
    color: #28a745;
    margin-right: 10px;
    font-size: 1.2rem;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    font-size: 16px;
    gap: 10px;
    transition: all 0.3s ease;
    font-weight: bold;
    z-index: 9999;
}

.whatsapp-float:hover {
    background-color: #1EBE57;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    font-size: 24px;
}

.whatsapp-text {
    display: inline-block;
}

/* Mobile Info Banner */
.mobile-info {
    display: none;
    position: fixed;
    bottom: 70px;
    left: 0;
    width: 100%;
    text-align: center;
    background-color: #fff;
    color: #000;
    padding: 10px;
    font-size: 14px;
    z-index: 9998;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

footer p {
    margin-bottom: 10px;
}

footer a {
    color: #ff5625;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #e04115;
}

/* Responsive Design */
@media (max-width: 768px) {
    .signboard {
        font-size: 82px;
        padding: 1.5vmin 4vmin; /* Mobilde padding biraz küçültüldü */
    }
    
    .whatsapp-float {
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        border-radius: 0;
        justify-content: center;
        font-size: 16px;
        padding: 15px 0;
    }
    
    .whatsapp-text {
        display: inline-block;
    }
    
    .mobile-info {
        display: block;
    }
    
    .content-card {
        padding: 30px 20px;
    }
    
    .content-card h2 {
        font-size: 2rem;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-item {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 576px) {
    .signboard-wrapper {
        width: 90vmin;
        height: 50vmin;
    }
    
    .signboard {
        font-size: 60px;
        padding: 10px 25px; /* Küçük ekranlar için px bazlı padding */
    }
    
    .string {
        width: 25vmin;
        height: 25vmin;
    }
    
    .pin {
        width: 4vmin;
        height: 4vmin;
    }
    
    .pin.pin1 {
        left: calc(50% - 2vmin);
    }
    
    .pin.pin2,
    .pin.pin3 {
        top: 18vmin;
    }
    
    .pin.pin2 {
        left: 25vmin;
    }
    
    .pin.pin3 {
        right: 25vmin;
    }
}