*{
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background: #0f0f0f;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  position: relative;
  min-height: 100vh;
}

/* Floating Particles Background Effect */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  background: #0f0f0f;
}

.container{
 width: 100%;
 min-height: 100vh;
 display: flex;
 flex-direction: column;
 align-items: center;
 position: relative;
 z-index: 1;
 background: transparent;
}

.container .header .navbar{
 background: #0f0f0f;
 padding: 20px;
 width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
  border: 3px solid white;
  padding: 0 5px;
  border-radius: 5px;
  flex: 0 0 auto;
}


.nav-content{
 display: flex;
 justify-content: space-between;
 align-items: center;
 width: 90%;
 margin: auto;
 background: transparent;
 position: relative;
}

.nav-content ul {
 display: flex;
 justify-content: center;
 align-items: center;
 gap: 30px;
 background: transparent;
 list-style: none;
 position: absolute;
 left: 50%;
 transform: translateX(-50%);
 margin: 0;
 padding: 0;
}

.nav-content ul li{
 display: inline-block;
 margin: 0;
 background: transparent;
}

.nav-content ul li a{
 color: #ffffff;
 text-decoration: none;
 font-size: 18px;
 font-weight: 600;
 letter-spacing: 1px;
 transition: all 0.3s ease;
 padding: 10px 20px;
 border-radius: 25px;
 position: relative;
 background: transparent;
}



.nav-content ul li a:hover{
 background: transparent;
 color: #cccccc;
 transform: none;
}

.nav-content ul li a:focus{
 background: transparent;
 color: #ffffff;
 outline: none;
}

.logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0px;
  flex: 0 0 auto;
}

.logo img {
  width: 150px;
  height: auto;
  filter: brightness(1.2) contrast(1.1);
}

.content-content{
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 width: 90%;
 margin: auto;
 gap: 40px;
 padding: 40px 20px;
 max-width: 800px;
 text-align: center;
}

.content{
 background: transparent;
 min-height: 100vh;
 display: flex;
 align-items: center;
 justify-content: center;
 padding: 0;
 position: relative;
 z-index: 1;
}

.content .hero-img{
 width: 100%;
 display: flex;
 justify-content: center;
 align-items: center;
 padding: 20px;
 order: 2;
 margin: 0 auto;
}

.content .hero-img img{
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  margin: 0 auto;
  display: block;
}

.content .hero-img img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.content .text {
  width: 100%;
  line-height: 1.8;
  color: #ffffff;
  padding: 20px;
  text-align: center;
  order: 1;
}

.content h3 {
  font-weight: 400;
  font-size: 22px;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 10px;
  color: #cccccc;
}

.content h2 {
  font-weight: 900;
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.name-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 100%;
}

.name-decorated {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.name-arabic {
  font-family: 'El Messiri', sans-serif;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.content p{
 color: #cccccc;
 font-size: 18px;
 font-style: italic;
 margin-bottom: 30px;
}


.hero-btns {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: nowrap;
  width: 100%;
  overflow: visible;
}

.hero-btns .btn-1 {
  text-decoration: none;
  padding: 12px 24px;
  background: linear-gradient(135deg, #20B2AA 0%, #008B8B 100%);
  color: #ffffff;
  font-weight: 600;
  border-radius: 15px;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(32, 178, 170, 0.3);
  border: none;
  display: inline-block;
  white-space: nowrap;
  width: auto;
  min-width: 120px;
  flex-shrink: 0;
}

.btn-2{
 background: #F5F5DC;
 text-decoration: none;
  padding: 12px 24px;
  color: #333333;
  font-weight: 600;
  border-radius: 15px;
  border: 2px solid #333333;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: inline-block;
  white-space: nowrap;
  width: auto;
  min-width: 120px;
  flex-shrink: 0;
}

.btn-2:hover{
  background: #FFFACD;
  border-color: #555555;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.hero-btns .btn-1:hover {
  background: linear-gradient(135deg, #48CAE4 0%, #0077BE 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(32, 178, 170, 0.4);
}


.about{
 background: transparent;
 padding: 80px 20px;
 display: flex;
 justify-content: center;
 align-items: center;
 width: 100%;
 position: relative;
 z-index: 1;
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  text-align: center;
}

.about-text{
 width: 100%;
 text-align: center;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #ffffff;
  border-bottom: 3px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
  padding-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.about-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
  border-bottom: 3px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
  padding-bottom: 10px;
  font-family: 'Playfair Display', serif;
  text-align: center;
  width: 100%;
}

.about p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #cccccc;
  margin-bottom: 15px;
}

.glitch-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

/* Clean Arabic Text with Subtle Glow */
.glitch-text {
  position: relative;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.8;
  display: block;
  text-shadow: 0 0 2px white;
  margin-bottom: 15px;
  font-family: 'El Messiri', sans-serif;
  text-align: center;
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  opacity: 0.1;
  animation: none;
}

.glitch-text::before {
  color: #ff6b6b;
  z-index: -1;
  transform: translate(0.5px, 0);
}

.glitch-text::after {
  color: #4ecdc4;
  z-index: -2;
  transform: translate(-0.5px, 0);
}

/* Optional subtle animation - very gentle */
@keyframes subtle-glow {
  0%, 100% {
    text-shadow: 0 0 2px white;
  }
  50% {
    text-shadow: 0 0 3px white;
  }
}

/* Removed complex animations for better readability */

/* Removed skew animation for better readability */

/* Simple hover effect for better readability */
.glitch-text:hover {
  text-shadow: 0 0 3px white;
}
.stats {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.stats div {
  background: #f4f4f4;
  padding: 10px 15px;
  border-radius: 5px;
  flex: 1 1 150px;
}

.about-img{
 padding: 50px ;
 justify-content: center;
 align-items: center;
}

.about-img img{
  width: 450px; 
  height: auto;
  border-radius: 80px;
  box-shadow: 0 10px 8px rgba(0, 0, 0, 0.548);
}

.gallery {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.gallery h2 {
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: #222;
  border-bottom: 4px solid rgba(223, 175, 18, 0.836);
  display: inline-block;
  padding-bottom: 10px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 20px rgba(0,0,0,0.2);
}

.booking{
 text-align: center;
 align-items: center;
 justify-content: center;
}

.booking h2{
 font-size: 2.5rem;
  display: inline-block;
  margin-bottom: 50px;
  border-bottom: 5px solid rgba(223, 175, 18, 0.836);
  
}


form {
 display: flex;
 flex-direction: column;
 gap: 15px;
 width: 90%;
 margin: auto;
 margin-top: 20px;
}
form input, form textarea, form select {
 padding: 10px;
 border: 1px solid #ccc;
 border-radius: 5px;
}
form button {
 background-image: linear-gradient(to right ,rgba(211, 144, 20, 0.788),rgba(8, 134, 165, 0.788));
 color: #fff;
 padding: 12px;
 border: none;
 border-radius: 5px;
 font-size: 20px;
 font-weight: 700;
 cursor: pointer;
 transition: 0.3s;
}
form button:hover {
 background: #44444400;
 color: #000;
 border: #000 1px solid;
}
.footer {
  background: transparent;
  color: #ffffff;
  padding: 60px 20px 30px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
  padding-bottom: 10px;
  color: #ffffff;
  font-family: 'Playfair Display', serif;
}

.footer .social-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.footer .social-links a {
  font-size: 2rem;
  color: #ffffff;
  transition: all 0.3s ease;
  padding: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .social-links a:hover {
  color: #ffffff;
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.95rem;
  color: #cccccc;
}

.footer-bottom a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-bottom a:hover {
  color: #ffffff;
  opacity: 0.8;
}










/* Media Quiry */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-content ul {
    display: none;
    flex-direction: column;
    background: #0f0f0f;
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: none;
  }

  .nav-content ul.active {
    display: flex;
  }

  .nav-content ul li {
    margin: 15px 0;
  }
}

@media (max-width: 772px) {
  .menu-toggle {
    display: block;
  }

  .nav-content ul {
    display: none;
    flex-direction: column;
    background: #0f0f0f;
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: none;
  }

  .nav-content ul.active {
    display: flex;
  }

  .nav-content ul li {
    margin: 15px 0;
  }
}

@media (max-width: 884px) {
  .menu-toggle {
    display: block;
  }

  .nav-content ul {
    display: none;
    flex-direction: column;
    background: #0f0f0f;
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: none;
  }

  .nav-content ul.active {
    display: flex;
  }

  .nav-content ul li {
    margin: 15px 0;
  }
}

/* التابلت */
@media (max-width: 992px) {
  .nav-content {
    width: 95%;
  }

  .nav-content ul li a {
    font-size: 18px;
  }
}

/* الشاشات الكبيرة (ديسكتوب عادي) */
@media (min-width: 993px) and (max-width: 1200px) {
  .nav-content {
    width: 90%;
  }

  .nav-content ul li a {
    font-size: 20px;
  }
}

/* الشاشات الكبيرة جداً */
@media (min-width: 1201px) {
  .nav-content {
    width: 85%;
  }
}

/* للموبايلات الصغيرة */
@media (max-width: 767px) {
  .content-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .content .text {
    width: 100%;
    padding: 20px;
    text-align: center;
    order: 1;
  }

  .content .hero-img {
    width: 100%;
    padding: 20px;
    order: 2;
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }

  .content .hero-img img {
    width: 250px;
    height: 250px;
    margin: 0 auto;
    display: block;
  }

  .hero-btns {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    overflow: visible;
  }

  .hero-btns .btn-1,
  .hero-btns .btn-2,
  .sound-btn {
    padding: 10px 18px;
    font-size: 14px;
    text-align: center;
    border-radius: 12px;
    min-width: 100px;
    flex-shrink: 0;
  }

  .content h2 {
    font-size: 32px;
  }

  .name-container {
    flex-direction: row;
    gap: 10px;
  }

  .name-decorated,
  .name-arabic {
    font-size: 32px;
  }

  .content h3 {
    font-size: 18px;
  }

  .about-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .about-image-photo {
    width: 250px;
    height: 250px;
  }
}

/* للأجهزة المتوسطة (تابلت) */
@media (min-width: 768px) and (max-width: 1024px) {
  .content-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .content .text {
    width: 100%;
    padding: 30px;
    text-align: center;
  }

  .content .hero-img {
    width: 100%;
    padding: 30px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }

  .content .hero-img img {
    width: 350px;
    height: 350px;
    margin: 0 auto;
    display: block;
  }

  .content h2 {
    font-size: 40px;
  }

  .name-container {
    flex-direction: row;
    gap: 12px;
  }

  .name-decorated,
  .name-arabic {
    font-size: 40px;
  }

  .hero-btns {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* للشاشات الكبيرة (ديسكتوب) */
@media (min-width: 1025px) {
  .content-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: auto;
  }

  .content .text {
    width: 50%;
  }

  .content .hero-img {
    width: 45%;
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }

  .content .hero-img img {
    width: 450px;
    margin: 0 auto;
    display: block;
  }
}
.sound-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 120px;
  flex-shrink: 0;
}

.sound-btn .sound-label {
  color: #333333;
}

.sound-btn .equalizer span {
  background: #FF4444 !important;
  box-shadow: 0 0 5px rgba(255, 68, 68, 0.5) !important;
}

.equalizer {
  display: flex;
  gap: 2px;
  height: 16px;
  align-items: end;
}

.equalizer span {
  display: block;
  width: 3px;
  height: 4px;
  background: #FF4444;
  border-radius: 2px;
  animation: none;
  transition: height 0.3s ease;
  box-shadow: 0 0 5px rgba(255, 68, 68, 0.5);
}

.equalizer.animate span:nth-child(1) {
  animation: bounce 1s infinite ease-in-out;
}

.equalizer.animate span:nth-child(2) {
  animation: bounce 1s infinite ease-in-out 0.2s;
}

.equalizer.animate span:nth-child(3) {
  animation: bounce 1s infinite ease-in-out 0.4s;
}

.equalizer.animate span:nth-child(4) {
  animation: bounce 1s infinite ease-in-out 0.6s;
}

.equalizer.animate span:nth-child(5) {
  animation: bounce 1s infinite ease-in-out 0.8s;
}

@keyframes bounce {
  0%, 100% {
    height: 4px;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
  }
  50% {
    height: 16px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
  }
}

.btn-active {
  animation: pulseButton 1s infinite;
  background: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3) !important;
}

@keyframes pulseButton {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}


@media (max-width: 991px) {
  .about {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }

  .about-text {
    width: 100%;
    margin-top: 40px;
    padding: 0 20px;
  }

  .about-img {
    padding: 20px;
  }

  .about-img img {
    width: 80%;
    border-radius: 30px;
  }

  .about h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .about p {
    font-size: 1rem;
  }

  .stats {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .stats p{
   text-align: center;
   align-items: center;
   justify-content: center;
   font-size: 20px;
  }

  .stats div {
    width: 80%;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .about h2 {
    font-size: 1.8rem;
  }

  .about-img img {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .gallery h2 {
    font-size: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .gallery {
    padding: 40px 10px;
  }
.about-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding: 10px;
}

/* About Image with Red Glow Effect - High Specificity */
.about-image img.about-image-photo {
  width: 350px !important;
  height: 350px !important;
  object-fit: cover !important;
  border-radius: 30px !important;
  border: 5px solid #ff0000 !important;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.5) !important,
    0 0 20px #ff0000 !important,
    inset 0 0 10px rgba(255, 0, 0, 0.2) !important;
  transition: all 0.4s ease !important;
  cursor: pointer !important;
  display: block !important;
  position: relative !important;
  z-index: 999 !important;
}

.about-image img.about-image-photo:hover {
  transform: scale(1.08) !important;
  border: 5px solid #ff3333 !important;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.8) !important,
    0 0 40px #ff0000 !important,
    0 0 80px #ff0000 !important,
    0 0 120px rgba(255, 0, 0, 0.5) !important,
    inset 0 0 20px rgba(255, 0, 0, 0.3) !important;
  filter: brightness(1.1) !important;
}

/* Active state for better interaction */
.about-image-photo:active {
  transform: scale(1.01) !important;
  transition: all 0.1s ease !important;
}

/* Additional styling to ensure visibility */
.about-image {
  position: relative;
  z-index: 1;
}

.about-image-photo {
  position: relative;
  z-index: 2;
}

/* Override any conflicting styles */
.about-image {
  background: transparent !important;
  padding: 20px !important;
}

/* Force red border visibility */
img[src*="j.top4top.io"] {
  border: 6px solid red !important;
  box-shadow: 0 0 30px red !important;
  border-radius: 30px !important;
  transition: all 0.3s ease !important;
}

img[src*="j.top4top.io"]:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 0 50px red !important;
  border: 6px solid #ff6666 !important;
}

/* Media queries for about image */
@media (min-width: 768px) and (max-width: 1024px) {
  .about-image-photo {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 767px) {
  .about-image-photo {
    width: 250px;
    height: 250px;
  }

  .about-image-photo:hover {
    transform: scale(1.04) !important; /* Smaller scale on mobile */
    box-shadow:
      0 15px 40px rgba(0, 0, 0, 0.7),
      0 0 25px rgba(255, 0, 0, 0.7) !important,
      0 0 50px rgba(255, 0, 0, 0.4) !important;
  }
}
