/* Fulham Announcement Section - Modern & Stylish */

.fulham-announcement {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 30%, #1a1a1a 70%, #000000 100%);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

/* Enhanced animated background */
.fulham-announcement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 60% 20%, rgba(255, 255, 255, 0.015) 0%, transparent 60%);
    animation: floatingLights 25s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

/* Subtle geometric pattern overlay */
.fulham-announcement::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.008) 31%, rgba(255,255,255,0.008) 32%, transparent 33%),
        linear-gradient(-45deg, transparent 30%, rgba(255,255,255,0.005) 31%, rgba(255,255,255,0.005) 32%, transparent 33%);
    background-size: 60px 60px;
    animation: patternShift 30s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes floatingLights {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
    33% {
        transform: translateY(-20px) scale(1.1);
        opacity: 1;
    }
    66% {
        transform: translateY(10px) scale(0.9);
        opacity: 0.8;
    }
}

@keyframes patternShift {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(60px) translateY(60px); }
}

.fulham-announcement .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.announcement-content {
    padding-right: 20px;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 1s ease-out 0.5s forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.announcement-badge {
    display: inline-block;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(-20px);
    animation: badgeAppear 0.8s ease-out 0.7s forwards;
}

@keyframes badgeAppear {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge-text {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    padding: 12px 20px;
    letter-spacing: 3px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.badge-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.badge-text::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.announcement-badge:hover .badge-text::before {
    left: 100%;
}

.announcement-badge:hover .badge-text::after {
    width: 120px;
    height: 120px;
}

.announcement-badge:hover .badge-text {
    transform: translateY(-3px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.1);
}

.announcement-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4.2rem;
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 24px;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 50%, #ffffff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: titleReveal 1s ease-out 0.9s forwards;
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animated underline for title */
.announcement-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.5) 100%);
    animation: underlineGrow 1.2s ease-out 1.2s forwards;
}

@keyframes underlineGrow {
    from {
        width: 0;
    }
    to {
        width: 180px;
    }
}

.announcement-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
    opacity: 0;
    transform: translateY(20px);
    animation: subtitleReveal 0.8s ease-out 1.1s forwards;
}

@keyframes subtitleReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.announcement-subtitle strong {
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.announcement-subtitle strong::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    opacity: 0.6;
}

.announcement-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
    opacity: 0;
    transform: translateY(15px);
    animation: descriptionReveal 0.8s ease-out 1.3s forwards;
}

@keyframes descriptionReveal {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.announcement-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: ctaReveal 0.8s ease-out 1.5s forwards;
}

@keyframes ctaReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.announcement-cta .btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.announcement-cta .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.announcement-cta .btn:hover::before {
    left: 100%;
}

.announcement-cta .btn-primary {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    color: #000000;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.announcement-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(255, 255, 255, 0.1);
}

.announcement-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.announcement-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(255, 255, 255, 0.1);
}

.announcement-visual {
    position: relative;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 1s ease-out 0.7s forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.location-preview {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-preview:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.location-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease-out;
    filter: brightness(0.8) contrast(1.1);
}

.location-preview:hover img {
    transform: scale(1.08);
    filter: brightness(0.9) contrast(1.2);
}

.preview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 40px 24px 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transition: all 0.4s ease;
}

.location-preview:hover .preview-overlay {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.coming-soon-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    padding: 14px 28px;
    border-radius: 30px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.coming-soon-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.location-preview:hover .coming-soon-text {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.location-preview:hover .coming-soon-text::before {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .fulham-announcement {
        padding: 80px 0;
    }
    
    .fulham-announcement .container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .announcement-content {
        padding-right: 0;
        animation: slideInUp 1s ease-out 0.3s forwards;
    }
    
    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .announcement-title {
        font-size: 3rem;
        line-height: 1;
        margin-bottom: 20px;
    }
    
    .announcement-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
    }
    
    .announcement-subtitle {
        font-size: 1.3rem;
        margin-bottom: 16px;
    }
    
    .announcement-description {
        font-size: 1.05rem;
        max-width: none;
        margin-bottom: 32px;
    }
    
    .announcement-cta {
        justify-content: center;
        gap: 16px;
    }
    
    .announcement-cta .btn {
        flex: 1;
        min-width: 160px;
        max-width: 220px;
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .announcement-visual {
        height: 350px;
        order: -1;
        animation: slideInUp 1s ease-out 0.5s forwards;
        border-radius: 12px;
    }
    
    .location-preview {
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .fulham-announcement {
        padding: 60px 0;
    }
    
    .fulham-announcement .container {
        gap: 40px;
        padding: 0 16px;
    }
    
    .announcement-title {
        font-size: 2.4rem;
        letter-spacing: 0.5px;
    }
    
    .announcement-title::after {
        width: 100px;
        height: 2px;
    }
    
    .announcement-subtitle {
        font-size: 1.15rem;
    }
    
    .announcement-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .announcement-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .announcement-cta .btn {
        flex: none;
        width: 100%;
        max-width: 280px;
        font-size: 0.85rem;
        padding: 12px 20px;
        letter-spacing: 1px;
    }
    
    .announcement-visual {
        height: 280px;
        border-radius: 10px;
    }
    
    .location-preview {
        border-radius: 10px;
    }
    
    .coming-soon-text {
        font-size: 1.1rem;
        letter-spacing: 2px;
        padding: 12px 20px;
    }
}