/* Global Styles */
:root {
    --primary-color: #ff6b35;
    --secondary-color: #ffa726;
    --accent-color: #ff9800;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-beige: #DCC9AB;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
}

/* Left Column - Background Image */
.hero-image-column {
    padding: 0;
    position: relative;
}

.hero-background {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right Column - Content */
.hero-content-column {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    height: 100vh;
}

/* Section 1: Navigation */
.hero-navbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-separator {
    border-right: 2px solid lightgrey;
}
.hero-navbar .navbar {
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    position: static;
    width: 100%;
    border: none;
}

.navbar-brand {
    padding: 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.arabic-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.1;
}

.english-text {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.1;
}

.navbar-nav {
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

/* Mobile Navigation Styles */
@media (max-width: 991.98px) {
    .navbar-nav {
        gap: 0;
        flex-direction: column !important;
        width: 100%;
        padding: 1rem 0;
    }
    
    .navbar-nav .nav-link {
        padding: 1rem 0 !important;
        border-bottom: 1px solid #e0e0e0;
        text-align: center;
        width: 100%;
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    .navbar-toggler {
        border: none;
        padding: 0.5rem;
        margin-right: 1rem;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    .navbar-collapse {
        background: white;
        border-top: 1px solid #e0e0e0;
        margin-top: 1rem;
    }
    
    .login-btn {
        margin: 1rem auto !important;
        width: fit-content;
        display: block;
    }
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.login-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    color: white;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.login-btn:hover {
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Section 2: Hero Text */
.hero-text-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-text {
    text-align: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.6;
}

/* Section 3: Two Images Side by Side */
/* .hero-images-section {
    padding: 2rem;
} */

.hero-images-section .row {
    margin: 0;
}

.hero-images-section .col-6 {
    padding: 0 0.5rem;
}

.image-preview {
    height: 350px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.image-preview:hover {
    transform: translateY(-5px);
}

.image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* School Description Section */
.school-description {
    background: var(--bg-beige);
    padding: 4rem 0;
}

.school-description h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.school-description p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-dark);
    line-height: 1.8;
}

/* Statistics Section */
.statistics-section {
    background: var(--bg-beige);
    padding: 4rem 0;
}

.campus-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.campus-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.stats-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 3rem;
    border-radius: var(--border-radius);
    color: white;
    text-align: center;
    box-shadow: var(--shadow);
}

.stat-item {
    margin-bottom: 2rem;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 500;
}

.stat-icon {
    font-size: 2rem;
    margin-top: 0.5rem;
}

/* Story Mission Section */
.story-mission {
    background: var(--white);
    padding: 4rem 0;
}

.since-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.badge-dot {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
}

.story-mission h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.story-mission p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Values Section */
.values-section {
    background: var(--bg-beige);
    padding: 4rem 0;
}

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    height: 100%;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 24px;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Legacy Section */
.legacy-section {
    background: url('/images/legacy.jpeg') center/cover;
    padding: 6rem 0;
    position: relative;
}

.legacy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.legacy-content {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
}

.legacy-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.legacy-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Success Stories Section */
.success-stories {
    background: var(--white);
    padding: 4rem 0;
}

.success-stories h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.success-card {
    background: var(--bg-beige);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.success-card:hover {
    transform: translateY(-5px);
}

.success-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.success-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Activities Section */
.activities-section {
    background: var(--bg-beige);
    padding: 4rem 0;
}

.activities-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.activities-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.activities-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.activities-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.activity-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.activity-item:hover {
    transform: translateX(5px);
}

.activity-content {
    flex: 1;
}

.activity-date {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.activity-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.activity-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.activity-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    overflow: hidden;
    flex-shrink: 0;
}

.activity-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 4rem 0;
    color: white;
}

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.1rem;
    margin-bottom: 0;
    opacity: 0.9;
}

.btn-light {
    background: var(--white);
    color: var(--text-dark);
    border: none;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn-light:hover {
    transform: translateY(-2px);
    background: var(--white);
    color: var(--text-dark);
}

/* Footer */
.footer {
    background: var(--white);
    padding: 3rem 0 1rem;
    border-top: 1px solid #e9ecef;
}

.footer-logo {
    margin-bottom: 2rem;
}

.tagline {
    margin-top: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.footer h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    color: white;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .image-preview {
        height: 150px;
    }
    
    .stats-box {
        margin-top: 2rem;
    }
    
    .legacy-content {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
    
    .navbar-nav {
        gap: 1rem;
    }
    
    .hero-background {
        width: 100%;
        height: 40%;
        top: 0;
    }
    
    .hero-content {
        width: 100%;
        height: 60%;
        top: 40%;
        padding: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-images {
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .image-preview {
        height: 120px;
    }
    
    .school-description h2,
    .story-mission h2,
    .values-section h2,
    .legacy-content h2,
    .success-stories h2,
    .activities-section h2,
    .cta-banner h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .success-number {
        font-size: 2.5rem;
    }
    
    .activity-item {
        flex-direction: column;
        text-align: center;
    }
    
    .activity-thumbnail {
        width: 100%;
        height: 150px;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 0.8rem;
    }
    
    .logo-container {
        gap: 8px;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .arabic-text {
        font-size: 16px;
    }
    
    .english-text {
        font-size: 11px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .hero-images {
        gap: 0.8rem;
        margin-top: 1.5rem;
    }
    
    .image-preview {
        height: 100px;
    }
    
    .stats-box {
        padding: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .value-card,
    .success-card {
        margin-bottom: 1.5rem;
    }
} 