* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #1a1a2e;
}

/* Simulate a container like yours */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background: #2a2a3e;
    min-height: 100vh;
}

/* Hero section that breaks out to full width */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
    
    /* KEY: Break out of container to full viewport width */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow: hidden;
}

/* Simple gradient overlay */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 127, 80, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Smooth transition to next section */
.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(15, 20, 25, 0.3) 30%,
        rgba(15, 20, 25, 0.8) 70%,
        #0f1419 100%
    );
    pointer-events: none;
    z-index: 4;
}

/* Image on the right - now has full space to breathe */
.hero-image-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 60%;
    background: url('/images/hero-image.webp') center/cover;
    z-index: 0;
}

.hero-image-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(15, 20, 25, 0.4) 0%, transparent 30%);
    z-index: 1;
}

/* Text content with proper space */
.hero-content {
    display: flex;
    align-items: center;
    width: 40%;
    position: relative;
    z-index: 3;
    padding: 0 40px 0 80px; /* Reduced padding */
    height: 100vh;
}

.hero-text {
    width: 100%;
    padding: 30px 0; /* Reduced padding */
    max-width: 450px; /* Smaller max-width */
}

.logo-text {
    font-family: "Dancing Script", cursive;
    font-size: 4rem; /* Slightly smaller */
    font-weight: 700;
    margin-bottom: 15px; /* Reduced margin */
    background: linear-gradient(135deg, #ff7f50, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInFade 1s ease-out 0.2s both;
    line-height: 1.1;
}

.hero-text h2 {
    font-size: 2.6rem; /* Smaller font */
    font-weight: 700;
    margin-bottom: 15px; /* Reduced margin */
    background: linear-gradient(135deg, #48d1cc, #ff7f50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInFade 1s ease-out 0.5s both;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.2rem; /* Smaller font */
    margin-bottom: 35px; /* Reduced margin */
    color: #e2e8f0;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInFade 1s ease-out 0.8s both;
}

.cta-btn {
    background: linear-gradient(135deg, #ff7f50, #ffd700);
    border: none;
    padding: 16px 35px; /* Smaller padding */
    font-size: 1.1rem; /* Smaller font */
    font-weight: 600;
    color: #000000;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInFade 1s ease-out 1.1s both;
    box-shadow: 0 15px 35px rgba(255, 127, 80, 0.2);
    margin-top: 10px; /* Add some top margin */
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255, 127, 80, 0.3);
}

.underline-animation {
    height: 3px;
    background: linear-gradient(90deg, #ff7f50, #ffd700);
    margin: 12px 0; /* Reduced margin */
    border-radius: 2px;
    width: 0;
    animation: expandLine 0.8s ease-out 1.4s both;
}

@keyframes slideInFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandLine {
    0% { width: 0; }
    100% { width: 60px; }
}

/* Next section to show the transition */
.next-section {
    padding: 100px 0;
    text-align: center;
    background: #1a1a2e;
    color: white;
}

/* Desktop views - bring content closer */
@media (min-width: 992px) {
    .hero-content {
        padding: 0 30px 0 60px; /* Even less padding for desktop */
    }
    
    .hero-text {
        padding: 25px 0;
        max-width: 400px;
    }
    
    .logo-text {
        font-size: 3.5rem;
        margin-bottom: 12px;
    }
    
    .hero-text h2 {
        font-size: 2.3rem;
        margin-bottom: 12px;
    }
    
    .subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .cta-btn {
        padding: 14px 30px;
        font-size: 1rem;
        margin-top: 8px;
    }
    
    .underline-animation {
        margin: 10px 0;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }
    
    .hero-image-container {
        position: relative;
        order: 1;
        width: 100%;
        height: 50vh;
        background-position: center top;
    }
    
    .hero-content {
        order: 2;
        width: 100%;
        height: auto;
        padding: 40px 30px;
        text-align: center;
    }
    
    .hero-text {
        padding: 20px 0;
        max-width: none;
    }
    
    .logo-text {
        font-size: 3.5rem;
    }
    
    .hero-text h2 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .cta-btn {
        padding: 16px 35px;
        font-size: 1.1rem;
    }
}