/*
Theme Name: CityCom Theme
Description: Modernes Link-in-Bio Theme für City Com Augsburg
Version: 1.0
Author: Dein Entwickler
*/

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a0a2a;
    color: #ffffff;
    transition: background-color 0.3s ease;
}

body.dark {
    background-color: #000000;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    text-align: center;
    margin-bottom: 40px;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
    margin-bottom: 20px;
}

.title {
    font-size: 2rem;
    margin: 10px 0;
    color: #ffffff;
}

.subtitle {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icon {
    display: inline-block;
    width: 32px;
    height: 32px;
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

.social-icon.facebook { color: #1877F2; }
.social-icon.instagram { 
    background: linear-gradient(45deg, #E1306C, #FF8E3C, #F94A4C, #3D5AFE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.social-icon.tiktok { color: #000000; }
.social-icon.twitter { color: #1DA1F2; }
.social-icon.youtube { color: #FF0000; }

.main-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.offer-button {
    display: block;
    padding: 15px 20px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    background-color: #4CAF50;
    border-radius: 8px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.offer-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.offer-button.rounded {
    border-radius: 50px;
}

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

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #333;
    margin-top: 20px;
}

.footer a {
    color: #6666ff;
    text-decoration: none;
    margin: 0 10px;
}

.footer a:hover {
    text-decoration: underline;
}

.dark-mode-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    cursor: pointer;
    z-index: 1000;
}

/* Button Farben */
.offer-button.green { background-color: #4CAF50; }
.offer-button.blue { background-color: #2196F3; }
.offer-button.red { background-color: #f44336; }
.offer-button.purple { background-color: #9C27B0; }
.offer-button.orange { background-color: #FF9800; }

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .title {
        font-size: 1.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .main-content {
        grid-template-columns: 1fr;
    }
}