/* Özel Stiller */
:root {
    --main-bg: #04042f;
    --main-color: #d3b768;
    --secondary-bg: #050545;
    --text-light: #ffffff;
    --whatsapp: #25d366;
    --telegram: #0088cc;
    --youtube: #ff0000;
}

body {
    background-color: var(--main-bg);
    font-family: 'Arial', sans-serif;
    color: var(--text-light);
    position: relative;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* Arkaplan görüntüsü stilleri */
.bg-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.4;
    pointer-events: none;
}

/* Altın vurgu animasyonu */
@keyframes goldPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(211, 183, 104, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(211, 183, 104, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(211, 183, 104, 0);
    }
}

.border-pulse {
    animation: goldPulse 2s infinite;
}

/* Mobil uyumlu düzenlemeler */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    header h1 {
        font-size: 1.8rem;
    }

    .call-button {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .big-icon {
        width: 80px;
        height: 80px;
    }
    
    .social-platform {
        margin-bottom: 20px;
    }
    
    .qr-image {
        width: 180px;
        height: 180px;
    }
    
    .social-section h2, .email-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .email-icon-container {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .email-button {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .email-small-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .rating-iframe {
        height: 240px;
    }

    .iframe-container {
        min-height: 180px;
    }
}

/* Sosyal medya için mobil özel düzenlemeler */
@media (max-width: 480px) {
    .big-icon {
        width: 70px;
        height: 70px;
    }
    
    .social-platform {
        margin-bottom: 15px;
    }
    
    .qr-image {
        width: 150px;
        height: 150px;
    }
    
    .email-card {
        padding: 15px;
    }
    
    .email-icon-container {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .email-button {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .email-small-icon {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }

    .rating-iframe-container {
        padding: 10px;
    }
    
    .rating-iframe {
        height: 260px;
    }

    .iframe-container {
        min-height: 160px;
    }
}

/* Karşılama animasyonu */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.container > * {
    animation: fadeIn 0.8s ease-out forwards;
}

.container > *:nth-child(2) {
    animation-delay: 0.2s;
}

.container > *:nth-child(3) {
    animation-delay: 0.4s;
}

/* Modern cam efekti */
.glass-effect {
    background: rgba(5, 5, 69, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(211, 183, 104, 0.2);
}

/* Logo parlaması ve netliği */
.logo-glow {
    filter: drop-shadow(0 0 10px rgba(211, 183, 104, 0.8));
    animation: logoPulse 3s infinite;
    image-rendering: -webkit-optimize-contrast; /* Logo netliği için */
    transform: translateZ(0); /* Logo netliği için */
    backface-visibility: hidden; /* Logo netliği için */
    -webkit-font-smoothing: subpixel-antialiased; /* Logo netliği için */
}

@keyframes logoPulse {
    0% {
        filter: drop-shadow(0 0 5px rgba(211, 183, 104, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(211, 183, 104, 0.8));
    }
    100% {
        filter: drop-shadow(0 0 5px rgba(211, 183, 104, 0.5));
    }
}

/* Kart hover efekti */
.hover-card {
    transition: all 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--main-color);
}

/* Arama buton stilleri */
.call-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: linear-gradient(45deg, #d3b768, #e5ca7c);
    color: #04042f;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(211, 183, 104, 0.3);
    font-size: 1.1rem;
}

.call-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(211, 183, 104, 0.4);
    background: linear-gradient(45deg, #e5ca7c, #d3b768);
}

.call-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(211, 183, 104, 0.3);
}

/* E-posta Butonu Stilleri */
.email-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: linear-gradient(45deg, #04042f, #050550);
    color: var(--main-color);
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    font-size: 1.1rem;
    border: 1px solid var(--main-color);
}

.email-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(211, 183, 104, 0.4);
    background: linear-gradient(45deg, #050550, #04042f);
    color: #ffffff;
}

.email-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(211, 183, 104, 0.3);
}

.email-small-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #04042f, #050545);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--main-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(211, 183, 104, 0.3);
    transition: all 0.3s ease;
}

.hover-card:hover .email-small-icon {
    transform: rotateY(180deg);
    color: #ffffff;
    background: linear-gradient(45deg, var(--main-color), #e5ca7c);
}

/* E-posta Bölümü Stilleri */
.email-section {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(211, 183, 104, 0.15);
    position: relative;
    overflow: hidden;
}

.email-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(211, 183, 104, 0.8), transparent);
    z-index: 1;
}

.email-card {
    background: rgba(5, 5, 69, 0.5);
    border: 1px solid rgba(211, 183, 104, 0.2);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.email-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--main-color);
}

.email-icon-container {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #04042f, #050545);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.8rem;
    color: var(--main-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(211, 183, 104, 0.3);
    transition: all 0.3s ease;
}

.email-card:hover .email-icon-container {
    transform: rotateY(180deg);
    color: #ffffff;
    background: linear-gradient(45deg, var(--main-color), #e5ca7c);
}

.email-link {
    display: inline-flex;
    align-items: center;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 25px;
    background: rgba(211, 183, 104, 0.1);
}

.email-link:hover {
    color: var(--main-color);
    background: rgba(211, 183, 104, 0.2);
    transform: scale(1.05);
}

.email-link i {
    transition: all 0.3s ease;
}

.email-link:hover i {
    transform: translateX(5px);
}

/* Sosyal Medya Özel Bölüm Stilleri */
.social-section {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(211, 183, 104, 0.15);
    position: relative;
    overflow: hidden;
}

.social-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(211, 183, 104, 0.8), transparent);
    z-index: 1;
}

/* Sosyal Medya Platform Stilleri */
.social-platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s ease;
    position: relative;
}

.social-platform::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background-color: var(--main-color);
    transition: transform 0.3s ease;
}

.social-platform:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.social-platform:hover {
    transform: translateY(-10px);
}

/* Büyük ikon stilleri */
.big-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
    transition: all 0.4s ease;
    transform-origin: center bottom;
}

.social-platform:hover .big-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 0 15px rgba(211, 183, 104, 0.7));
}

/* QR Kod Bölümü Stilleri */
.qr-section {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(211, 183, 104, 0.15);
    position: relative;
    overflow: hidden;
}

.qr-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(211, 183, 104, 0.8), transparent);
    z-index: 1;
}

.qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    position: relative;
}

.qr-image {
    width: 220px;
    height: 220px;
    object-fit: contain;
    background-color: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.qr-container:hover .qr-image {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(211, 183, 104, 0.4);
}

/* Uygulama Badge Stilleri */
.app-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(45deg, #d3b768, rgba(211, 183, 104, 0.7));
    color: #04042f;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-size: 1rem;
    margin-right: 10px;
    margin-bottom: 10px;
}

.app-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(211, 183, 104, 0.5);
    background: linear-gradient(45deg, rgba(211, 183, 104, 0.7), #d3b768);
}

/* Oylama Bölümü Stilleri */
.rating-iframe-wrapper {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.rating-iframe-wrapper iframe {
    border: none;
    background: transparent;
}

.rating-card {
    position: relative;
    background: #04042a;
    border: 1px solid #d3b768 !important;
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: none;
}

.rating-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Üst çizgi stilini kaldırıyoruz çünkü border kullanacağız */
.rating-card::before {
    content: none;
}

/* Yan çizgileri kaldırıyoruz çünkü border kullanacağız */
.rating-card::after {
    content: none;
}

/* Sağ çizgi için yeni pseudo element */
.rating-card .right-border {
    display: none;
}

/* iframe pozisyonu için yeni stil */
.flex-1.flex.flex-col.justify-between {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.flex.justify-center.mb-10 {
    margin-top: auto;
    margin-bottom: auto;
}

/* Rating iframe stilleri */
.rating-wrapper {
    max-width: 230px;
    margin: 0 auto;
    text-align: center;
}

.rating-iframe {
    max-width: 100%;
    border: none;
    display: inline-block;
}

@media (max-width: 480px) {
    .rating-wrapper {
        max-width: 200px;
    }
    
    .rating-iframe {
        transform: scale(0.95);
        transform-origin: center top;
    }
}

.iframe-container {
    min-height: 200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
}

.iframe-container iframe {
    border: none;
    background: transparent;
} 