/* Home Page Styles - Public Site */
/* Color Palette: Light Blue (#264f79), White, Black only */

/* Slides Section */
.slides-container {
    background-color: #264f79;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.slides-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.slide-item {
    display: none;
}

.slide-item img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 15px;
}

.slide-title {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 1rem 2rem;
    border-radius: 12px;
}

.slide-title h3 {
    margin: 0;
    color: #264f79;
}

.slide-navigation {
    text-align: center;
    margin-top: 1rem;
}

.slide-nav-btn {
    background: white;
    border: none;
    padding: 0.7rem 1.5rem;
    margin: 0 0.5rem;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.slide-nav-btn i {
    color: #264f79;
}

/* Placeholder Styles */
.placeholder-banner {
    background-color: #264f79;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.placeholder-banner i {
    font-size: 4rem;
    color: white;
    margin-bottom: 1rem;
}

.placeholder-banner p {
    color: white;
    font-size: 1.5rem;
}

.placeholder-section {
    text-align: center;
    padding: 3rem;
    margin-bottom: 3rem;
    background-color: white;
    border: 3px dashed #264f79;
    border-radius: 20px;
}

.placeholder-section i {
    font-size: 3rem;
    color: #264f79;
    margin-bottom: 1rem;
}

.placeholder-section p {
    color: #264f79;
    font-size: 1.2rem;
}

.placeholder-content {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border: 2px dashed #264f79;
    border-radius: 15px;
}

.placeholder-content i {
    font-size: 2.5rem;
    color: #264f79;
    margin-bottom: 1rem;
}

.placeholder-content p {
    color: #264f79;
    font-size: 1.1rem;
}

/* About Row */
.about-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.about-block {
    background-color: white;
    border: 3px solid #264f79;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.about-text {
    color: black;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .about-row {
        grid-template-columns: 1fr;
    }
}

/* CTA Row (Achievers & Catalog) */
.cta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.cta-block {
    width: 100%;
}

.cta-link {
    display: block;
    background-color: #264f79;
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    position: relative;
    height: 100%;
}

.cta-link:hover {
    transform: scale(1.02);
}

.cta-link i.fa-trophy,
.cta-link i.fa-book {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.cta-link h2 {
    margin: 0.5rem 0;
    color: white;
    font-size: 2rem;
}

.cta-link p {
    color: white;
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

.cta-arrow {
    position: absolute;
    left: 3rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
}

.cta-arrow i {
    color: white;
}

@media (max-width: 768px) {
    .cta-row {
        grid-template-columns: 1fr;
    }
}

/* Features Section */
.features-section {
    margin-bottom: 3rem;
}

.section-title {
    text-align: center;
    color: #264f79;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background-color: #264f79;
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: scale(1.05);
}

.feature-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin: 0;
    font-size: 1.3rem;
}

/* Articles Section */
.articles-section {
    margin-bottom: 3rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
}

.article-card {
    background-color: white;
    border: 3px solid #264f79;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-card h3 {
    color: #264f79;
    padding: 1rem 1.5rem 0.5rem;
    margin: 0;
}

.article-summary {
    padding: 0.5rem 1.5rem 1rem;
    color: black;
    line-height: 1.6;
}

.btn-read-article {
    display: inline-block;
    background-color: #264f79;
    color: white;
    padding: 0.75rem 1.5rem;
    margin: 0 1.5rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-read-article:hover {
    background-color: black;
    transform: scale(1.05);
}

.btn-read-article i {
    margin-left: 0.5rem;
}

/* Videos Intro Section */
.videos-intro {
    background: linear-gradient(135deg, #264f79 0%, white 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.videos-intro h2 {
    color: #264f79;
    margin-bottom: 1rem;
}

.videos-intro p {
    color: black;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-watch-videos {
    display: inline-block;
    background-color: #264f79;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 15px;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.btn-watch-videos:hover {
    transform: scale(1.05);
}

.btn-watch-videos i {
    margin-left: 0.5rem;
}
