@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&family=Bebas+Neue&display=swap');

:root {
    --bg: #0f0f0f;
    --text: #e9e9e9;
    --accent: #d3e97a;
    --max-width: 1100px;
    --base-font: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Manrope', Arial, sans-serif;
    transition: all 0.3s ease;
}

html,
body {
    overflow-x: hidden !important;
    scroll-behavior: smooth !important;
}

body {
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    background-color: #0a0a0a;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo a {
    text-decoration: none;
    color: #ccc;
    font-weight: bold;
    font-size: 1.2rem;
}

.main-nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.main-nav a {
    color: #ccc;
    margin: 0 10px;
    padding: 6px 8px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    color: var(--accent);
    text-shadow: 0 0 8px var(--accent);
    transform: scale(1.05);
}

.main-nav a.active {
    background: rgba(211, 233, 122, 0.08);
    color: var(--accent);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    color: var(--text);
    font-size: 1.2rem;
    cursor: pointer;
}

/* About Section */
.about-section {
    padding: 100px 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: var(--bg);
    transition: all 0.5s ease;
}

.about-section:hover {
    background: rgba(15, 15, 15, 0.95);
}

.container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    gap: 40px;
    align-items: center;
}

.about-left h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(4rem, 10vw, 101px);
    line-height: 90%;
    font-weight: 400;
    color: var(--text);
    letter-spacing: 2px;
}

.about-right {
    max-width: 704px;
}

.about-right h2 {
    font-size: clamp(1.5rem, 4vw, 32px);
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text);
    line-height: 1.3;
}

.about-right p {
    font-size: clamp(1rem, 2vw, 18px);
    line-height: 150%;
    color: #C7C7C7;
    margin-bottom: 30px;
    font-family: 'Manrope', sans-serif;
}

.about-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-download {
    background-color: var(--accent);
    color: #000;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-family: 'Manrope', sans-serif;
    border: none;
    cursor: pointer;
}

.btn-download::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    transition: all 0.6s ease;
    z-index: -1;
}

.btn-download:hover::before {
    left: 100%;
}

.btn-download:hover {
    background-color: #c4dd63;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 20px rgba(216, 242, 111, 0.3);
}

.icon-btn {
    background: #111;
    color: #fff;
    padding: 12px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    text-decoration: none;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    transform-style: preserve-3d;
}

.icon-btn:hover {
    background: #1a1a1a;
    transform: rotateY(15deg) scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

/* Image Section */
.image-section {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 60px 20px;
    align-items: center;
    justify-content: space-evenly;
    padding: 40px 20px;
}

.me {
    max-width: 600px;
    color: #C7C7C7;
}

.me p {
    font-size: clamp(1rem, 2vw, 18px);
    margin-bottom: 20px;
    line-height: 1.6;
    font-family: 'Manrope', sans-serif;
}

.image-section img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.image-section img:hover {
    transform: scale(1.07);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.15);
}

/* Capabilities Section */
.section-capabilities {
    padding: 60px 20px;
    position: relative;
    color: #fff;
    transition: all 0.5s ease;
}

.section-capabilities:hover {
    background: rgba(15, 15, 15, 0.95);
}

.video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -2;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.my h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: 30px;
    color: var(--text);
    letter-spacing: 2px;
}

.skill {
    max-width: 800px;
    margin: auto;
    padding: 0 20px;
}

.skill p {
    font-size: clamp(1rem, 2vw, 18px);
    margin-bottom: 30px;
    line-height: 1.6;
    font-family: 'Manrope', sans-serif;
    color: #C7C7C7;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    align-items: center;
}

.tags img {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.tags img:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px var(--accent));
}

/* Contact Section */
.contact {
    padding: 4rem 2rem;
    background-color: #0d0d0d;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    color: white;
    transition: all 0.5s ease;
}

.contact:hover {
    background: rgba(13, 13, 13, 0.95);
}

.contact-left,
.contact-right {
    flex: 1;
    min-width: 280px;
}

.contact-left h1 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 1rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.contact-left a {
    color: var(--accent);
    text-decoration: none !important;
}

.contact-left p {
    margin-bottom: 1rem;
    color: #ccc;
    font-family: 'Manrope', sans-serif;
}

.social-icons {
    margin: 1.5rem 0;
    font-size: 1.8rem;
}

.social-icons a {
    margin-right: 1rem;
    color: var(--accent);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px var(--accent));
}

.contact-right form {
    display: flex;
    flex-direction: column;
}

.contact-right label {
    margin-bottom: 5px;
    color: #ccc;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
}

.contact-right input,
.contact-right textarea {
    background-color: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem;
    margin-bottom: 1.2rem;
    color: white;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Manrope', sans-serif;
    transition: all 0.3s ease;
}

.contact-right input:hover,
.contact-right textarea:hover {
    border: 1px solid var(--accent);
    background-color: #1f1f1f;
    box-shadow: 0 0 8px rgba(211, 233, 122, 0.3);
}

.contact-right input:focus,
.contact-right textarea:focus {
    outline: none;
    border: 1px solid var(--accent);
    background-color: #1f1f1f;
    box-shadow: 0 0 12px rgba(211, 233, 122, 0.4);
}

.contact-right button {
    background-color: var(--accent);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    color: black;
    font-weight: bold;
    cursor: pointer;
    width: fit-content;
    font-family: 'Manrope', sans-serif;
    transition: all 0.3s ease;
}

.contact-right button:hover {
    background-color: #c4dd63;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(211, 233, 122, 0.3);
}

/* Footer */
.site-footer {
    padding: 24px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    margin-top: 40px;
}

footer {
    font-size: 16px;
    color: #777;
    text-align: center;
    width: 100%;
    margin-top: 30px;
    font-family: 'Manrope', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 20px;
    }

    .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .about-left h1 {
        font-size: 60px;
    }

    .image-section {
        flex-direction: column;
        margin: 40px 10px;
        padding: 20px;
    }

    .me {
        max-width: 100%;
        text-align: center;
    }

    .tags {
        justify-content: center;
        gap: 15px;
    }

    .tags img {
        width: 48px;
        height: 48px;
    }

    .video-section {
        height: 70vh;
    }

    .about-buttons {
        justify-content: center;
    }

    .contact {
        flex-direction: column;
        padding: 2rem 1rem;
    }

    .contact-right button {
        width: 100%;
    }
}

@media (max-width: 800px) {
    .nav-toggle {
        display: inline-block;
    }

    .main-nav {
        display: none;
    }

    .main-nav.open {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
        background: #111;
        padding: 1rem;
        border-radius: 8px;
    }
}

/* Remove duplicate hamburger styles */
.menu-icon,
#menu-toggle,
.mobile-img {
    display: none;
}