/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2d5016;
    --secondary-color: #6b8e23;
    --accent-color: #d4af37;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --bg-gradient-start: #f8f4e8;
    --bg-gradient-end: #fdfbf5;
    --instagram: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    --tiktok: #000000;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: var(--text-dark);
    position: relative;
    overflow-x: hidden;
}

.container {
    position: relative;
    width: 100%;
    max-width: 500px;
    z-index: 1;
}

.content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 32px;
    padding: 48px 32px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

/* Brand Section */
.brand {
    text-align: center;
    margin-bottom: 32px;
}

.logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05) rotate(5deg);
}

.logo i {
    font-size: 36px;
    color: white;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.tagline {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
}

/* Description */
.description {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 16px;
}

.description p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Links */
.links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.link-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: white;
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

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

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

.link-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.link-card > i:first-child {
    font-size: 28px;
    width: 32px;
    text-align: center;
}

.link-card span {
    flex: 1;
}

.link-card .arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
    opacity: 0.6;
}

.link-card:hover .arrow {
    transform: translateX(6px);
    opacity: 1;
}

/* Individual Link Styles */
.link-card.instagram > i:first-child {
    background: var(--instagram);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.link-card.instagram:hover {
    border-color: #e1306c;
}

.link-card.tiktok > i:first-child {
    color: var(--tiktok);
}

.link-card.tiktok:hover {
    border-color: #00f2ea;
}

.link-card.email > i:first-child {
    color: #ea4335;
}

.link-card.email:hover {
    border-color: #ea4335;
}

.link-card.phone > i:first-child {
    color: #34a853;
}

.link-card.phone:hover {
    border-color: #34a853;
}

/* Footer */
.footer {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer p {
    font-size: 13px;
    color: #999;
}

/* Decorative Elements */
.decoration {
    position: fixed;
    border-radius: 50%;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.decoration-1 {
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    top: -200px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.decoration-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    bottom: -150px;
    left: -150px;
    animation: float 25s ease-in-out infinite reverse;
}

.decoration-3 {
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    top: 50%;
    right: -100px;
    animation: float 15s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-30px) translateX(20px);
    }
    50% {
        transform: translateY(-60px) translateX(-20px);
    }
    75% {
        transform: translateY(-30px) translateX(20px);
    }
}

/* Responsive Design */
@media (max-width: 600px) {
    .content {
        padding: 40px 24px;
        border-radius: 24px;
    }

    .brand-name {
        font-size: 36px;
    }

    .tagline {
        font-size: 12px;
    }

    .description p {
        font-size: 15px;
    }

    .link-card {
        padding: 18px 20px;
        font-size: 16px;
    }

    .link-card > i:first-child {
        font-size: 24px;
    }

    .logo {
        width: 70px;
        height: 70px;
    }

    .logo i {
        font-size: 32px;
    }
}

@media (max-width: 400px) {
    body {
        padding: 12px;
    }

    .content {
        padding: 32px 20px;
    }

    .brand-name {
        font-size: 32px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
    }

    .decoration {
        display: none;
    }

    .link-card {
        border: 1px solid #ddd;
    }
}

