body {
    font-family: 'DIN Pro', sans-serif;
    background-color: #7A0B3C;
    margin: 0;
    min-height: 100vh;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    color: white;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    width: 100%;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-top: 0;
    margin-bottom: 1rem;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.5rem);
    line-height: 1.6;
    margin: 0;
}

/* Navbar Styles */
.navbar {
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    background-color: rgba(122, 11, 60, 0.95);
    backdrop-filter: blur(5px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    color: white;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: height 0.3s ease;
}

.navbar.scrolled {
    height: 60px;
}

.navbar .logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.navbar .logo img {
    height: 40px;
    width: auto;
    transition: height 0.3s ease;
    vertical-align: middle;
}

.navbar.scrolled .logo img {
    height: 30px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100px;
        right: -100%;
        flex-direction: column;
        background-color: #610930;
        width: 250px;
        height: calc(100vh - 80px);
        align-items: center;
        padding-top: 40px;
        transition: right 0.3s ease;
    }

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

    .hamburger {
        display: flex;
    }

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

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

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

.content-section {
    padding: 100px 40px;
    color: white;
    background-color: #610930;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #ffb6c1;
}

.content-section p {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}
