/* ===== ROOT & VARIABLES ===== */
:root {
    --primary-dark: #1a1a1a;
    --primary-accent: #d4af37;
    --secondary-accent: #8b6f47;
    --text-primary: #2c2c2c;
    --text-secondary: #666666;
    --text-light: #999999;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== BASIC RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f1e8 0%, #fafafa 100%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

/* ===== WRAPPER & CONTAINER ===== */
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #f5f1e8 100%);
    padding: 2.5rem 0 2rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Logo Styling */
.logo {
    text-align: center;
    animation: fadeInDown 0.8s ease-out;
}

.logo img {
    max-width: 160px;
    height: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
    transition: var(--transition-smooth);
}

.logo img:hover {
    filter: drop-shadow(0 8px 20px rgba(212, 175, 55, 0.2));
}

/* Profile Section */
.profile {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 100%;
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.profile-photo {
    width: 140px;
    height: 140px;
    min-width: 140px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
    border: 3px solid var(--primary-accent);
    transition: var(--transition-smooth);
}

.profile-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 48px rgba(212, 175, 55, 0.3);
}

.profile-details {
    flex: 1;
}

.profile-details h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-dark);
    letter-spacing: -1px;
    margin-bottom: 0.25rem;
    line-height: 1.1;
}

.profile-details .tagline {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.profile-details .bio {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.6;
    max-width: 400px;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    flex: 1;
    padding: 3rem 0;
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
    border-radius: 2px;
}

/* ===== CONNECT SECTION ===== */
.connect-section {
    margin-bottom: 3rem;
}

.all-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.1rem 1.5rem;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.social-icon:hover::before {
    left: 100%;
}

.social-icon i {
    font-size: 1.2rem;
}

.facebook {
    background: linear-gradient(135deg, #3b5998 0%, #2d4373 100%);
}

.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.whatsapp {
    background: linear-gradient(135deg, #128c7e 0%, #0f6b5f 100%);
}

.facebook:hover,
.instagram:hover,
.whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.1rem 1.5rem;
    background: var(--bg-white);
    border: 2px solid var(--bg-light);
    border-radius: 8px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.1);
    transition: left 0.3s ease;
    z-index: -1;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item i {
    color: var(--primary-accent);
    font-size: 1.2rem;
}

.contact-item:hover {
    border-color: var(--primary-accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-dark);
    color: #ccc;
    text-align: center;
    padding: 2rem 1.5rem;
    margin-top: auto;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

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

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

/* ===== RESPONSIVE DESIGN ===== */
/* Tablets (768px and below) */
@media (max-width: 768px) {
    .header-content {
        gap: 1.5rem;
    }

    .logo img {
        max-width: 140px;
    }

    .profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .profile-details {
        width: 100%;
    }

    .profile-details h1 {
        font-size: 2rem;
    }

    .profile-details .bio {
        max-width: 100%;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .all-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 0 1rem;
    }

    .hero {
        padding: 1.5rem 0 1.5rem 0;
    }

    .header-content {
        gap: 1.5rem;
    }

    .logo img {
        max-width: 120px;
    }

    .profile {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .profile-photo {
        width: 110px;
        height: 110px;
        min-width: 110px;
    }

    .profile-details h1 {
        font-size: 1.6rem;
    }

    .profile-details .tagline {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .profile-details .bio {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .social-icon,
    .contact-item {
        padding: 0.9rem 1.2rem;
        font-size: 0.85rem;
        gap: 0.5rem;
    }

    .social-icon i,
    .contact-item i {
        font-size: 1rem;
    }

    .all-links {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .main-content {
        padding: 2rem 0;
    }

    .footer {
        padding: 1.5rem 1rem;
        font-size: 0.75rem;
    }
}