/* ==========================================================================
   SOFIA MARQUES - SIGNATURE PAGE STYLING
   Author: Sofia Marques
   Branding colors: Burgundy (#710F1C), Amber (#FFB039), Off-white (#F9F9FB)
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Chivo:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700&display=swap');

:root {
    /* Color Palette */
    --primary: #710F1C;
    --primary-light: #911A29;
    --secondary: #FFB039;
    --secondary-dark: #E09623;
    --accent: #D0172D;
    --white: #ffffff;
    
    /* Neutral colors */
    --text-dark: #1C1D21;
    --text-muted: #575A65;
    --bg-light: #F9F9FB;
    --bg-gradient: linear-gradient(135deg, #F9F9FB 0%, #F3F3F6 100%);
    --card-bg: rgba(255, 255, 255, 0.82);
    --border-color: rgba(113, 15, 28, 0.08);
    --border-light: rgba(255, 255, 255, 0.6);
    
    /* Typography */
    --font-heading: 'Chivo', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Shadow & Transitions */
    --shadow-soft: 0 20px 50px rgba(113, 15, 28, 0.04);
    --shadow-strong: 0 30px 60px rgba(113, 15, 28, 0.1);
    --shadow-button: 0 10px 25px rgba(113, 15, 28, 0.15);
    --shadow-button-sec: 0 10px 25px rgba(255, 176, 57, 0.1);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.2s ease;
}

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

html, body {
    width: 100%;
    min-height: 100vh;
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--bg-gradient) no-repeat fixed;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.6;
}

/* Background Animated Shapes for Premium Depth */
.bg-decorations {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.06;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background-color: var(--primary);
    top: -100px;
    right: -100px;
    animation: floating 12s infinite alternate ease-in-out;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background-color: var(--secondary);
    bottom: -150px;
    left: -150px;
    animation: floating-reverse 15s infinite alternate ease-in-out;
}

@keyframes floating {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(40px) scale(1.1); }
}

@keyframes floating-reverse {
    0% { transform: translateY(0) scale(1.1); }
    100% { transform: translateY(-50px) scale(0.9); }
}

/* Main Container */
.main-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 600px;
    padding: 24px;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* Glassmorphism Profile Card */
.profile-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: 32px;
    padding: 48px 36px 40px 36px;
    box-shadow: var(--shadow-strong);
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 32px;
    border: 1px solid var(--border-color);
    pointer-events: none;
}

.profile-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 40px 80px rgba(113, 15, 28, 0.14);
}

/* Logo and Badge Row */
.header-badge-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.brand-logo {
    max-height: 48px;
    width: auto;
    display: block;
    margin-bottom: 4px;
}

.badge {
    background: rgba(111, 15, 28, 0.06);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    display: inline-block;
    border: 1px solid rgba(113, 15, 28, 0.08);
}

/* Profile Image / Avatar container */
@keyframes floatPhoto {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0px); }
}

.avatar-container {
    position: relative;
    width: 280px;
    height: 280px;
    max-width: 100%;
    margin: 0 auto 6px auto;
    animation: floatPhoto 5s ease-in-out infinite;
}

.avatar-img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 8px 16px rgba(113, 15, 28, 0.08));
}

.avatar-container:hover {
    animation-play-state: paused;
}

.avatar-container:hover .avatar-img {
    transform: translateY(-4px) scale(1.03) rotate(-1deg);
    filter: drop-shadow(0 20px 35px rgba(113, 15, 28, 0.18));
}

/* Text Elements */
.profile-name {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.profile-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.profile-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 440px;
    margin: 0 auto 32px auto;
    line-height: 1.6;
}

/* Feature List (Services) */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 36px;
    text-align: left;
}

.feature-item {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(113, 15, 28, 0.04);
    border-radius: 18px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition-smooth);
}

.feature-item:hover {
    background: var(--white);
    border-color: rgba(113, 15, 28, 0.1);
    transform: translateX(4px);
    box-shadow: 0 10px 25px rgba(113, 15, 28, 0.03);
}

.feature-icon-wrapper {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(111, 15, 28, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.feature-item:hover .feature-icon-wrapper {
    background: var(--primary);
    color: var(--white);
}

.feature-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.feature-content {
    display: flex;
    flex-direction: column;
}

.feature-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 2px;
}

.feature-desc {
    font-size: 0.825rem;
    color: var(--text-muted);
}

/* Action Buttons (CTAs) */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 14px;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    width: 100%;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: none;
    box-shadow: var(--shadow-button);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(113, 15, 28, 0.25);
}

.btn-primary svg {
    transition: transform var(--transition-quick);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 1px solid rgba(113, 15, 28, 0.15);
    box-shadow: 0 4px 12px rgba(113, 15, 28, 0.02);
}

.btn-secondary:hover {
    background: rgba(111, 15, 28, 0.02);
    border-color: var(--primary);
    color: var(--primary-light);
    transform: translateY(-2px);
}

.btn svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.2;
}

/* Social Icons Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.social-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid rgba(113, 15, 28, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-btn svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
    fill: none;
}

.social-btn:hover {
    transform: translateY(-3px) scale(1.05);
}

/* Hover effects for individual networks */
.social-btn.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    color: var(--white);
    border-color: transparent;
}

.social-btn.linkedin:hover {
    background: #0077b5;
    color: var(--white);
    border-color: transparent;
}

.social-btn.facebook:hover {
    background: #1877f2;
    color: var(--white);
    border-color: transparent;
}

/* Footer / Notice section */
.footer-notice {
    font-size: 0.725rem;
    color: var(--text-muted);
    opacity: 0.85;
    border-top: 1px solid rgba(113, 15, 28, 0.06);
    padding-top: 24px;
}

.footer-notice a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.footer-notice a:hover {
    text-decoration: underline;
}

.footer-copyright {
    margin-top: 8px;
    font-size: 0.7rem;
    opacity: 0.6;
}

/* Responsive Breakpoints */
@media (max-width: 480px) {
    .profile-card {
        padding: 36px 20px 30px 20px;
        border-radius: 24px;
    }
    
    .profile-name {
        font-size: 1.85rem;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .feature-item {
        padding: 12px 16px;
    }
}

