* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Tajawal', sans-serif; } @keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0px); } } @keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.03); } 100% { transform: scale(1); } } body, html { height: 100%; color: #2c3e50; line-height: 1.6; overflow-x: hidden; background: linear-gradient(135deg, rgba(240, 248, 255, 0.9), rgba(173, 216, 230, 0.7)), url(); background-size: cover; background-position: center; background-attachment: fixed; } body.rtl { direction: rtl; text-align: right; } header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), rgba(240, 248, 255, 0.85)); height: 80px; display: flex; align-items: center; justify-content: flex-start; transition: all 0.3s ease; border-bottom: 1px solid rgba(0, 90, 158, 0.2); padding: 0 2rem; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); } header.scrolled { background: rgba(255, 255, 255, 0.98); box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2); } nav { display: flex; justify-content: flex-start; align-items: center; padding: 1rem 3%; max-width: 1400px; margin: 0 auto; height: 80px; } .logo { height: 80px; transition: all 0.3s ease; margin-right: 3rem; } .logo img { height: 100%; width: auto; display: block; max-height: 100%; filter: drop-shadow(0 0 10px rgba(0, 90, 158, 0.3)); transition: transform 0.3s ease; } .logo img:hover { transform: scale(1.05); } .nav-links { display: flex; list-style: none; gap: 1.5rem; align-items: center; } .nav-links li { list-style: none; } .nav-links li a { text-decoration: none; color: #2c3e50; font-weight: 500; font-size: 1.1rem; padding: 0.5rem 1.2rem; border-radius: 20px; transition: all 0.3s ease; position: relative; } .nav-links li a:hover { color: #005A9E; background: rgba(0, 90, 158, 0.1); } .nav-links li a.active { color: #005A9E; background: rgba(0, 90, 158, 0.2); box-shadow: 0 2px 8px rgba(0, 90, 158, 0.2); transform: translateY(-2px); } .nav-links li a::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 2px; background: #005A9E; transition: width 0.3s ease; } .nav-links li a:hover::after { width: 100%; } .language-switcher { position: relative; margin-left: 2rem; } .language-switcher select { padding: 0.8rem 2.5rem 0.8rem 1.5rem; background: #b3e5fc; color: #2c3e50; font-weight: 600; border: 1px solid #005A9E; border-radius: 25px; cursor: pointer; transition: all 0.3s ease; appearance: none; box-shadow: 0 2px 10px rgba(0, 90, 158, 0.2); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232c3e50' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 12px; } .language-switcher select:hover { background: #e1f5fe; transform: translateY(-3px); box-shadow: 0 4px 15px rgba(0, 90, 158, 0.3); } .albums-container { max-width: 100%; margin: 150px auto 50px; padding: 2rem; position: relative; z-index: 2; } .albums-content { background: rgba(255, 255, 255, 0.95); padding: 3rem; border-radius: 20px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); transition: all 0.5s ease; } .albums-content:hover { box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4); transform: translateY(-5px); } .section-title { text-align: center; font-size: 2.5rem; margin-bottom: 2.5rem; color: #2c3e50; position: relative; padding-bottom: 1rem; } .section-title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 100px; height: 3px; background: linear-gradient(to right, transparent, #005A9E, transparent); } .intro-text { font-size: 1.1rem; line-height: 1.8; margin-bottom: 2rem; color: #62778c; text-align: center; } .album-slider { width: 100%; margin: 3rem 0; position: relative; overflow: hidden; border-radius: 15px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); border: 1px solid rgba(0, 90, 158, 0.2); } .album-header { background: #f0f8ff; padding: 1.5rem; text-align: center; border-bottom: 1px solid rgba(0, 90, 158, 0.3); } .album-title { font-size: 1.8rem; color: #005A9E; margin: 0; } .slideshow-container { position: relative; width: 100%; height: 500px; overflow: visible; display: flex; align-items: center; justify-content: center; perspective: 1000px; } .slide { position: absolute; width: 60%; height: 100%; opacity: 0; transition: all 0.5s ease; display: flex; align-items: center; justify-content: center; transform: scale(0.8); pointer-events: none; } .slide.active { opacity: 1; transform: scale(1) translateX(0); z-index: 2; pointer-events: auto; } .slide.prev { opacity: 0.6; transform: scale(0.8) translateX(-50%); z-index: 1; } .slide.next { opacity: 0.6; transform: scale(0.8) translateX(50%); z-index: 1; } .slide img { width: auto; max-width: 100%; height: auto; max-height: 100%; object-fit: contain; object-position: center; border-radius: 10px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); } .slide-caption { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(255, 255, 255, 0.9); padding: 1.5rem; text-align: center; color: #2c3e50; font-size: 1.2rem; } .album-controls { display: flex; justify-content: center; gap: 1rem; margin-top: 1.5rem; } .control-btn { background: linear-gradient(to right, #005A9E, #003087); color: #fff; padding: 0.8rem 1.5rem; border: none; border-radius: 25px; cursor: pointer; transition: all 0.3s ease; font-weight: 600; box-shadow: 0 4px 8px rgba(0, 90, 158, 0.3); } .control-btn:hover { background: linear-gradient(to right, #003087, #005A9E); transform: translateY(-3px); box-shadow: 0 6px 12px rgba(0, 90, 158, 0.4); } .album-desc { padding: 1.5rem; text-align: center; color: #62778c; font-size: 1.1rem; line-height: 1.8; background: #f0f8ff; border-radius: 0 0 15px 15px; } .map-container iframe { width: 100%; height: 500px; border: none; border-radius: 12px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); } .floating-element { position: fixed; z-index: 1; opacity: 0.6; animation: float 6s ease-in-out infinite; } .floating-element:nth-child(1) { top: 15%; left: 5%; width: 40px; height: 40px; background: #005A9E; border-radius: 50%; animation-delay: 0s; } .floating-element:nth-child(2) { bottom: 20%; right: 10%; width: 60px; height: 60px; background: #003087; border-radius: 10px; transform: rotate(45deg); animation-delay: 1s; animation-duration: 8s; } .floating-element:nth-child(3) { top: 30%; right: 15%; width: 30px; height: 30px; background: #b3e5fc; border-radius: 50%; animation-delay: 2s; animation-duration: 7s; } .download-section { text-align: center; margin: 30px 0; } .download-btn { display: inline-block; background-color: #003087; color: white; padding: 12px 24px; border-radius: 4px; text-decoration: none; font-weight: 700; transition: all 0.3s ease; box-shadow: 0 2px 5px rgba(0,0,0,0.2); } .download-btn:hover { background-color: #2965d5; transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0,0,0,0.3); } .download-btn i { margin-right: 8px; } @media (max-width: 992px) { .nav-links { display: none; } .albums-container { margin: 120px auto 30px; padding: 1rem; } .albums-content { padding: 2rem; } .section-title { font-size: 2rem; } .slideshow-container { height: 400px; } .map-container iframe { height: 400px; } } @media (max-width: 768px) { .albums-container { margin: 100px auto 20px; } .albums-content { padding: 1.5rem; } .section-title { font-size: 1.8rem; } .slideshow-container { height: 350px; } .map-container iframe { height: 350px; } } @media (max-width: 480px) { .section-title { font-size: 1.6rem; } .album-title { font-size: 1.5rem; } .intro-text, .album-desc { font-size: 1rem; } .slideshow-container { height: 300px; } .slide-caption { font-size: 1rem; padding: 1rem; } .control-btn { padding: 0.6rem 1rem; font-size: 0.9rem; } .map-container iframe { height: 300px; } }