/* Import the same fonts from the main website */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Oswald:wght@400;500;600;700&display=swap');

:root {
    --theme-color: #EC691B;
    --heading-color: #1F2732;
    --text-color: #525252;
    --white: #ffffff;
    --font-dm: 'DM Sans', sans-serif;
    --font-oswald: 'Oswald', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-dm);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.coming-soon-container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background-image: url('/images/rmgolf_hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 39, 50, 0.85) 0%, rgba(31, 39, 50, 0.75) 50%, rgba(236, 105, 27, 0.2) 100%);
    z-index: 1;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    text-align: center;
    /* background: rgba(255, 255, 255, 0.2); */
    padding: 60px 50px;
    border-radius: 12px;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); */
}

/* Content Side - Left Half */
.content-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background-color: var(--white);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.logo-image {
    width: 140px;
    height: 140px;
    object-fit: contain;
}

.logo h1 {
    font-family: var(--font-oswald);
    font-size: 48px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-title {
    font-family: var(--font-oswald);
    font-size: 30px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 50px;
}

/* Programs Section */
.programs-section {
    margin-bottom: 50px;
    padding: 35px;
    background: rgba(236, 105, 27, 0.15);
    border: 2px solid var(--theme-color);
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(236, 105, 27, 0.2);
}

.programs-title {
    font-family: var(--font-oswald);
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.pdf-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background-color: var(--theme-color);
    color: var(--white);
    font-family: var(--font-oswald);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(236, 105, 27, 0.2);
}

.pdf-download-btn:hover {
    background-color: #d55a15;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 105, 27, 0.3);
}

.pdf-download-btn .icon {
    width: 22px;
    height: 22px;
    color: var(--white);
}

.contact-info {
    margin-top: 50px;
}

.contact-info h3 {
    font-family: var(--font-oswald);
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.contact-item .icon {
    width: 24px;
    height: 24px;
    color: var(--theme-color);
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-item a {
    font-family: var(--font-dm);
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--theme-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        padding: 50px 40px;
    }
    
    .logo {
        margin-bottom: 40px;
    }
    
    .logo-image {
        width: 70px;
        height: 70px;
    }
    
    .logo h1 {
        font-size: 38px;
    }
    
    .main-title {
        font-size: 32px;
        margin-bottom: 60px;
    }
    
    .programs-title {
        font-size: 24px;
    }
    
    .pdf-download-btn {
        font-size: 16px;
        padding: 14px 28px;
    }
    
    .contact-info h3 {
        font-size: 20px;
    }
    
    .contact-item a {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .coming-soon-container {
        background-attachment: scroll;
        padding: 30px 15px;
    }
    
    .content-wrapper {
        padding: 40px 30px;
    }
    
    .logo {
        margin-bottom: 30px;
        flex-direction: column;
        gap: 15px;
    }
    
    .logo-image {
        width: 60px;
        height: 60px;
    }
    
    .logo h1 {
        font-size: 32px;
    }
    
    .main-title {
        font-size: 26px;
        margin-bottom: 35px;
    }
    
    .programs-section {
        margin-bottom: 35px;
    }
    
    .programs-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .pdf-download-btn {
        font-size: 15px;
        padding: 12px 24px;
    }
    
    .contact-info {
        margin-top: 40px;
    }
    
    .contact-info h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .contact-item {
        margin-bottom: 15px;
    }
    
    .contact-item .icon {
        width: 20px;
        height: 20px;
        margin-right: 12px;
    }
    
    .contact-item a {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        padding: 30px 20px;
    }
    
    .logo {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .logo-image {
        width: 50px;
        height: 50px;
    }
    
    .logo h1 {
        font-size: 28px;
    }
    
    .main-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .programs-section {
        margin-bottom: 25px;
    }
    
    .programs-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .pdf-download-btn {
        font-size: 14px;
        padding: 12px 20px;
        gap: 10px;
    }
    
    .pdf-download-btn .icon {
        width: 18px;
        height: 18px;
    }
    
    .contact-info {
        margin-top: 25px;
    }
    
    .contact-info h3 {
        font-size: 18px;
    }
    
    .contact-item {
        margin-bottom: 12px;
    }
}
