/* RCA Page Styles */

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Hero Section */
.rca-hero {
    background-image: url('images/rca fatherson.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #243115;
}

.rca-hero .hero-overlay {
    background: rgba(76, 175, 80, 0.7);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rca-hero h1 {
    font-size: 2.5rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 100%;
    position: sticky;
    top: 0;
    background: transparent;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 999;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 2rem;
    max-width: 1600px;
}

.navbar-logo {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.navbar-container .navbar-menu {
    display: flex;
    text-align: center;
    gap: 1.5rem;
    list-style: none;
}

.navbar-container .navbar-menu li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 500;
    padding: 3px 20px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.7s ease;
    white-space: nowrap;
}

.navbar-container .navbar-menu li a:hover,
.navbar-container .navbar-menu li a.active {
    color: #162530;
    background: rgba(188, 212, 229, 0.8);
    border: 2px solid #fff;
}

.navbar-toggle {
    display: none;
    background: transparent;
    padding: 10px;
    border: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #4bb223;
    transition: all 0.3s ease-in-out;
}

/* Responsive Styles */
@media (max-width: 880px) {
    .navbar {
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    .navbar-container .navbar-menu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.7rem !important;
        position: absolute;
        height: 100vh;
        width: 250px;
        top: 0;
        right: 0;
        padding: 5rem 1.5rem;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }

    .navbar-container .navbar-menu.active {
        display: flex;
    }

    .navbar-toggle {
        display: block;
        z-index: 999;
    }

    .navbar-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .navbar-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 0 1rem;
    }

    .navbar-logo {
        font-size: 1.7rem;
    }

    .navbar-container .navbar-menu li a {
        font-size: 1.2rem;
        padding: 3px 15px;
    }
}

/* Intro Section */
.rca-intro {
    padding: 60px 20px;
    background: linear-gradient(to right, #f0f8f0, #e8f5e8);
    text-align: center;
}

.rca-intro p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

/* Wisdom Section */
.rca-wisdom {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

.rca-wisdom h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2E7D32;
}

.rca-wisdom blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: #424242;
    margin: 20px 0;
    padding: 20px;
    border-left: 5px solid #4CAF50;
    background: #f5f5f5;
}

.rca-wisdom p {
    max-width: 800px;
    margin: 20px auto;
    color: #666;
}

/* Our Focus Section */
.our-focus {
    padding: 60px 20px;
    background: linear-gradient(to right, #e8f5e8, #f0f8f0);
}

.our-focus h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2E7D32;
}

.focus-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.focus-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.focus-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.focus-item h3 {
    color: #388E3C;
    margin-bottom: 10px;
}

.focus-item p {
    color: #666;
}

/* Why RCA Section */
.why-rca {
    padding: 60px 20px;
    background: #fff;
}

.why-rca h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2E7D32;
}

.why-rca p {
    max-width: 800px;
    margin: 0 auto 20px;
    color: #555;
}

.why-rca ul {
    max-width: 800px;
    margin: 0 auto;
    padding-left: 20px;
}

.why-rca li {
    margin-bottom: 10px;
    color: #666;
}

/* Our Vision Section */
.our-vision {
    padding: 60px 20px;
    background: linear-gradient(to right, #f0f8f0, #e8f5e8);
    text-align: center;
}

.our-vision h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2E7D32;
}

.our-vision p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

/* RCA Images Section */
.rca-images {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

.rca-images h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2E7D32;
}

.rca-gallery {
    position: relative;
    width: 400px;
    height: 300px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.rca-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
    cursor: pointer;
}

.rca-gallery img:hover {
    transform: scale(1.02);
}

/* Dark Mode Styles */
[data-theme="dark"] .rca-hero {
    background-image: url('images/rca fatherson.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

[data-theme="dark"] .rca-hero .hero-overlay {
    background: rgba(76, 175, 80, 0.8);
}

[data-theme="dark"] .rca-wisdom {
    background: var(--section-bg);
}

[data-theme="dark"] .rca-wisdom blockquote {
    background: var(--card-bg);
    border-left-color: #4caf50;
}

[data-theme="dark"] .our-focus {
    background: var(--bg-color);
}

[data-theme="dark"] .focus-item {
    background: var(--card-bg);
    border: 1px solid #444;
}

[data-theme="dark"] .why-rca {
    background: var(--section-bg);
}

[data-theme="dark"] .our-vision {
    background: var(--bg-color);
}

[data-theme="dark"] .rca-images {
    background: var(--bg-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .rca-hero h1 {
        font-size: 2rem;
    }

    .focus-content {
        grid-template-columns: 1fr;
    }

    .focus-item {
        padding: 15px;
    }
}


