/* =============================================================================
   كوخ كاف - ملف الأنماط المحدث مع Font Awesome
   ============================================================================= */

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

:root {
    --primary-color: #3D4A32;
    --secondary-color: #FEEED8;
    --primary-dark: #2d3725;
    --secondary-light: #f5e4c1;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 8px 25px rgba(61, 74, 50, 0.15);
    --shadow-heavy: 0 15px 35px rgba(0, 0, 0, 0.2);
    --border-radius: 15px;
    --transition: all 0.3s ease;
    --font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a6b47 100%);
    scroll-behavior: smooth;
    direction: ltr;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =============================================================================
   الهيدر والتنقل
   ============================================================================= */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    height: 60px;
    width: auto;
    transition: var(--transition);
    flex-shrink: 0;
}

.logo:hover {
    transform: scale(1.05);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-wrapper {
    display: flex;
    gap: 12px;
    align-items: center;
}

.contact-btn {
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    white-space: nowrap;
    direction: ltr;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-btn.primary {
    background: #526241;
}

.contact-btn.secondary {
    background: #2196F3;
}

.contact-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.contact-btn i {
    font-size: 14px;
}

/* Language Switcher */
.lang-switcher {
    background: linear-gradient(45deg, var(--primary-color), #5a6b47);
    color: white;
    padding: 10px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    white-space: nowrap;
}

.lang-switcher:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* =============================================================================
   القسم البطولي (Hero)
   ============================================================================= */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('https://img.gathern.co/1400x0/1/hcLNJ86uougnIFUwGBIKHYk38vEdn-mS.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(61, 74, 50, 0.3) 0%, rgba(45, 55, 37, 0.5) 100%);
}

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

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease;
    font-weight: 900;
}

.hero-content h1 i {
    color: var(--secondary-color);
    margin-left: 15px;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease 0.3s both;
}

.stars {
    color: #ffd700;
    font-size: 1.5rem;
    margin: 1rem 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.4s both;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.stars i {
    font-size: 1.3rem;
}

.rating-text {
    color: white;
    font-size: 1rem;
    margin-right: 10px;
    font-weight: 500;
}

.price-tag {
    background: linear-gradient(45deg, var(--primary-color), #5a6b47);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.8rem;
    font-weight: bold;
    display: inline-block;
    margin: 1rem 0 2rem;
    box-shadow: 0 8px 25px rgba(61, 74, 50, 0.4);
    animation: fadeInUp 1s ease 0.5s both;
}

.price-tag i {
    margin-left: 10px;
    font-size: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn {
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-align: center;
    border: none;
    cursor: pointer;
    min-width: 180px;
    justify-content: center;
}

.btn i {
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), #5a6b47);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(61, 74, 50, 0.4);
}

.btn-secondary {
    background: rgba(254, 238, 216, 0.9);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
    backdrop-filter: blur(10px);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

/* =============================================================================
   قسم المميزات
   ============================================================================= */
.features {
    padding: 100px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title i {
    color: var(--primary-color);
    font-size: 2.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), #5a6b47);
    border-radius: 2px;
}

.key-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.key-feature {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--primary-color);
    max-width: 320px;
    min-width: 280px;
    transition: var(--transition);
}

.key-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(61, 74, 50, 0.25);
}

.key-feature .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--primary-color);
}

.key-feature .feature-icon i {
    font-size: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #e2e8f0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--primary-color);
}

.feature-icon i {
    font-size: 3rem;
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.feature-list {
    list-style: none;
    padding: 0;
    text-align: right;
}

.feature-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--secondary-color);
    position: relative;
    padding-right: 2.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    min-width: 20px;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li:hover {
    color: var(--primary-color);
    padding-right: 3rem;
}

/* =============================================================================
   معرض الصور
   ============================================================================= */
.gallery {
    padding: 100px 0;
    background: var(--secondary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    height: 280px;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* =============================================================================
   قسم الموقع
   ============================================================================= */
.location {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-description {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 1rem;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.location-details {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    padding: 3rem;
    border-radius: 25px;
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-medium);
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    background: var(--white);
    padding: 1.2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    gap: 15px;
}

.detail-item:hover {
    transform: translateX(-8px);
    box-shadow: 0 8px 20px rgba(61, 74, 50, 0.2);
    border-right: 4px solid var(--primary-color);
}

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

.detail-icon {
    color: var(--primary-color);
    font-size: 1.4rem;
    min-width: 24px;
}

.detail-icon i {
    font-size: 1.3rem;
}

/* =============================================================================
   قسم التواصل
   ============================================================================= */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a6b47 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.contact h2 i {
    font-size: 2.5rem;
}

.contact p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 3rem 0;
    position: relative;
    z-index: 2;
}

.contact-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 3rem 2rem;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    text-align: center;
    min-width: 250px;
    border: 2px solid rgba(254, 238, 216, 0.3);
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.contact-item h3 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-item h3 i {
    font-size: 1.3rem;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-item a:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}

/* =============================================================================
   الفوتر
   ============================================================================= */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
}

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

.footer-partner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

/* =============================================================================
   الحركات
   ============================================================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.gallery-item,
.contact-item,
.key-feature {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.feature-card.animate,
.gallery-item.animate,
.contact-item.animate,
.key-feature.animate {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================================================
   الاستجابة
   ============================================================================= */
@media (max-width: 1024px) {
    .hero {
        background-attachment: scroll;
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* تحسين الهيدر - كل شيء في سطر واحد */
    .nav {
        padding: 10px 12px;
        gap: 8px;
        flex-wrap: nowrap;
    }
    
    .logo {
        height: 45px;
        width: auto;
    }
    
    .header-right {
        gap: 8px;
    }
    
    .contact-wrapper {
        gap: 6px;
    }
    
    .contact-btn {
        padding: 8px 10px;
        font-size: 11px;
        border-radius: 18px;
    }
    
    .lang-switcher {
        padding: 8px 12px;
        font-size: 11px;
        border-radius: 18px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact h2 {
        flex-direction: column;
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    /* تحسين الهيدر للشاشات الصغيرة جداً - كل شيء مضغوط في سطر واحد */
    .nav {
        padding: 8px 8px;
        gap: 5px;
    }
    
    .logo {
        height: 38px;
        width: auto;
    }
    
    .header-right {
        gap: 5px;
    }
    
    .contact-wrapper {
        gap: 4px;
    }
    
    .contact-btn {
        padding: 6px 8px;
        font-size: 10px;
        border-radius: 15px;
    }
    
    .contact-btn i {
        font-size: 10px;
    }
    
    .lang-switcher {
        padding: 6px 10px;
        font-size: 10px;
        border-radius: 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .price-tag {
        font-size: 1.4rem;
        padding: 0.8rem 1.5rem;
    }
}
