/* Import font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #111;
    color: #f0f0f0;
    line-height: 1.6;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    background: #000;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.logo {
    font-size: 1.8rem;
    color: #fff;
}
.logo span {
    color: #ff3b3f;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}
.nav-links a {
    text-decoration: none;
    color: #f0f0f0;
    font-weight: 500;
    transition: color .3s;
}
.nav-links a:hover {
    color: #ff3b3f;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px; /* for nav */
}
.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.image-container img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid #ff3b3f;
    object-fit: cover;
    margin-bottom: 20px;
}
.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}
.red {
    color: #ff3b3f;
}
.hero h2 {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 20px;
}
.social-icons {
    margin-top: 20px;
}
.social-icons a {
    color: #f0f0f0;
    margin: 0 12px;
    font-size: 1.5rem;
    transition: color .3s;
}
.social-icons a:hover {
    color: #ff3b3f;
}

/* Portfolio Section */
.portfolio {
    padding: 40px 0;
    background: #111;
    text-align: center;
}
.portfolio h2 {
    color: #ff3b3f;
    font-size: 2rem;
    margin-bottom: 40px;
}
.portfolio-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
}
.card {
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    transition: all .3s ease-in-out;
}
.card:hover {
    transform: translateY(-10px);
    border: 2px solid #ff3b3f;
}
.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.card h3 {
    color: #ff3b3f;
    margin: 15px;
}
.card p {
    color: #ccc;
    margin: 0 15px 20px;
}

/* Hire Me Section */
.hire {
    padding: 80px 0;
    background: #0d0d0d;
    text-align: center;
}
.hire h2 {
    color: #ff3b3f;
    font-size: 2rem;
    margin-bottom: 40px;
}
.pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 30px;
}
.price-card {
    background: #1a1a1a;
    padding: 30px 20px;
    border-radius: 12px;
    transition: transform .4s ease, background .4s ease;
}
.price-card:hover {
    transform: scale(1.05);
    background: #ff3b3f;
    color: #000;
}
.price-card h3 {
    margin-bottom: 15px;
}
.price-card h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: inherit;
}
.price-card ul {
    list-style: none;
    margin-bottom: 25px;
    padding: 0;
}
.price-card ul li {
    margin-bottom: 10px;
    color: inherit;
}
.price-card .btn {
    display: inline-block;
    background: #000;
    color: #ff3b3f;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: background .3s, color .3s;
}
.price-card:hover .btn {
    background: #000;
    color: #fff;
}

/* Contact Section */
.contact {
    padding: 20px 0;
    background: #111;
    text-align: center;
}
.contact h2 {
    color: #ff3b3f;
    font-size: 2rem;
    margin-bottom: 20px;
}
.contact-form {
    max-width: 450px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}
.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #1a1a1a;
    color: #f0f0f0;
}
.contact-form .btn {
    background: #ff3b3f;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background .3s;
}
.contact-form .btn:hover {
    background: #e02a2f;
    color: #fff;
}

/* Footer */
footer {
    background: #000;
    color: #aaa;
    text-align: center;
    padding: 15px 0;
    font-size: .9rem;
}
.image-container img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid #ff3b3f;
    object-fit: cover;
    margin-bottom: 20px;

    /* Glow Effect */
    box-shadow: 0 0 15px #ff3b3f, 0 0 30px #ff3b3f55, 0 0 45px #ff3b3f33;
    transition: box-shadow 0.3s ease;
}

.image-container img:hover {
    box-shadow: 0 0 20px #ff3b3f, 0 0 40px #ff3b3f77, 0 0 60px #ff3b3f55;
}


/* Hamburger Button */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        left: -100%;
        top: 0;
        height: 100%;
        width: 250px;
        background: #111;
        flex-direction: column;
        align-items: start;
        padding-top: 80px;
        gap: 30px;
        transition: left 0.3s ease;
        z-index: 99;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        padding-left: 20px;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .menu-toggle {
        display: block;
    }
}


/* Desktop / Default */
.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem; /* text shrink on mobile */
    }
    .hero h1 .red {
        display: block; /* Move Eamin Shikder to new line */
    }

    /*.portfolio{*/
    /*    margin-top: 100px;*/
    /*}*/
}
