* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #fefdfb;
    --bg-secondary: #f8f6f3;
    --text-primary: #2d2d2d;
    --text-secondary: #6b6b6b;
    --accent-gold: #d4af37;
    --accent-rose-gold: #e8b4a0;
    --accent-champagne: #f5e6d3;
    --button-bg: linear-gradient(135deg, #fefdfb 0%, #f5e6d3 100%);
    --button-hover: linear-gradient(135deg, #f5e6d3 0%, #e8b4a0 100%);
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(212, 175, 55, 0.15);
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header {
    margin-bottom: 50px;
    padding: 40px 20px;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 30px;
    background: var(--button-bg);
    background-image: url('https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/9eb62eac3123eda5445d347c40bb1d6a~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=9640&refresh_token=3955137b&x-expires=1758510000&x-signature=YlG%2FBx8sa%2Fz30RRCHptAQcj2iwM%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=81f88b70&idc=useast8');
    background-size: cover;
    background-position: center;
    border: 3px solid var(--accent-champagne);
    box-shadow: var(--shadow-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--accent-gold);
    position: relative;
    overflow: hidden;
    animation: glowBreathe 3s ease-in-out infinite;
}

.profile-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.profile-image .fas {
    position: relative;
    z-index: 2;
}

.profile-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes glowBreathe {
    0%, 100% {
        box-shadow: 
            var(--shadow-subtle),
            0 0 20px rgba(212, 175, 55, 0.3),
            0 0 40px rgba(212, 175, 55, 0.1);
    }
    50% {
        box-shadow: 
            var(--shadow-subtle),
            0 0 30px rgba(212, 175, 55, 0.6),
            0 0 60px rgba(212, 175, 55, 0.3),
            0 0 80px rgba(212, 175, 55, 0.1);
    }
}

.title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.links-section {
    margin-bottom: 60px;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 25px;
    margin-bottom: 15px;
    background: var(--button-bg);
    border: 1px solid var(--accent-champagne);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1rem;
    box-shadow: var(--shadow-subtle);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.link-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--button-hover);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.link-button:hover::before {
    opacity: 1;
}

.link-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-gold);
}

.link-button .icon {
    font-size: 24px;
    margin-right: 15px;
    width: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.link-button .text {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    font-size: 18px;
}

.text {
    font-family: 'Montserrat';
}

.instagram { color: #E4405F; }
.tiktok { color: #000000; }
.facebook { color: #1877F2; }
.book-now { color: var(--accent-gold); }
.business-card { color: var(--accent-rose-gold); }

.overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.overlay-content {
    background: #fff;
    border-radius: 20px;
    padding: 50px 20px 40px;
    text-align: center;
    max-width: 90%;
    width: 350px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    animation: fadeInUp 0.4s ease;
    position: relative;
}
.overlay-content h2 {
    font-size: 17px;
}
  
#couponCode {
    font-size: 2rem;
    font-weight: bold;
    margin: 20px 0;
    color: #b4905a;
}
#couponCodeFacials, #couponCodeSprayTan {
    font-size: 1.8rem;
    color: #d4af37;
    margin: 10px 0 0 !important;
}
  
.close-x {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.close-x:hover {
    color: #666;
    background: rgba(0,0,0,0.05);
}

.book-redirect {
    font-family: 'Montserrat';
    padding: 15px 20px;
    margin: 18px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--button-bg);
    border: 1px solid var(--accent-champagne);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1rem;
    box-shadow: var(--shadow-subtle);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: opacity 0.3s ease;
    z-index: 1;
}
.book-redirect:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity:0;
}

.book-redirect:hover::before {
    opacity: 1;
}

.book-redirect:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.footer {
    padding: 40px 20px;
    border-top: 1px solid var(--accent-champagne);
    background: var(--bg-secondary);
    border-radius: 20px;
    margin-top: 40px;
}

.footer-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.footer-cta {
    font-size: 1.1rem;
    color: var(--accent-gold);
    font-weight: 500;
}

@media (max-width: 600px) {
    .header {
        margin-bottom: 0px !important;
        padding: 0px 20px 40px !important;
    }
    
    .link-button .text {
        font-size: 14px !important;
    }
    
    .container {
        padding: 10px;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .link-button {
        padding: 16px 20px;
    }

    #couponCodeFacials, #couponCodeSprayTan {
        font-size: 1.6rem;
        color: #d4af37;
        margin: 10px 0 0 !important;
    }

    .overlay-content {
        width: 90%;
    }

    .overlay-content h2 {
        font-size: 15px !important;
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
    from { 
        transform: translateY(40px); 
        opacity: 0; 
    }
    to { 
        transform: translateY(0); 
        opacity: 1; 
    }
}