/* Gümüş Pestil - Yenileniyoruz Sayfası Stilleri */

/* Genel stil ayarları */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: rgba(37, 211, 102, 0.4);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: url('assets/images/body-bottom-bg.png');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% auto;
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

.container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Ana içerik kutusu */
.renewal-box {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    text-align: center;
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Logo alanı */
.logo {
    margin-bottom: 30px;
}

.logo img {
    max-width: 150px;
    height: auto;
}

/* Metin stilleri */
h1 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #222;
    font-weight: 600;
}

.message {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #555;
}

/* WhatsApp butonu ve bölümü */
.whatsapp-section {
    margin: 30px 0;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-button i {
    font-size: 20px;
    margin-right: 10px;
}

.phone-number {
    margin-top: 20px;
    font-size: 15px;
    color: #666;
}

.phone-number a {
    color: #0078d7;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.phone-number a:hover {
    color: #005a9e;
    text-decoration: underline;
}

/* Footer stili */
.footer {
    margin-top: 40px;
    font-size: 14px;
    color: #888;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

/* Mobil uyumluluk */
@media (max-width: 480px) {
    .renewal-box {
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    .message {
        font-size: 15px;
    }
    
    .whatsapp-button {
        padding: 12px 20px;
        font-size: 15px;
    }
} 