/* Mobile-first design */
:root {
    --primary-color: #7092be;
    --text-color: #2d2d2d;
    --background-color: #f1f1f1;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

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

body {
    background: var(--background-color);
    color: var(--text-color);
    font-family: Arial, sans-serif;
    font-size: 18.24px;
    line-height: 1.6;
    direction: rtl;
}

/* Header and Navigation */
.header {
    background: transparent;
    padding: 1rem;
    position: relative;
}

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

.logo {
    max-width: 200px;
    height: auto;
}

/* Search Icon */
.search-icon {
    cursor: pointer;
    font-size: 1.71rem;
    color: var(--primary-color);
    margin-right: 1rem;
}

/* Hamburger Menu */
.hamburger {
    cursor: pointer;
    font-size: 1.71rem;
    color: var(--primary-color);
    margin-left: 1rem;
}

/* Navigation Menu */
.nav-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    padding: 1rem;
    z-index: 1000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.nav-menu.active {
    display: block;
}

.nav-menu ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 4rem;
    padding-bottom: 2rem;
    min-height: 100vh;
}

.nav-menu li {
    margin: 1rem 0;
    text-align: center;
    width: 100%;
}

.nav-menu a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.2rem;
    display: block;
    padding: 0.5rem 1rem;
    width: 100%;
    text-align: center;
    transition: var(--transition);
}

.nav-menu a:hover {
    background-color: rgba(112, 146, 190, 0.1);
    border-radius: 5px;
}

.nav-menu a.current {
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    font-weight: bold;
}

.nav-menu a.current:hover {
    background-color: var(--primary-color);
    opacity: 0.9;
}

/* Close Menu Button */
.close-menu {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 1001;
}

/* Content Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

img.content {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    margin: 1rem 0;
    padding: 0 1rem;
    box-sizing: border-box;
    object-fit: contain;
}

h1, h2, h3, h4, h5, h6 {
    text-align: center;
    margin: 1.5rem 0 1rem 0;
    line-height: 1.4;
    padding: 0 1rem;
}

h1 {
    color: #7092be;
    font-size: 2.28rem;
}

h2 {
    color: #2d2d2d;
    text-align: center;
    margin: 2.5rem 0 1rem 0;
    line-height: 1.4;
    font-size: 2rem;
    padding: 0 1rem;
}

h3 {
    color: #2d2d2d;
    text-align: right;
    margin: 1.5rem 0 1rem 0;
    line-height: 1.4;
    font-size: 1.4rem;
    padding: 0 1rem;
}

p, ul, ol {
    text-align: right;
    margin: 1.2rem 0;
    font-size: 1.14rem;
    line-height: 1.7;
    padding: 0 1.5rem;
}

ul, ol {
    margin: 1.2rem 0;
    padding: 0 2rem 0 1.5rem;
}

ul li, ol li {
    margin: 0.8rem 0;
    line-height: 1.6;
    padding-right: 0.5rem;
}

ul {
    list-style-type: disc;
    list-style-position: outside;
}

ol {
    list-style-type: decimal;
    list-style-position: outside;
}

a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: var(--transition);
}

a:hover {
    opacity: 0.8;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: var(--transition);
    z-index: 100;
}

.scroll-top.visible {
    opacity: 1;
}

/* Search Popup */
.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-popup.active {
    display: flex;
    opacity: 1;
}

.search-popup-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    width: 90%;
    max-width: 400px;
    max-height: 95vh;
    overflow-y: auto;
}

.search-popup-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.close-popup {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    z-index: 1001;
}

.close-popup:hover {
    color: #333;
}

/* Mobile styles for popup */
@media (max-width: 480px) {
    .search-popup-content {
        width: 95%;
        max-width: 350px;
        max-height: 60vh;
        padding: 15px;
        border-radius: 8px;
    }
    
    .close-popup {
        top: 5px;
        left: 5px;
        font-size: 20px;
    }
}

/* Banner Styles */
.banner {
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Footer */
#footer {
    text-align: center;
    padding: 2rem 0;
}

#footer .banner {
    margin: 0 auto;
    display: block;
}

#footer a {
    display: inline-block;
    margin: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 1.8rem;
        margin: 1.2rem 0 0.8rem 0;
        padding: 0 0.5rem;
    }

    h2 {
        font-size: 1.6rem;
        margin: 1.2rem 0 0.8rem 0;
        padding: 0 0.5rem;
    }

    h3 {
        font-size: 1.2rem;
        margin: 1.2rem 0 0.8rem 0;
        padding: 0 0.5rem;
    }

    .logo {
        max-width: 150px;
    }

    .container {
        padding: 0.5rem 1rem;
    }

    p, ul, ol {
        margin: 1rem 0;
        padding: 0 1rem;
        line-height: 1.6;
    }

    ul, ol {
        padding: 0 1.5rem 0 1rem;
    }

    ul li, ol li {
        margin: 0.6rem 0;
        padding-right: 0.3rem;
    }

    img.content {
        width: 100%;
        height: auto;
        margin: 1rem 0;
    }

    .search-popup-content {
        width: 95%;
        height: 95%;
        margin: 2.5%;
    }
    
    .nav-menu {
        padding: 0.5rem;
    }
    
    .nav-menu ul {
        padding-top: 3rem;
        padding-bottom: 1rem;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.75rem 0.5rem;
    }
    
    .close-menu {
        top: 0.5rem;
        right: 0.5rem;
        font-size: 1.3rem;
    }
}

@media (min-width: 768px) {
    .nav-menu ul {
        padding-top: 3rem;
    }
    
    .close-menu {
        top: 0.5rem;
        right: 0.5rem;
    }
}

.booking-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    text-align: center;
}

/* CTA Button */
.button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    display: block;
    margin: 20px auto;
    min-width: 200px;
    text-decoration: none;
    text-align: center;
}

.button:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    color: var(--white);
    text-decoration: none;
}

.button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.4);
} 