/* 1. Base Styling */
body {
    margin: 0;
    font-family: "Space Grotesk", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #111;
    background: #fff;
}

/* 2. Fluid Typography Setup */
:root {
    --font-base: clamp(1rem, 0.9rem + 0.5vw, 1.2rem);

    --font-topbar: clamp(1rem, 0.5vw + 1rem, 1.4rem);
    --font-thin-text: clamp(2rem, 4vw + 1rem, 4.5rem);
    --font-bold-big-text: clamp(2.5rem, 5vw + 1rem, 5.2rem);
    --font-subtext: clamp(1rem, 0.8vw + 0.8rem, 1.8rem);

    --font-quote-block: clamp(1.6rem, 2.8vw + 1rem, 3rem);
    --font-quote-rotated: clamp(1.1rem, 1.8vw + 0.8rem, 2rem);
    --font-hashtag: clamp(0.7rem, 0.5vw + 0.4rem, 0.9rem);

    --font-bio: clamp(0.9rem, 0.5vw + 0.7rem, 1.1rem);
    --font-social: clamp(0.9rem, 0.3vw + 0.7rem, 1rem);
}

/* 3. Top Bar */
.top-bar {
    background: #000;
    color: #fff;
    padding: 10px 20px;
    justify-items: center;
}

.topinnerdiv {
    display: flex;
    justify-content: space-between;
    width: 80%;
    font-size: var(--font-topbar);
    margin: auto;
    padding: 10px 0;
}

.contact a {
    text-decoration: none;
    color: inherit;
}

/* 4. Hero Section */
.hero {
    text-align: center;
    background: #000;
    color: #fff;
    padding: 40px 20px 20px;
}

.hero h1 {
    margin: 0;
    line-height: 1.2;
}

.thin-text {
    font-size: var(--font-thin-text);
    font-weight: 500;
}

.bold-big-text {
    font-size: var(--font-bold-big-text);
    font-weight: 900;
}

.subtext {
    font-size: var(--font-subtext);
    opacity: 0.8;
    font-weight: 300;
}

/* 5. Quote Section */
.quote-section {
    text-align: center;
    padding: 40px 20px 20px;
}

.quote-section blockquote {
    font-size: var(--font-quote-block);
    margin: 0;
}

.quote-section h1 {
    transform: rotate(180deg);
    display: inline-block;
    font-size: var(--font-quote-rotated);
    margin-top: -10px;
}

.hashtag {
    color: #666;
    font-size: var(--font-hashtag);
    margin-top: 10px;
}

/* 6. Profile Section */
.profile-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px 20px;
    gap: 40px;
}

.image-container img {
    width: 300px;
    border-radius: 8px;
}

.bio {
    max-width: 600px;
}

.bio p {

    font-size: var(--font-bio);
    line-height: 1.5;
}

.bio strong {
    font-weight: bold;
}

/* 7. Social Buttons */
.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    /* justify-content: center; */
    margin-top: 20px;
}

.social-btn {
    display: inline-flex;
    /* align-items: center; */
    background-color: #f2f2f2;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    color: #111;
    font-size: var(--font-social);
    transition: background 0.2s ease;
}

.social-btn:hover {
    background-color: #e6e6e6;
}

.social-btn .icon {
    width: 18px;
    height: 18px;
    margin-left: 8px;
}

/* 8. Footer */
.footer {
    text-align: center;
    background: #000;
    color: white;
    padding: 15px;
    font-weight: bold;
}

/* 9. Layout Media Queries */
@media (max-width: 768px) {
    .profile-section {
        flex-direction: column;
        align-items: center;
    }

    .image-container img {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 530px) {
    .topinnerdiv {
        flex-direction: column;
        align-items: center;
        gap: 5px;
        font-size: 1.1rem;
    }
}