@import url('https://fonts.googleapis.com/css2?family=Caesar+Dressing&family=Aladin&family=Raleway:wght@600&family=Merriweather:wght@400;700&family=Fira+Sans:wght@400;600&family=Montserrat:wght@500;700&display=swap');

/* Global styles */
body {
    margin: 0;
    font-family: "Lato", Arial, sans-serif;
    /* Text */
    background: #000000;
    /* Dark theme default */
    color: white;
    transition: background 0.3s, color 0.3s;
}

body.light {
    background: white;
    color: black;
}

/* Header */
.header {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

/* Theme toggle button (rounded square) */
.icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: none;
    background: black;
    /* backdrop-filter: blur(10px); */
    color: white;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.icon-btn:hover {
    transform: scale(1.1);
}

body.light .icon-btn {
    background: white;
    color: black;
}

/* Title */
.title-block {
    text-align: center;
    margin-top: 50px;
    font-family: "Caesar Dressing", cursive;
    /* explicitly for h1 */
    /* Elegant headers */
}

.title-block h1 {
    font-size: 67px;
    margin: 0;
    letter-spacing: 1px;
}

/* Content wrapper */
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding: 30px 20px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 70vh;
}

/* Left (image) */
.content .left {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.content .left img {
    max-width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Right (text) */
.content .right {
    max-width: 600px;
    text-align: center;
    font-family: "Merriweather", serif;
    /* Clean text */
}

.content .right h2 {
    font-size: 24px;
    margin-bottom: 12px;
    font-family: "Aladin", cursive;
    /* Professional section heading */
    letter-spacing: 1px;
}

/* Floating GitHub button */
.fab-btn {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 10px;
    border-radius: 8px;
    border: none;
    background: white;
    color: black;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    z-index: 1000;
    font-family: "Montserrat", sans-serif;
    /* Professional + modern button */
    font-weight: 600;
    /* letter-spacing: 1px; */
}

.fab-btn i {
    font-size: 30px;
}

.fab-btn:hover {
    transform: translateX(-50%) scale(1.05);
}

body.light .fab-btn {
    background: black;
    color: white;
}

/* Desktop layout */
@media (min-width: 768px) {
    .content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 60px;
    }

    .content .left {
        justify-content: flex-start;
        width: 50%;
    }

    .content .right {
        text-align: left;
        width: 50%;
        padding-left: 200px;
        /* push text right */
    }

    .content .left img {
        max-width: 100%;
        height: auto;
    }
    .content .right h2 {
        font-size: 32px;
        /* smaller size for mobile */
    }
}