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

/* Webfont declaration */
@font-face {
    font-family: 'Gotham Bold';
    src: url('gotham-bold-webfont.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

html {
    height: -webkit-fill-available;
}

body {
    font-family: 'Gotham Bold', 'Poppins', sans-serif;
    color: #ffffff;
    margin: 0;
    overflow: hidden;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    background-color: #2d343d;
}

/* Layout */
.section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    width: 100%;
    height: 100vh;
    padding: 40px 20px;
    padding-top: env(safe-area-inset-top, 40px);
    padding-bottom: env(safe-area-inset-bottom, 20px);
    overflow: hidden;
    background-image: linear-gradient(#2d343d 45%, #296c7e 100%, #296c7e);
}

/* Radial Gradient Overlay */
.radial-gradient-overlay {
    background-image: radial-gradient(circle, #464170, #fff0 36%);
    width: 100%;
    height: 100vh;
    height: -webkit-fill-available;
    position: absolute;
    bottom: -20%;
    left: -40%;
    z-index: 0;
    top: 0;
    right: 0;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    text-align: center;
    z-index: 1;
    position: relative;
}

/* Logo Image */
.logos-image {
    max-width: 100%;
    width: 400px;
}

/* Text */
.announcement-text {
    font-size: 16px;
    font-weight: bold;
    line-height: 20px;
    margin-bottom: 30px;
    font-family: 'Gotham Bold', 'Poppins', sans-serif;
    text-align: center;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* CTA Button */
.cta-link {
    text-decoration: none;
    color: #ffffff;
    transition: opacity 0.3s ease;
}

.cta-link:hover {
    opacity: 0.8;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    margin-bottom: 25px;
    margin-top: 25px;
    border: 1px solid #ffffff;
    border-radius: 30px;
    font-size: 14px;
    font-weight: bold;
    font-family: 'Gotham Bold', 'Poppins', sans-serif;
    transition: background-color 0.3s ease;
    line-height: 24px;
    text-align: center;
    color: #2d343d;
    background-color: #fff;
    max-width: 100%;
}

.cta-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.arrow-icon {
    font-size: 18px;
}

/* Responsive Adjustments */
@media screen and (max-width: 767px) {
    .logos-image {
        width: 280px;
    }
    
    .announcement-text {
        font-size: 14px;
        line-height: 20px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }
} 