* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

html, body {
    max-width: 100%;
    scroll-behavior: smooth; 
    overflow-x: hidden ;
    position: relative;
}

/* Nav */
.main-header {
    position: fixed; top: 0; width: 100%; height: 80px;
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 5%; z-index: 2000;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    transition: 0.3s;
}

.logo {display: flex; align-items: center;   
    gap: 15px; color: white; 
    font-size: 1.5rem; font-weight: 900; }


.site-logo {width: 100px; height: auto; object-fit: contain;}
.logo-name span {color: #3b82f6;}

.nav-links {display: flex; align-items: center;}

.nav-links a {color: white; text-decoration: none; margin-left: 30px;
              font-weight: 500; font-size: 0.9rem; transition: 0.3s;}

.nav-links a:hover { color: #0466C8; }

.cart-icon {
    position: relative;
    font-size: 1.2rem;
    color: white;
    text-decoration: none;
    overflow: visible;
}

.login-btn {
    background: #aeaeaf;
    color: white !important; 
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.login-btn:hover {background: white; color: #3b82f6 !important;}

/* Video Section */
.gym-video-container {
    position: relative;
    width: 100%;
    height: 100vh; 
    overflow: hidden; 
    background: black; 
}

.gym-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: 1; 
}

.gym-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    z-index: 2;
}

.gym-text {font-size: clamp(2.5rem, 8vw, 5rem); font-weight: 900;
    letter-spacing: 5px; margin-bottom: 10px;}

.gym-video-btn {
    margin-top: 20px;
    padding: 15px 40px;
    background-color: #0466C8;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s ease;
}

.gym-video-btn:hover {background-color: #0353A4;transform: scale(1.05);}

/* about us*/
.about-section {
  background: #0d1220;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  color: white;
  text-align: center;
}

.about-gallery {position: relative;height: 300px;margin-bottom: 60px;}

.about-img {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  animation: float 6s ease-in-out infinite;
}

.about-img i {width: 40px; height: 40px; color: rgba(59,130,246,0.5);}
.about-img-left { left: 10%; top: 50px; }
.about-img-right { right: 10%; top: 0; }
.about-img-center { left: 50%; top: 80px; transform: translateX(-50%); }
.about-img-bottom-left { left: 20%; bottom: 0; }
.about-img-bottom-right { right: 20%; bottom: 0; }

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.about-tag {color: #3b82f6;font-size: 14px;}
.about-title {font-size: 40px;margin: 10px 0;}
.about-title span {color: #3b82f6;}
.about-text {max-width: 600px;margin: auto;color: #aaa;}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
    max-width: 500px; 
    margin-left: auto;
    margin-right: auto;
}

.feature-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-box:hover {border: 1px solid #3b82f6;
    background: rgba(59, 130, 246, 0.1);transform: translateY(-5px);}

.feature-box i {width: 32px;height: 32px;
    margin-bottom: 12px;color: #3b82f6;}

/*shop*/
.wellness-premium-shades-grid {
    padding: 100px 5%; background-color: #ffffff;
    overflow: visible !important;position: relative;}

.wellness-container {
    max-width: 1100px;margin: 0 auto;
    overflow: visible !important;display: block; }

.shades-gallery-grid {
    display: grid;grid-template-columns: repeat(3, 1fr);
    gap: 30px;row-gap: 100px; overflow: visible !important;}

.shade-card {
    position: relative;
    height: 110px;
    background-color: var(--shade-color);
    border-radius: 35px;
    display: flex;
    justify-content: flex-end; 
    align-items: center; 
    padding: 0 25px;
    text-decoration: none;
    transition: 0.4s ease;
    overflow: visible !important;
}

.shade-img {
    position: absolute;
    width: 220px ; 
    height: 220px ;
    top: -50px; 
    left: -25px; 
    z-index: 20;
    object-fit: contain;
    filter: drop-shadow(0 15px 20px rgba(0,0,0,0.2));
}

.shade-card:hover {transform: translateY(-10px) !important;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);}

.shade-title {color: white;font-size: 1.3rem;
    font-weight: 700;margin: 0;z-index: 10;}

/* 6. Nutrition arrow*/
.nutrition-teaser {
    position: relative;min-height: 400px; 
    padding: 60px 10%; display: flex; 
    justify-content: center;align-items: center; 
    overflow: hidden;margin: 20px 0;}

.nutrition-video {
    position: absolute;top: 0;left: 0;
    width: 100%;height: 100%;object-fit: cover;
    z-index: 1;}

.nutrition-teaser::before {
    content: ''; position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4); z-index: 2;}

.arrow-link {
    position: relative;z-index: 3; 
    color: white; text-decoration: none; 
    font-size: 2rem;font-weight: bold;
    display: flex; align-items: center; 
    gap: 15px; transition: 0.4s ease;}

.arrow-link:hover {transform: translateX(15px); color: #3b82f6;}

.arrow-link {
    color: white; 
    text-decoration: none; 
    font-size: 1.8rem;
    font-weight: bold;
    display: flex; 
    align-items: center; 
    gap: 15px; 
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);}

.arrow-link:hover { 
    transform: translateX(15px); 
    color: #ffb7c5;
}

.arrow-link i {width: 30px; height: 30px;}

.reveal { opacity: 0; transform: translateY(50px); 
    transition: 1s all ease;}

.reveal.active { opacity: 1; transform: translateY(0); }


/*Guides*/
.guides-section {
    background: #feffff;
    padding: 100px ;
    text-align: center;
}

.section-header {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.guide-v-card {
    background-color: var(--card-color);
    border-radius: 35px;
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInCard 1s ease forwards; 
}

.guide-v-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

@keyframes fadeInCard {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.card-img-box img {
    width: 130px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

.card-info h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: inherit; 
}

.v-download-btn {
    margin-top: auto;background: white;
    color: #333;border: none;
    padding: 12px 25px;border-radius: 50px;
    font-weight: bold;cursor: pointer;
    transition: 0.3s;}

.v-download-btn:hover {background: #333; color: white;}

/*membership*/

.pricing-section { padding: 60px 5%; text-align: center; background: #fff; }
.pricing-header h2 { font-size: 2.5rem; font-weight: 900; }
.pricing-header span { color: #3b82f6; }

.pricing-container {
    display: flex; justify-content: center;
     gap: 25px; flex-wrap: wrap; margin-top: 40px;
}

.pricing-card {
    background: #fff; padding: 30px; border-radius: 15px; width: 280px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); border: 1px solid #eee;
     transition: 0.3s;
}

.pricing-card:hover { transform: translateY(-10px); }
.pricing-card.featured { border: 2px solid #fffb00; position: relative;
     transform: scale(1.05); }

.pop-badge {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: #fffb00; color: #000000; padding: 5px 15px;
     border-radius: 20px; font-size: 0.8rem;
}

.price { font-size: 2.2rem; font-weight: 900; margin: 20px 0; }
.price span { font-size: 1rem; color: #888; }

.pricing-card ul { list-style: none; padding: 0; text-align: left; margin-bottom: 25px; }
.pricing-card ul li { margin-bottom: 12px; font-size: 0.9rem; }
.pricing-card ul li.disabled { color: #ccc; text-decoration: line-through; }

.plan-btn {
    width: 100%; padding: 12px; background: #111; color: #fff; border: none;
    border-radius: 8px; font-weight: bold; cursor: pointer;
}

.membership-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9); display: none; justify-content: center;
     align-items: center; z-index: 10000;
}

.id-card {
    background: #111; width: 340px; border-radius: 15px;
     padding: 20px; color: #fff;
    border: 1px solid #333; box-shadow: 0 0 20px #3b82f6;
}

.card-header { display: flex; justify-content: space-between;
     border-bottom: 1px solid #333; padding-bottom: 10px; }
     
.card-logo-text { font-weight: 900; }
.card-logo-text span { color: #3b82f6; }

.card-body { display: flex; padding: 20px 0; gap: 15px; }

.member-photo { width: 90px; height: 110px; background: #222;
     border-radius: 8px; display: flex; align-items: center;
      justify-content: center; font-size: 2.5rem; }

.member-info .label { font-size: 0.65rem; color: #666; margin: 0; }

.member-info .val { font-size: 1rem; font-weight: bold; margin-bottom: 10px;
     color: #3b82f6; }

.close-btn { background: #3b82f6; color: #fff;
     border: none; padding: 8px 20px; border-radius: 5px;
      cursor: pointer; margin-top: 10px; }

/*Contact*/

.contact-section {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.contact-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    min-height: 400px;
    position: relative;
}

.contact-info {flex: 1;}
.contact-info p {font-size: 1.2rem; color: #6b7280; margin-bottom: 10px;}

.email-text {
    font-size: 2rem;
    color: #09021b;
    font-weight: 900;
    text-decoration: none;
    transition: 0.3s;
}

/* stickers/ contact*/
.stickers-area {
    flex: 1;
    position: relative;
    height: 400px; 
    overflow: visible;
}

.random-sticker {
    position: absolute;
    width: 200px;
    transition: 0.5s ease;
    filter: drop-shadow(5px 5px 15px rgba(0,0,0,0.1));
}

.random-sticker:hover {transform: scale(1.1) rotate(5deg);}
.s1 { top: 10%; right: 20%; transform: rotate(-15deg); }
.s2 { top: 5%; right: 50%; transform: rotate(10deg); }
.s3 { top: 35%; right:5% }
.s4 { top: 50%; right: 25%; }

/*Footer*/
.main-footer {
    background: #0d1220;
    color: white;
    padding: 60px 20px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto 40px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.footer-logo span { color: #3b82f6; }

.social-icons {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: 0.3s;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    color: #666;
}

/* الاستايل الأساسي (مخفي) */
.toast {
    visibility: hidden; 
    min-width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 30px;
    padding: 16px;
    position: fixed;
    z-index: 9999; /* عشان يظهر فوق أي حاجة */
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.5s, bottom 0.5s;
}

/* لما ياخد كلاس show (يظهر) */
.toast.show {
    visibility: visible;
    opacity: 1;
    bottom: 50px; /* بيطلع لفوق شوية وهو بيظهر */
}