/* 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: 2rem 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);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    width: 100%;
    gap: 40px;
}

.hero-text {
    flex: 1;
    opacity: 0;
    transform: translateY(-80px);
    transition: all 1s ease-in-out;
}

.hero-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-title {
    font-size: 5rem;
    color: #ff007a;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(255, 0, 122, 0.8), 0 0 40px rgba(255, 0, 122, 0.5);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #00d4ff;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.7);
    margin-bottom: 30px;
}

.hero-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(90deg, #ff007a, #ff4d94);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(255, 0, 122, 0.6);
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: linear-gradient(90deg, #00d4ff, #00a3cc);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
}

.hero-img {
    flex: 1;
    max-width: 600px;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    border: 4px solid #ff007a;
    box-shadow: 0 0 30px rgba(255, 0, 122, 0.5);
    opacity: 0;
    transform: translateY(80px);
    transition: all 1.2s ease-in-out;
}

.hero-img.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 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: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-img {
        max-width: 500px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }
}

@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;
    }

    .hero-section {
        padding: 40px 15px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-btn {
        padding: 12px 30px;
        font-size: 1.1rem;
    }

    .hero-img {
        max-width: 400px;
        transform: translateY(40px); /* Reduced slide distance */
        transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
    }

    .hero-text {
        transform: translateY(-40px); /* Reduced slide distance */
        transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
    }

    .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;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-btn {
        padding: 10px 25px;
        font-size: 1rem;
    }

    .hero-img {
        max-width: 300px;
    }

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

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