/* Genel Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    line-height: 1.6;
}

.container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

/* Header Section */
.header-section {
    margin-bottom: 30px;
}

.main-title {
    font-size: 1.8em;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.main-subtitle {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 20px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.4;
}

/* Logo Stilleri */
.logo-container {
    margin-bottom: 25px;
}

.main-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.05);
}

/* Section Title */
.section-title {
    font-size: 1.5em;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    text-align: left;
}

/* Link Butonları */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.link-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.link-button:hover::before {
    left: 100%;
}

.link-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.link-button:active {
    transform: translateY(0);
}

.link-content {
    display: flex;
    align-items: center;
    flex: 1;
}

.link-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
    flex-shrink: 0;
}

.link-button:hover .link-icon {
    filter: brightness(1);
}

.link-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.platform-name {
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}

.platform-description {
    font-size: 0.85em;
    color: #666;
    font-weight: 300;
    line-height: 1.3;
}

.arrow {
    font-size: 1.2em;
    color: #999;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.link-button:hover .arrow {
    color: #667eea;
    transform: translateX(3px);
}

/* Platform Özel Renkler */
.link-button[data-platform="instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #e6683c;
}

.link-button[data-platform="instagram"]:hover .platform-name,
.link-button[data-platform="instagram"]:hover .platform-description,
.link-button[data-platform="instagram"]:hover .arrow {
    color: white;
}

.link-button[data-platform="tiktok"]:hover {
    background: linear-gradient(45deg, #000000, #ff0050);
    border-color: #ff0050;
}

.link-button[data-platform="tiktok"]:hover .platform-name,
.link-button[data-platform="tiktok"]:hover .platform-description,
.link-button[data-platform="tiktok"]:hover .arrow {
    color: white;
}

.link-button[data-platform="facebook"]:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.link-button[data-platform="facebook"]:hover .platform-name,
.link-button[data-platform="facebook"]:hover .platform-description,
.link-button[data-platform="facebook"]:hover .arrow {
    color: white;
}

.link-button[data-platform="google"]:hover {
    background: linear-gradient(45deg, #4285f4, #ea4335);
    border-color: #4285f4;
}

.link-button[data-platform="google"]:hover .platform-name,
.link-button[data-platform="google"]:hover .platform-description,
.link-button[data-platform="google"]:hover .arrow {
    color: white;
}

.link-button[data-platform="website"]:hover {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-color: #667eea;
}

.link-button[data-platform="website"]:hover .platform-name,
.link-button[data-platform="website"]:hover .platform-description,
.link-button[data-platform="website"]:hover .arrow {
    color: white;
}

.link-button[data-platform="ubereats"]:hover {
    background: #06c167;
    border-color: #06c167;
}

.link-button[data-platform="ubereats"]:hover .platform-name,
.link-button[data-platform="ubereats"]:hover .platform-description,
.link-button[data-platform="ubereats"]:hover .arrow {
    color: white;
}

.link-button[data-platform="doordash"]:hover {
    background: #ff3008;
    border-color: #ff3008;
}

.link-button[data-platform="doordash"]:hover .platform-name,
.link-button[data-platform="doordash"]:hover .platform-description,
.link-button[data-platform="doordash"]:hover .arrow {
    color: white;
}

.link-button[data-platform="postmates"]:hover {
    background: #000000;
    border-color: #000000;
}

.link-button[data-platform="postmates"]:hover .platform-name,
.link-button[data-platform="postmates"]:hover .platform-description,
.link-button[data-platform="postmates"]:hover .arrow {
    color: white;
}

/* Footer */
.footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.footer p {
    font-size: 0.9em;
    color: #888;
    font-weight: 300;
    margin-bottom: 5px;
}

.footer-tagline {
    font-size: 0.8em;
    color: #999;
    font-weight: 300;
    font-style: italic;
}

/* Responsive Tasarım */
@media (max-width: 480px) {
    .container {
        padding: 25px 20px;
        margin: 10px;
    }
    
    .main-title {
        font-size: 1.6em;
    }
    
    .main-subtitle {
        font-size: 0.85em;
    }
    
    .main-logo {
        width: 80px;
        height: 80px;
    }
    
    .section-title {
        font-size: 1.3em;
    }
    
    .link-button {
        padding: 15px 18px;
    }
    
    .link-icon {
        width: 35px;
        height: 35px;
        margin-right: 12px;
    }
    
    .platform-name {
        font-size: 1em;
    }
    
    .platform-description {
        font-size: 0.8em;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 20px 15px;
    }
    
    .main-title {
        font-size: 1.4em;
    }
    
    .main-subtitle {
        font-size: 0.8em;
    }
    
    .main-logo {
        width: 70px;
        height: 70px;
    }
    
    .section-title {
        font-size: 1.2em;
    }
    
    .link-button {
        padding: 12px 15px;
    }
    
    .link-icon {
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }
    
    .platform-name {
        font-size: 0.95em;
    }
    
    .platform-description {
        font-size: 0.75em;
    }
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.link-button {
    animation: fadeInUp 0.6s ease forwards;
}

.link-button:nth-child(1) { animation-delay: 0.1s; }
.link-button:nth-child(2) { animation-delay: 0.2s; }
.link-button:nth-child(3) { animation-delay: 0.3s; }
.link-button:nth-child(4) { animation-delay: 0.4s; }
.link-button:nth-child(5) { animation-delay: 0.5s; }
.link-button:nth-child(6) { animation-delay: 0.6s; }
.link-button:nth-child(7) { animation-delay: 0.7s; }
.link-button:nth-child(8) { animation-delay: 0.8s; }

/* Modal Styles */
.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.2s ease;
}

.modal.show .modal-content {
    transform: scale(1);
}

.modal-header {
    padding: 20px 20px 10px 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
}

.close-modal {
    font-size: 24px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.close-modal:hover {
    color: #333;
}

.modal-body {
    padding: 20px;
}

.location-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.location-option {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    font-family: inherit;
    overflow: hidden;
    position: relative;
}

.location-option:hover {
    border-color: #667eea;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.location-image {
    width: 100%;
    height: 110px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.location-option:hover .location-image img {
    transform: scale(1.05);
}

.location-name {
    display: block;
    font-size: 1em;
    font-weight: 600;
    color: #333;
    padding: 12px;
    transition: color 0.2s ease;
    background: white;
}

.location-option:hover .location-name {
    color: #667eea;
}

/* Responsive Modal */
@media (max-width: 480px) {
    .modal-content {
        width: 100%;
    }
    
    .modal-header {
        padding: 15px 15px 10px 15px;
    }
    
    .modal-body {
        padding: 15px;
    }
    
    .location-image {
        height: 90px;
    }
    
    .location-name {
        padding: 10px;
        font-size: 0.95em;
    }
} 