/* Custom Styles for HOBEC Website - Coming Soon Page */

/* Root Variables - Providence Wave Group Color Scheme */
:root {
    --pwg-blue: #233E7D;
    --pwg-green: #5C7F39;
    --pwg-gray: #59595B;
    --light-gray: #DADADA;
    --off-white: #F8F9FA;
    --white: #FFFFFF;
}

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, serif;
    line-height: 1.7;
    color: var(--pwg-gray);
    background-color: var(--off-white);
    overflow: hidden;
    height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Arial, sans-serif;
    font-weight: 600;
    color: var(--pwg-blue);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    color: var(--white);
    padding: 15px 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background-color: var(--pwg-green);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 10px 0;
}

/* .navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.navbar-brand {
    flex: 0 0 auto;
    order: 1;
} */

.brand-text {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
    font-family: Arial, sans-serif;
}

.navbar-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    gap: 30px;
    flex-wrap: wrap;
    order: 2;
}

.navbar-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    flex: 1;
    justify-content: center;
}

.navbar-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    color: var(--white);
}

.navbar-item i {
    font-size: 0.85rem;
}

.navbar-item a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.navbar-item a:hover {
    opacity: 0.7;
}

.navbar-separator {
    opacity: 0.5;
    color: var(--white);
}

.navbar-social {
    display: flex;
    gap: 12px;
    flex: 0 0 auto;
}

.navbar-social a {
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.navbar-social a:hover {
    background-color: var(--pwg-green);
    transform: translateY(-2px);
}

/* Coming Soon Hero Section */
.coming-soon-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--pwg-blue) 0%, #1a2e5f 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 20px 20px;
    overflow: hidden;
}

.coming-soon-content {
    max-width: 900px;
    margin: 0 auto;
    max-height: calc(100vh - 120px);
    overflow: hidden;
}

.coming-soon-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 700;
}

.coming-soon-hero .lead-text {
    font-size: 1.35rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.8;
}

/* HOBEC Description */
.hobec-description {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 40px 50px;
    margin: 50px auto;
    max-width: 850px;
    text-align: left;
}

.hobec-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
}

.hobec-text {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 20px;
    opacity: 0.92;
    color: var(--white);
}

.hobec-text:last-child {
    margin-bottom: 0;
    font-weight: 600;
    font-style: italic;
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px 40px;
    min-width: 130px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.countdown-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    font-family: Arial, sans-serif;
    color: var(--white);
}

.countdown-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
    opacity: 0.9;
}

/* Copyright */
.copyright-text {
    margin-top: 30px;
    text-align: center;
}

.copyright-text p {
    font-size: 0.9rem;
    opacity: 0.8;
    color: var(--white);
    margin: 0;
}

/* Features Section */
.features-section {
    display: none;
    padding: 80px 0;
    background-color: var(--white);
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    background-color: var(--white);
    border: 1px solid #eef2f7;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(35, 62, 125, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--pwg-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--pwg-blue);
}

.feature-card p {
    color: var(--pwg-gray);
    line-height: 1.7;
}

/* Contact Section */
.contact-info {
    display: none;
    background-color: var(--pwg-blue);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-info a:hover {
    opacity: 0.8;
}

.contact-info-line {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 1rem;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.contact-separator {
    opacity: 0.5;
    margin: 0 5px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    background-color: var(--pwg-green);
    transform: translateY(-3px);
}

/* Buttons */
.btn-pwg {
    background-color: var(--pwg-blue);
    color: var(--white);
    border: none;
    padding: 14px 30px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-pwg:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(35, 62, 125, 0.3);
    background-color: #1a2e5f;
}

.btn-pwg-green {
    background-color: var(--pwg-green);
}

.btn-pwg-green:hover {
    background-color: #4a6630;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 0;
    }

    .navbar.scrolled {
        padding: 8px 0;
    }

    .navbar-content {
        justify-content: center;
        text-align: center;
    }

    .brand-text {
        font-size: 1.5rem;
    }

    .navbar-info {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .navbar-contact {
        flex-direction: column;
        gap: 8px;
        font-size: 0.85rem;
    }

    .navbar-separator {
        display: none;
    }

    .navbar-social {
        gap: 15px;
    }

    .navbar-social a {
        width: 38px;
        height: 38px;
    }

    .coming-soon-hero {
        padding: 70px 15px 15px;
    }

    .coming-soon-hero h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .coming-soon-hero .lead-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .coming-soon-content {
        max-height: calc(100vh - 90px);
    }

    .hobec-description {
        padding: 30px 35px;
        margin: 40px 20px;
    }

    .hobec-title {
        font-size: 1.5rem;
    }

    .hobec-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .countdown-item {
        padding: 20px 30px;
        min-width: 110px;
    }

    .countdown-number {
        font-size: 2.5rem;
    }

    .countdown-label {
        font-size: 0.9rem;
    }

    .countdown-timer {
        gap: 15px;
    }

    .copyright-text {
        margin-top: 25px;
    }

    .copyright-text p {
        font-size: 0.85rem;
    }

    .contact-info-line {
        font-size: 0.95rem;
        gap: 12px;
    }

    .contact-separator {
        display: none;
    }

    .contact-item {
        flex-basis: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .brand-text {
        font-size: 1.3rem;
        letter-spacing: 1.5px;
    }

    .navbar-contact {
        font-size: 0.8rem;
    }

    .navbar-item {
        justify-content: center;
    }

    .navbar-social a {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }

    .coming-soon-hero {
        padding: 65px 10px 10px;
    }

    .coming-soon-hero h1 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .coming-soon-hero .lead-text {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .coming-soon-content {
        max-height: calc(100vh - 80px);
    }

    .coming-soon-content .logo {
        margin-bottom: 10px !important;
    }

    .coming-soon-content .logo h2 {
        font-size: 1.8rem !important;
    }

    .hobec-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .hobec-text {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .countdown-timer {
        margin: 25px 0;
        gap: 10px;
    }

    .countdown-item {
        padding: 12px 15px;
        min-width: 75px;
    }

    .countdown-number {
        font-size: 1.8rem;
    }

    .countdown-label {
        font-size: 0.75rem;
    }

    .copyright-text {
        margin-top: 20px;
    }

    .copyright-text p {
        font-size: 0.75rem;
    }

    .contact-info-line {
        font-size: 0.9rem;
        gap: 10px;
        flex-direction: column;
    }
}
