/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lexend', sans-serif;
    line-height: 1.6;
    color: #f5f1eb;
    background: #2d1810;
    direction: ltr;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #e8dcc6;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: #8A9A5B; /* Olive Leaf Green */
    color: #ffffff;
    border: none;
    box-shadow: none;
}

.btn-primary:hover {
    background: #717E4A; /* Darker Olive */
    color: #ffffff;
    box-shadow: none;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #8A9A5B;
    border: 2px solid #8A9A5B;
}

.btn-secondary:hover {
    background: #8A9A5B;
    color: #ffffff;
    border-color: #8A9A5B;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    background: rgba(29, 18, 12, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(139, 69, 19, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Walnut Leaf Logo Styles */
.logo {
    width: 45px;
    height: 45px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.1) rotate(5deg);
}

.logo::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 25%, #15803d 50%, #166534 75%, #22c55e 100%);
    clip-path: polygon(50% 0%, 85% 15%, 100% 50%, 85% 85%, 50% 100%, 15% 85%, 0% 50%, 15% 15%);
    box-shadow: 
        0 0 20px rgba(34, 197, 94, 0.5),
        inset 0 2px 4px rgba(255, 255, 255, 0.3),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    animation: leafGlow 3s ease-in-out infinite;
}

.logo::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    clip-path: polygon(50% 0%, 85% 15%, 100% 50%, 85% 85%, 50% 100%, 15% 85%, 0% 50%, 15% 15%);
    z-index: 1;
}

@keyframes leafGlow {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(34, 197, 94, 0.5),
            inset 0 2px 4px rgba(255, 255, 255, 0.3),
            inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(34, 197, 94, 0.8),
            0 0 40px rgba(22, 163, 74, 0.4),
            inset 0 2px 6px rgba(255, 255, 255, 0.4),
            inset 0 -2px 6px rgba(0, 0, 0, 0.3);
    }
}

.nav-brand h1 {
    font-size: 1.5rem;
    margin: 0;
    color: #8A9A5B;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #f5f1eb;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #8A9A5B;
    background: rgba(138, 154, 91, 0.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #8b4513;
    border-radius: 2px;
    transition: all 0.3s ease;
    
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 24, 16, 0.25);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #f5f1eb;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 5.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #8A9A5B;
}

.hero-subtitle {
    font-size: 1.7rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    color: #e8dcc6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: #3d2317;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #8A9A5B;
}

.section-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #8A9A5B; /* Olive green background */
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid #717E4A; /* Darker olive border */
    padding: 2rem;
    color: #2d1810; /* Dark brown text */
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: #2d1810;
    background: #717E4A; /* Darker olive on hover */
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(45, 24, 16, 0.8); /* Dark brown background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
    box-shadow: none;
}

.feature-card h3 {
    color: #2d1810; /* Dark brown text */
    margin-bottom: 1rem;
}

.feature-card p {
    color: #e8dcc6;
    margin: 0;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: #3d2317;
    color: #f5f1eb;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #8A9A5B;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Page Header */
.page-header {
    padding: 8rem 0 2rem;
    background: #3d2317;
    color: #f5f1eb;
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #8A9A5B;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    color: #e8dcc6;
}

.arrow-down-container {
    text-align: center;
    margin-top: 3rem;
    font-size: 2.5rem;
    animation: bounce 2s infinite;
}

.arrow-down-container i {
    color: #8A9A5B;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

/* Gallery Styles */
.gallery {
    padding: 4rem 0;
    background: #3d2317;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: none;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(45, 24, 16, 0.9));
    color: white;
    padding: 2rem 1rem 1rem;
    transform: translateY(0);
    transition: none;
}

.gallery-overlay h3 {
    margin: 0;
    font-size: 1.2rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(45, 24, 16, 0.95);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    max-height: 80%;
    object-fit: contain;
    animation: zoom 0.3s;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f5f1eb;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.modal-close:hover {
    color: #22c55e;
}

.modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #e8dcc6;
    padding: 10px 0;
    height: 150px;
}

/* Contact Page Styles */
.contact-content {
    padding: 4rem 0;
    background: #3d2317;
    padding-top: 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2,
.map-section h2 {
    margin-bottom: 2rem;
    color: #8A9A5B;
}

.contact-cards {
    margin-bottom: 2rem;
}

.contact-card,
.contact-card.phone,
.contact-card.location,
.contact-card.email,
.working-hours {
    background: rgba(45, 24, 16, 0.8) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 69, 19, 0.3);
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    color: #f5f1eb;
}

.contact-card:hover {
    transform: translateY(-2px);
    border-color: rgba(34, 197, 94, 0.4);
}

.contact-card.phone,
.contact-card.location {
    background: rgba(45, 24, 16, 0.8);
}

.contact-card.email {
    background: rgba(45, 24, 16, 0.8);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    background: #8A9A5B;
    box-shadow: none;
}

.contact-card.phone .contact-icon,
.contact-card.email .contact-icon,
.contact-card.location .contact-icon {
    background: #8A9A5B;
    color: #fff;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    color: #f5f1eb;
}

.contact-details p {
    margin: 0;
}

.working-hours {
    background: rgba(45, 24, 16, 0.8);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
}

.working-hours h3 {
    margin-bottom: 1rem;
    color: white;
}

.working-hours p {
    margin: 0;
    opacity: 0.9;
}

/* Map Section Styles */
.map-container {
    background: rgba(45, 24, 16, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    margin-bottom: 2rem;
    color: #f5f1eb;
    border: 1px solid rgba(139, 69, 19, 0.3);
}

.map-placeholder {
    padding: 3rem 2rem;
    text-align: center;
    background: rgba(74, 44, 26, 0.5);
    backdrop-filter: blur(10px);
}

.map-icon {
    width: 80px;
    height: 80px;
    background: #8A9A5B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: none;
}

.map-placeholder h3 {
    color: white;
    margin-bottom: 1rem;
}

.map-placeholder p {
    margin-bottom: 2rem;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.location-features {
    background: rgba(45, 24, 16, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    color: #f5f1eb;
    border: 1px solid rgba(139, 69, 19, 0.3);
}

.location-features h3 {
    color: #f5f1eb;
    margin-bottom: 1.5rem;
    text-align: center;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(74, 44, 26, 0.5);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(74, 44, 26, 0.8);
    transform: translateX(-5px);
}

.feature-item i {
    color: #8A9A5B;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.feature-item span {
    color: #8A9A5B;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #2d1810;
    color: #f5f1eb;
    padding: 3rem 0;
}

.footer-content {
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-brand h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #8A9A5B;
}

.footer-desc {
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-item, .contact-item span {
    color: #8A9A5B !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: #8A9A5B !important;
}

.contact-item i {
    color: #8A9A5B !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: #8A9A5B !important;
}

.footer-bottom {
    border-top: 1px solid rgba(139, 69, 19, 0.4);
    padding-top: 1.5rem;
}

.footer-bottom p {
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoom {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(45, 24, 16, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-link {
        color: #e8dcc6;
    }
    .nav-link:hover,
    .nav-link.active {
        color: #22c55e;
        background: rgba(34, 197, 94, 0.1);
    }
    .nav-toggle {
        display: flex;
    }
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .features-list {
        grid-template-columns: 1fr;
    }
    .footer-contact {
        flex-direction: column;
        gap: 1rem;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .container {
        padding: 0 15px;
    }
    .page-header h1 {
        font-size: 2rem;
    }
    .modal-content {
        width: 95%;
    }
    .modal-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
    .map-placeholder {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .nav-container {
        padding: 1rem;
    }
    .feature-card {
        padding: 1.5rem;
    }
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
    .contact-card {
        padding: 1rem;
    }
    .map-placeholder {
        padding: 1.5rem 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #3d2317;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #16a34a, #d4af37);
}

/* لون واتساب عند المرور */
.social-icons {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
}

.social-icons a {
    color: #f5f1eb;
    font-size: 24px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #8A9A5B;
}

.contact-item span {
    background: linear-gradient(135deg, #22c55e, #ffc400);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* اراء العملاء  */
.testimonials {
    background: #3d2317;
    padding: 50px 20px;
    text-align: center;
    color: #f5f1eb;
}

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonial {
    background: rgba(45, 24, 16, 0.8);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    color: #f5f1eb;
    border: 1px solid rgba(139, 69, 19, 0.3);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    text-align: center;
}

.testimonial-author {
    font-weight: bold;
    color: #8A9A5B;
}

/* الاسئلة  */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #f5f1eb;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(34, 197, 94, 0.4);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(45, 24, 16, 0.8);
    backdrop-filter: blur(10px);
}

.faq-question {
    padding: 15px;
    background: rgba(45, 24, 16, 0.8);
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #f5f1eb;
}

.faq-answer {
    padding: 15px;
    background: rgba(74, 44, 26, 0.8);
    display: none;
    color: #e8dcc6;
}

.faq-question i {
    transition: transform 0.3s;
    color: #8A9A5B;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    display: block;
}

/* Navbar Logo */
.navbar-logo {
    height: 65px;    /* ارتفاع مناسب */
    width: 100px;     /* عرض مناسب */
    object-fit: contain;
    margin-right: 10px; /* مسافة بسيطة بين اللوجو والنص */
    vertical-align: middle;
}

/* Booking Terms Section */
.terms-section {
    background: #3d2317;
    padding: 3rem 0 2rem 0;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
}
.terms-container {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(45, 24, 16, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), 0 1.5px 6px rgba(0, 0, 0, 0.1);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(139, 69, 19, 0.4);
    color: #f5f1eb;
}
.terms-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #8A9A5B;
}
.terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
    
}
.terms-list li {
    position: relative;
    padding-right: 2.2em;
    margin-bottom: 1.1em;
    font-size: 1.08rem;
    color: #b40000;
    background: rgba(74, 44, 26, 0.5);
    border-radius: 8px;
    padding-top: 0.8em;
    padding-bottom: 0.8em;
    padding-left: 1em;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(139, 69, 19, 0.3);
}
.terms-list li:before {
    content: "\f058";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #8A9A5B;
    position: absolute;
    right: 0.7em;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1em;
    
}
@media (max-width: 600px) {
    .terms-container {
        padding: 1.2rem 0.5rem;
    }
    .terms-title {
        font-size: 1.3rem;
    }
    .terms-list li {
        font-size: 0.98rem;
        padding-right: 2em;
    }
}