/* ========================================
   Style File for English Language
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;900&display=swap');

:root {
    --primary-color: #c9a961;
    --secondary-color: #1a1a1a;
    --text-color: #333;
    --light-bg: #f8f8f8;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

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

body {
    font-family: 'Poppins', sans-serif;
    direction: ltr;
    text-align: left;
    color: var(--text-color);
    line-height: 1.8;
    overflow-x: hidden;
    padding-top: 80px;
}

/* Header and Navigation */
.navbar {
    background: var(--white) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 50px;
    width: auto;
}

.navbar-nav {
    margin-left: auto;
}

.navbar-nav .nav-link {
    color: var(--secondary-color) !important;
    font-weight: 600;
    font-size: 16px;
    margin: 0 10px;
    padding: 8px 15px !important;
    transition: all 0.3s ease;
    position: relative;
}

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

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

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 30px);
}

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

.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.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(201, 169, 97, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../../image/المشاريع/IMG-20240603-WA0005.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white);
    text-align: center;
    padding: 60px 0;
    margin-top: -80px;
}

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

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-section .lead {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-section p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary-custom {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    background: #b89850;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.4);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
}

.section-title p {
    font-size: 1.2rem;
    color: #666;
    margin-top: 20px;
}

.about-content {
    font-size: 1.1rem;
    line-height: 2;
    color: #555;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

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

.feature-box {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 40px;
}

.feature-box i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.feature-box h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.feature-box p {
    color: #666;
    line-height: 1.8;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.mission-vision-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    height: 100%;
}

.mission-vision-card h3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

.mission-vision-card p {
    font-size: 1.1rem;
    line-height: 2;
    color: #555;
    text-align: center;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.footer p, .footer a {
    color: #ccc;
    text-decoration: none;
    line-height: 2;
    transition: all 0.3s ease;
}

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

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

.footer ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 30px;
    text-align: center;
    color: #999;
}

/* Contact Page */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-form {
    background: var(--light-bg);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form .form-control {
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 16px;
    direction: ltr;
    text-align: left;
}

.contact-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-info {
    padding: 50px 30px;
}

.contact-info-item {
    margin-bottom: 30px;
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
}

.contact-info-item h5 {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.contact-info-item p {
    color: #666;
    margin: 0;
}

/* Other Pages */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../../image/الصور الخاصة بتصميم الموقع الإلكتروني لشركة زولفورني/05-Top View Hotel room (1).jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0 60px;
    text-align: center;
    color: var(--white);
    margin-top: -80px;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.2rem;
}

.content-section {
    padding: 80px 0;
}

/* Language Switcher */
.lang-switcher {
    margin-right: 20px;
}

.lang-switcher a {
    color: var(--secondary-color) !important;
    font-weight: 600;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.lang-switcher a:hover {
    background: var(--primary-color);
    color: var(--white) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .navbar-nav {
        text-align: left;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 80vh;
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .about-section,
    .services-section,
    .features-section,
    .mission-vision-section {
        padding: 60px 0;
    }
}

