:root {
    /* Colors */
    --bg-color: #0a0a0a;
    --surface-color: rgba(20, 20, 20, 0.65);
    --text-primary: #ffffff;
    --text-secondary: #9ba1a6;
    
    --color-gold: #c9a84c;
    --color-purple: #7b2fff;
    --color-cyan: #00e5ff;
    
    --glow-gold: rgba(201, 168, 76, 0.4);
    --glow-purple: rgba(123, 47, 255, 0.4);
    --glow-cyan: rgba(0, 229, 255, 0.4);
    
    /* Typography */
    --font-main: 'Outfit', sans-serif;
    
    /* Options */
    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* ---------------------------------
   Background Ambient Effects
---------------------------------- */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.background-image-layer {
    position: absolute;
    inset: 0;
    background: url('assets/Background.png') no-repeat left center;
    background-size: cover;
    opacity: 0.15;
    z-index: -2;
}


.glow {
    position: absolute;
    width: 60vh;
    height: 60vh;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
}

.glow-purple {
    top: -10%;
    right: -10%;
    background: var(--color-purple);
    animation: float 20s ease-in-out infinite alternate;
}

.glow-cyan {
    bottom: -10%;
    left: -10%;
    background: var(--color-cyan);
    animation: float 25s ease-in-out infinite alternate-reverse;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

/* ---------------------------------
   Main Container
---------------------------------- */
.container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* ---------------------------------
   Header
---------------------------------- */
.header {
    text-align: center;
    margin-bottom: 0.5rem;
}

.logo-wrapper {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-logo {
    max-width: 280px;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 15px rgba(201, 168, 76, 0.2));
}

.subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ---------------------------------
   Intro Section
---------------------------------- */
.intro-section {
    max-width: 600px;
    margin: 0 auto;
}

.intro-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.profile-photo-container {
    flex-shrink: 0;
    position: relative;
    width: 120px;
    height: 120px;
}

/* Gold Ring effect around photo */
.profile-photo-container::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    opacity: 0.5;
    animation: pulseGold 3s ease-in-out infinite;
}

@keyframes pulseGold {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.05); opacity: 0.6; }
}

.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #0a0a0a;
    position: relative;
    z-index: 1;
}

.intro-content {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.intro-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
}

.intro-name span {
    color: var(--color-gold);
    font-weight: 400;
    font-size: 0.95rem;
    display: block;
    margin-top: 2px;
}

.intro-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.intro-services {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-cyan);
    letter-spacing: 0.02em;
}

.intro-cta {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
    opacity: 0.7;
}

@media (max-width: 580px) {
    .intro-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .intro-content {
        text-align: center;
    }
    
    .profile-photo-container {
        width: 100px;
        height: 100px;
    }
}

/* ---------------------------------
   Links Container
---------------------------------- */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ---------------------------------
   Link Buttons (Base Style)
---------------------------------- */
.link-btn {
    position: relative;
    display: block;
    text-decoration: none;
    border-radius: 16px;
    overflow: hidden;
    isolation: isolate;
    transform: scale(1);
    transition: transform var(--transition), box-shadow var(--transition);
}

/* Gradient Border Mask */
.link-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 16px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.12),
        rgba(255, 255, 255, 0.02),
        rgba(255, 255, 255, 0.06)
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    mask: exclude;
    pointer-events: none;
    transition: background var(--transition);
}

.btn-bg {
    position: absolute;
    inset: 0;
    background-color: var(--surface-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: -1;
    transition: background-color var(--transition);
}

.btn-content {
    display: flex;
    align-items: center;
    padding: 1.25rem 1.75rem;
    position: relative;
    z-index: 1;
}

.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-right: 1.25rem;
    color: var(--text-primary);
    transition: color var(--transition), transform var(--transition);
}

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

.text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: transform var(--transition);
}

/* Animated Shimmer Line */
.link-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.08),
        transparent
    );
    transform: skewX(-20deg);
    transition: left 0.7s ease;
    z-index: 0;
}

/* ---------------------------------
   Hover States
---------------------------------- */
.link-btn:hover {
    transform: scale(1.02) translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.link-btn:hover::after {
    left: 200%;
}

.link-btn:hover .btn-bg {
    background-color: rgba(30, 30, 30, 0.9);
}

/* 1. Instagram */
.link-btn:nth-child(1):hover .icon { color: #E1306C; }
.link-btn:nth-child(1):hover { box-shadow: 0 10px 30px -10px rgba(225, 48, 108, 0.25); }

/* 2. TikTok */
.link-btn:nth-child(2):hover .icon { color: #00f2fe; }
.link-btn:nth-child(2):hover { box-shadow: 0 10px 30px -10px rgba(0, 242, 254, 0.25); }

/* 3. YouTube */
.link-btn:nth-child(3):hover .icon { color: #FF0000; }
.link-btn:nth-child(3):hover { box-shadow: 0 10px 30px -10px rgba(255, 0, 0, 0.25); }

/* 4. LinkedIn */
.link-btn:nth-child(4):hover .icon { color: #0077b5; }
.link-btn:nth-child(4):hover { box-shadow: 0 10px 30px -10px rgba(0, 119, 181, 0.25); }


/* ---------------------------------
   Site Vitrine Highlight Button
---------------------------------- */
.highlight-btn {
    margin-top: 1rem;
}

.highlight-btn::before {
    background: linear-gradient(
        135deg,
        var(--color-cyan),
        var(--color-purple),
        var(--color-gold)
    );
    opacity: 0.7;
}

.highlight-btn .icon {
    color: var(--color-cyan);
}

.highlight-btn:hover {
    box-shadow: 0 15px 35px -10px var(--glow-cyan);
}

.highlight-btn:hover::before {
    opacity: 1;
}

.highlight-btn::after {
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 229, 255, 0.25),
        transparent
    );
}

/* ---------------------------------
   Document HTML Button
---------------------------------- */
.document-btn:hover .icon { color: var(--color-purple); }
.document-btn:hover { box-shadow: 0 10px 30px -10px var(--glow-purple); }


/* ---------------------------------
   Contact Section
---------------------------------- */
.contact-section {
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.contact-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    position: relative;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}

.contact-form textarea {
    resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.1);
}

.submit-btn {
    background: var(--color-gold);
    color: #0a0a0a;
    border: none;
    border-radius: 12px;
    padding: 1.1rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 0.5rem;
}

.send-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.4s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px var(--glow-gold);
}

.submit-btn:hover .send-icon {
    transform: translate(3px, -3px);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.form-status {
    margin-top: 1.25rem;
    text-align: center;
    font-size: 0.9rem;
    min-height: 1.2rem;
}

.status-success {
    color: #00e5ff;
}

.status-error {
    color: #ff4d4d;
}

/* ---------------------------------
   Footer Section
---------------------------------- */
.main-footer {
    margin-top: auto;
    padding: 4rem 1.5rem 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
}

.footer-container {
    max-width: 600px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.footer-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.2));
}

.footer-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.footer-location {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-icon {
    width: 14px;
    height: 14px;
    color: var(--color-gold);
}

.footer-nav {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-column-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ffffff;
    margin-bottom: 1.25rem;
    opacity: 0.9;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--color-gold);
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon-link {
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-icon-link svg {
    width: 20px;
    height: 20px;
}

.social-icon-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

@media (max-width: 600px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2.5rem;
    }
    
    .footer-nav {
        gap: 3rem;
        flex-direction: column;
    }
    
    .footer-brand {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-social-icons {
        justify-content: center;
    }
}

/* ---------------------------------
   Initial State for Animations
---------------------------------- */
.animate-on-load {
    opacity: 0;
    visibility: hidden;
}

/* Classes handled by JS */
.fade-up-active {
    visibility: visible;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------------------------------
   Responsive
---------------------------------- */
@media (max-width: 480px) {
    .container {
        gap: 2rem;
    }
    .brand-logo {
        max-width: 220px;
    }
    .subtitle {
        font-size: 0.8rem;
        letter-spacing: 0.05em;
    }
    .btn-content {
        padding: 1.1rem 1.5rem;
    }
    .text {
        font-size: 1rem;
    }
    .icon {
        width: 22px;
        height: 22px;
        margin-right: 1.1rem;
    }
}
