/* General Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lora', serif;
}

body {
    background-color: #1a1a2e;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
.site-header {
    background: linear-gradient(135deg, #ff007a, #1a1a2e);
    color: #fff;
    text-align: center;
    padding: 3rem 1rem;
    position: relative;
    box-shadow: 0 4px 20px rgba(255, 0, 122, 0.3);
}

.site-header h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(255, 0, 122, 0.7);
}

.site-header p {
    font-size: 1.2rem;
    margin-top: 0.5rem;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

/* Navigation Styles */
.site-nav {
    background-color: #16213e;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-menu li {
    margin: 0;
}

.site-nav a {
    color: #00d4ff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.site-nav a:hover {
    color: #ff007a;
    text-shadow: 0 0 10px rgba(255, 0, 122, 0.7);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 35px;
    height: 25px;
    cursor: pointer;
    margin-right: 1rem;
}

.hamburger span {
    width: 100%;
    height: 4px;
    background: #00d4ff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* About Me Section */
.section#about {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(-50px);
    transition: all 0.8s ease-in-out;
}

.section#about.visible {
    opacity: 1;
    transform: translateY(0);
}

.section h2 {
    font-size: 3rem;
    text-align: center;
    color: #00d4ff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.7);
}

.section h2::after {
    content: '';
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #ff007a, #00d4ff);
    display: block;
    margin: 15px auto;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(255, 0, 122, 0.5);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #ff007a;
    box-shadow: 0 0 20px rgba(255, 0, 122, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 0, 122, 0.7);
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 20px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

.about-text em {
    color: #ff007a;
    font-style: italic;
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #16213e, #0f3460);
    padding: 40px 20px;
    text-align: center;
    border-top: 2px solid #ff007a;
    box-shadow: 0 -4px 20px rgba(255, 0, 122, 0.3);
}

.site-footer p {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin: 0.5rem 0;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.site-footer a {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.site-footer a:hover {
    color: #ff007a;
    text-shadow: 0 0 10px rgba(255, 0, 122, 0.7);
}

.site-footer .template-note {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: #16213e;
        padding: 1rem 0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        text-align: center;
        padding: 1rem 0;
    }

    .site-header h1 {
        font-size: 2rem;
    }

    .site-header p {
        font-size: 1rem;
    }

    /* About Me Responsive */
    .section#about {
        padding: 40px 15px;
        transform: translateY(-20px);
        transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    }

    .section#about.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .section h2 {
        font-size: 2.2rem;
    }

    .about-content {
        flex-direction: column;
        gap: 20px;
    }

    .about-img {
        width: 200px;
        height: 200px;
    }

    .about-text p {
        font-size: 1.1rem;
    }

    .site-footer {
        padding: 30px 15px;
    }

    .site-footer p {
        font-size: 1rem;
    }

    .site-footer .template-note {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .site-header h1 {
        font-size: 1.5rem;
    }

    .site-nav a {
        font-size: 1rem;
    }

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

    .about-img {
        width: 150px;
        height: 150px;
    }

    .about-text p {
        font-size: 1rem;
    }

    .site-footer p {
        font-size: 0.9rem;
    }
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}