:root {
    --primary-color: #0d1b2a; /* Deep Navy / Lujo Sereno */
    --primary-light: #1b263b;
    --accent-color: #d4af37; /* Gold / Champagne */
    --accent-glow: rgba(212, 175, 55, 0.4);
    --bg-color: #f7f5f0; /* Warm Canvas / Crema */
    --bg-card: rgba(255, 255, 255, 0.85); /* Glassmorphism Base */
    --text-color: #2b2d42;
    --text-muted: #6c757d;
    --white: #ffffff;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(212, 175, 55, 0.05), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(13, 27, 42, 0.03), transparent 25%);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 2rem 1rem;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-weight: 600;
}

/* Glassmorphism Container */
.container {
    max-width: 600px; /* Slimmer, more elegant profile */
    width: 100%;
    padding: 3.5rem 2.5rem;
    text-align: center;
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.04),
        0 1px 3px rgba(0, 0, 0, 0.02),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    margin: 0 auto;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards;
}

/* Subtle Top Accent Line */
.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    border-radius: 3px 3px 0 0;
}

/* Brand Imagery */
.header-logo {
    max-width: 220px;
    height: auto;
    margin-bottom: 2.5rem;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.05));
    transition: var(--transition-smooth);
}

.header-logo:hover {
    transform: scale(1.02);
}

.profile-container {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.profile-pic {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: 0 10px 25px rgba(13, 27, 42, 0.15);
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.profile-pic:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(13, 27, 42, 0.2);
}

/* Typography elements */
.name-title {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.role-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    color: #b08d28; /* Slightly darker gold for text contrast */
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.05);
}

.uca-logo {
    max-width: 90px;
    display: block;
    margin: 0 auto 2.5rem auto;
    background-color: var(--primary-color);
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(13, 27, 42, 0.12);
    transition: var(--transition-smooth);
}

.uca-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(13, 27, 42, 0.2);
}

/* Loading Section */
.loading-section {
    margin: 2.5rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(13, 27, 42, 0.05);
    position: relative;
    overflow: hidden;
}

.loading-title {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.progress-wrapper {
    width: 100%;
    background-color: rgba(13, 27, 42, 0.05);
    border-radius: 20px;
    height: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    width: 0%;
    border-radius: 20px;
    transition: width 2.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 2s infinite;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    margin-top: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Interactive Links */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--primary-color);
    background: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(13, 27, 42, 0.08);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.social-link:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
}

.social-icon {
    width: 22px;
    height: 22px;
}

/* Booking Section */
.booking-section {
    padding-top: 2.5rem;
    margin-top: 2.5rem;
    border-top: 1px solid rgba(13, 27, 42, 0.08);
}

.booking-text {
    font-size: 1.05rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.aden-logo {
    max-width: 160px;
    margin-bottom: 2rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.05));
    transition: var(--transition-smooth);
}

.aden-logo:hover {
    transform: scale(1.03);
}

.btn-booking {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 1.1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-size: 1.05rem;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 20px rgba(13, 27, 42, 0.2);
    border: 1px solid transparent;
    width: 100%;
}

.btn-booking:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(13, 27, 42, 0.3);
    color: var(--white);
}

/* Footer Element */
.footer {
    margin-top: 3rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

/* Animations */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    body {
        padding: 0;
    }
    
    .container {
        border-radius: 0;
        border: none;
        box-shadow: none;
        padding: 2.5rem 1.5rem;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .container::before {
        display: none;
    }
    
    .name-title {
        font-size: 1.8rem;
    }
    
    .profile-pic {
        width: 140px;
        height: 140px;
    }
}
