/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #181D23;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Links Container */
.links-container {
    width: 100%;
    max-width: 500px;
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Profile Section */
.profile-section {
    text-align: center;
    margin-bottom: 40px;
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-image {
    margin-bottom: 24px;
}

.profile-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.profile-image img:hover {
    transform: scale(1.05);
}

.profile-section h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #181D23;
}

.profile-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #6B7280;
    margin-bottom: 12px;
}

.profile-description {
    font-size: 14px;
    color: #9CA3AF;
    line-height: 1.5;
    max-width: 400px;
    margin: 0 auto;
}

/* Links Section */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

/* Link Button */
.link-button {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 16px;
    text-decoration: none;
    color: #181D23;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    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.3), transparent);
    transition: left 0.5s ease;
}

.link-button:hover::before {
    left: 100%;
}

.link-button:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

/* Link Button Variants */
.link-button.schedule {
    background: linear-gradient(135deg, rgba(206, 178, 95, 0.1) 0%, rgba(206, 178, 95, 0.05) 100%);
    border-color: rgba(206, 178, 95, 0.2);
}

.link-button.schedule:hover {
    background: linear-gradient(135deg, rgba(206, 178, 95, 0.2) 0%, rgba(206, 178, 95, 0.1) 100%);
    border-color: rgba(206, 178, 95, 0.3);
}

.link-button.instagram {
    background: linear-gradient(135deg, rgba(206, 178, 95, 0.1) 0%, rgba(206, 178, 95, 0.05) 100%);
    border-color: rgba(206, 178, 95, 0.2);
}

.link-button.instagram:hover {
    background: linear-gradient(135deg, rgba(206, 178, 95, 0.2) 0%, rgba(206, 178, 95, 0.1) 100%);
    border-color: rgba(206, 178, 95, 0.3);
}

.link-button.website {
    background: linear-gradient(135deg, rgba(206, 178, 95, 0.1) 0%, rgba(206, 178, 95, 0.05) 100%);
    border-color: rgba(206, 178, 95, 0.2);
}

.link-button.website:hover {
    background: linear-gradient(135deg, rgba(206, 178, 95, 0.2) 0%, rgba(206, 178, 95, 0.1) 100%);
    border-color: rgba(206, 178, 95, 0.3);
}

.link-button.location {
    background: linear-gradient(135deg, rgba(206, 178, 95, 0.1) 0%, rgba(206, 178, 95, 0.05) 100%);
    border-color: rgba(206, 178, 95, 0.2);
}

.link-button.location:hover {
    background: linear-gradient(135deg, rgba(206, 178, 95, 0.2) 0%, rgba(206, 178, 95, 0.1) 100%);
    border-color: rgba(206, 178, 95, 0.3);
}

/* Link Icon */
.link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.link-button.schedule .link-icon {
    background: rgba(206, 178, 95, 0.15);
    color: #CEB25F;
}

.link-button.instagram .link-icon {
    background: rgba(206, 178, 95, 0.15);
    color: #CEB25F;
}

.link-button.website .link-icon {
    background: rgba(206, 178, 95, 0.15);
    color: #CEB25F;
}

.link-button.location .link-icon {
    background: rgba(206, 178, 95, 0.15);
    color: #CEB25F;
}

.link-button:hover .link-icon {
    transform: scale(1.1);
}

/* Link Content */
.link-content {
    flex: 1;
    text-align: left;
}

.link-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #181D23;
}

.link-content p {
    font-size: 13px;
    color: #6B7280;
}

/* Link Arrow */
.link-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #9CA3AF;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.link-button:hover .link-arrow {
    color: #181D23;
    transform: translateX(4px);
}

/* Footer Section */
.footer-section {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    animation: slideUp 0.8s ease-out 0.2s both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-section p {
    font-size: 13px;
    color: #9CA3AF;
    margin: 4px 0;
}

.footer-section p:first-child {
    font-weight: 600;
    color: #6B7280;
}

.footer-link {
    color: #CEB25F;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #A68A47;
    text-decoration: underline;
}

/* Back Button Section */
.back-button-section {
    margin-top: 30px;
    margin-bottom: 20px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: #CEB25F;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid rgba(206, 178, 95, 0.3);
    background: rgba(206, 178, 95, 0.05);
    transition: all 0.3s ease;
}

.back-button:hover {
    background: rgba(206, 178, 95, 0.15);
    border-color: rgba(206, 178, 95, 0.5);
    transform: translateX(-4px);
}

.footer-text {
    font-size: 12px;
    color: #D1D5DB;
}

/* Responsive Design */
@media (max-width: 480px) {
    .links-container {
        max-width: 100%;
    }

    .profile-section h1 {
        font-size: 24px;
    }

    .link-button {
        padding: 18px 20px;
        gap: 12px;
    }

    .link-icon {
        width: 44px;
        height: 44px;
    }

    .link-content h3 {
        font-size: 15px;
    }

    .link-content p {
        font-size: 12px;
    }

    .profile-image img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 360px) {
    body {
        padding: 16px;
    }

    .profile-section {
        margin-bottom: 32px;
    }

    .links-section {
        gap: 12px;
    }

    .link-button {
        padding: 16px 16px;
        gap: 12px;
    }

    .link-icon {
        width: 40px;
        height: 40px;
    }

    .link-content h3 {
        font-size: 14px;
    }

    .profile-section h1 {
        font-size: 22px;
    }
}
