/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section */
.atl-live-hero {
    position: relative;
    height: 480px;
    overflow: hidden;
}

.atl-live-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.atl-live-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
}

.atl-live-hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 40px;
    background-color: rgba(255, 255, 255, 0.92);
    max-width: 650px;
    margin-top: 60px;
}

.atl-live-hero-title {
    font-size: 42px;
    font-weight: 300;
    color: #4ECDC4;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.atl-live-hero-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    font-weight: 400;
}

/* Main Container */
.atl-live-main-container {
    padding: 60px 20px;
    background-color: #fff;
}

.atl-live-content-column {
    padding-right: 60px;
}

/* Neighborhood Sections */
.atl-live-neighborhood-section {
    margin-bottom: 60px;
}

.atl-live-neighborhood-title {
    font-size: 20px;
    font-weight: 700;
    color: #4ECDC4;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.atl-live-neighborhood-image-wrapper {
    margin-bottom: 25px;
}

.atl-live-neighborhood-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
}

.atl-live-neighborhood-text {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.atl-live-neighborhood-list {
    list-style: none;
    padding-left: 0;
}

.atl-live-neighborhood-list li {
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.6;
}

.atl-live-link {
    color: #4ECDC4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.atl-live-link:hover {
    color: #3ab8af;
    text-decoration: underline;
}

/* Sidebar */
.atl-live-sidebar-column {
    padding-left: 30px;
}

.atl-live-sidebar {
    position: sticky;
    top: 95px;
    background-color: #fff;
}

.atl-live-sidebar-btn {
    width: 100%;
    padding: 15px 20px;
    background-color: #4ECDC4;
    color: white;
    border: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 2px;
    text-align: left;
}

.atl-live-sidebar-btn:hover {
    background-color: #3ab8af;
}

.atl-live-sidebar-btn-active {
    background-color: #4ECDC4;
}

.atl-live-sidebar-link {
    display: block;
    width: 100%;
    padding: 15px 20px;
    background-color: #f8f8f8;
    color: #666;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-bottom: 2px;
}

.atl-live-sidebar-link:hover {
    background-color: #e8e8e8;
    color: #333;
}

/* Subscribe Section */
.atl-live-subscribe {
    background-color: #4ECDC4;
    padding: 80px 20px;
    text-align: center;
}

.atl-live-subscribe-title {
    font-size: 32px;
    font-weight: 300;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.atl-live-subscribe-text {
    font-size: 16px;
    color: white;
    margin-bottom: 30px;
    line-height: 1.6;
}

.atl-live-subscribe-btn {
    background-color: #333;
    color: white;
    border: none;
    padding: 12px 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 2px;
}

.atl-live-subscribe-btn:hover {
    background-color: #222;
}

/* Responsive Design */
@media (max-width: 991px) {
    .atl-live-content-column {
        padding-right: 15px;
    }
    
    .atl-live-sidebar-column {
        padding-left: 15px;
        margin-top: 40px;
    }
    
    .atl-live-sidebar {
        position: static;
    }
    
    .atl-live-hero-title {
        font-size: 32px;
    }
    
    .atl-live-main-nav {
        justify-content: flex-start;
        margin-top: 20px;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .atl-live-topnav-links {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .atl-live-hero {
        height: auto;
        min-height: 300px;
    }
    
    .atl-live-hero-content {
        padding: 40px 20px;
        margin-top: 30px;
    }
    
    .atl-live-hero-title {
        font-size: 28px;
    }
    
    .atl-live-main-nav {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .atl-live-footer-bottom {
        text-align: center;
    }
    
    .atl-live-footer-bottom .text-end {
        text-align: center !important;
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .atl-live-hero-title {
        font-size: 24px;
    }
    
    .atl-live-hero-subtitle {
        font-size: 14px;
    }
    
    .atl-live-neighborhood-title {
        font-size: 18px;
    }
    
    .atl-live-subscribe-title {
        font-size: 26px;
    }
}