/* ===== TOL LUXURY HAIRS - MAIN STYLESHEET ===== */

/* Root Variables */
:root {
    --gold: #D4AF37;
    --gold-light: #F4E8C1;
    --gold-dark: #B8960C;
    --black: #0a0a0a;
    --black-light: #111111;
    --black-lighter: #1a1a1a;
    --gray: #888888;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Loading Screen */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    width: 80px;
    height: 80px;
    position: relative;
    margin-bottom: 20px;
}

.loader-logo svg {
    width: 100%;
    height: 100%;
}

.loader-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 2s linear infinite;
}

@keyframes shimmer {
    to { background-position: 200% center; }
}

/* Desktop Layout */
.desktop-wrapper {
    max-width: 480px;
    margin: 0 auto;
    background: var(--black);
    min-height: 100vh;
    position: relative;
}

@media (min-width: 768px) {
    body {
        background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    }
    
    .desktop-wrapper {
        max-width: 600px;
        margin: 40px auto;
        border-radius: 24px;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
        min-height: calc(100vh - 80px);
        overflow: hidden;
        border: 1px solid rgba(212, 175, 55, 0.1);
    }
}

/* Header */
.header {
    padding: 40px 24px 20px;
    text-align: center;
    position: relative;
}

.profile-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    position: relative;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    animation: pulse-gold 2s ease-in-out infinite;
}

@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 0 20px 5px rgba(212, 175, 55, 0.2); }
}

.profile-image-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.profile-image-inner svg {
    width: 60%;
    height: 60%;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.brand-name .luxury {
    color: var(--gold);
    font-weight: 700;
}

.verified {
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--black);
}

.bio {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 24px 0;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    border-color: var(--gold);
}

.social-icon svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
    fill: currentColor;
}

.social-icon:hover svg {
    fill: var(--black);
}

/* WhatsApp Button */
.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 20px 24px;
    padding: 16px 24px;
    background: transparent;
    border: 2px solid var(--gold);
    border-radius: 50px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 0;
}

.whatsapp-btn:hover::before {
    transform: translateX(0);
}

.whatsapp-btn:hover {
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.whatsapp-btn svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
    fill: currentColor;
}

.whatsapp-btn span {
    position: relative;
    z-index: 1;
}

/* Links Section */
.links-container {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

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

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

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.link-card:hover::before {
    opacity: 1;
}

.link-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.05);
}

.link-image {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--black-lighter);
}

.link-content {
    flex: 1;
    min-width: 0;
}

.link-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.link-subtitle {
    color: var(--gray);
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.link-arrow {
    width: 24px;
    height: 24px;
    color: var(--gray);
    transition: var(--transition);
    flex-shrink: 0;
}

.link-card:hover .link-arrow {
    color: var(--gold);
    transform: translateX(3px);
}

/* Get in Touch Section */
.contact-section {
    margin-top: 40px;
    padding: 0 20px 40px;
    text-align: center;
}

.contact-title {
    color: var(--gray);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 500;
}

.complaint-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 16px;
    transition: var(--transition);
}

.complaint-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

.complaint-btn svg {
    width: 20px;
    height: 20px;
}

.contact-links {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
}

.contact-link svg {
    width: 18px;
    height: 18px;
}

/* Footer */
.footer {
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.footer-logo svg {
    width: 24px;
    height: 24px;
}

.copyright {
    color: var(--gray);
    font-size: 0.8rem;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* Particle Effect */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

@media (max-width: 767px) {
    .particles {
        display: none;
    }
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Desktop Enhancements */
@media (min-width: 768px) {
    .header {
        padding-top: 60px;
    }

    .profile-image {
        width: 140px;
        height: 140px;
    }

    .brand-name {
        font-size: 2rem;
    }

    .link-card {
        padding: 16px;
    }

    .link-image {
        width: 70px;
        height: 70px;
    }

    .link-title {
        font-size: 1.1rem;
    }

    .link-subtitle {
        font-size: 0.9rem;
    }

    .whatsapp-btn {
        margin: 0 40px 32px;
        padding: 18px 32px;
        font-size: 1.1rem;
    }

    .links-container {
        padding: 0 40px;
    }

    .contact-section {
        padding: 0 40px 60px;
    }
}


