/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #050505;
    color: #ffffff;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('hero_background.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Dark Overlay for Readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3),
            rgba(20, 0, 10, 0.6));
    z-index: 1;
}

/* Glassmorphism Content Container */
.content-wrapper {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem 4rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(255, 0, 127, 0.2);
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Typography */
.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #ff69b4, #fff);
    /* White to Pink to White */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(255, 105, 180, 0.5);
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.2rem;
    color: #eccce2;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Premium Button Styling */
.cta-button {
    position: relative;
    display: inline-block;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #ff0080, #7928ca);
    border-radius: 50px;
    overflow: hidden;
    transition: 0.5s;
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(255, 0, 128, 0.7);
    background: linear-gradient(90deg, #ff0080, #ff00cc);
}

.cta-button span {
    position: relative;
    z-index: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
    }

    .content-wrapper {
        padding: 2rem;
        margin: 0 1rem;
        width: 90%;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 1rem;
    }
}