/* Background */
body {
  margin: 0;
  font-family: 'Cairo', sans-serif;
  min-height: 350vh;
  color: #333;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 185, 195, 0.408); /* ورّدي شفاف، يعطي طابع لوري */
  backdrop-filter: blur(40px); /* تأثير لوري */  
  z-index: -1;

}

/* حجم السكروول بار */
::-webkit-scrollbar {
  width: 10px; /* العرض */
  height: 20px; /* الارتفاع للأفقي */
}

/* المسار */
::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05); /* شفاف */
  border-radius: 10px;
}

/* المقبض */
::-webkit-scrollbar-thumb {
  background: rgba(249, 98, 128, 0.798); /* شفاف أبيض */
  border-radius: 20px; 
  backdrop-filter: blur(6px); 
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(212, 133, 255, 0.565);
  transition: background 0.3s ease; 
} 

/* عند التمرير عليه */
::-webkit-scrollbar-thumb:hover {
  background: rgba(198, 93, 255, 0.4);
}
/* Header */ 
.site-header {
  padding: 20px;
  text-align: left;
}

.logo {
  font-family: 'Brush Script MT', cursive;
  font-size: 2.8rem;
  color: #c2185b;
  margin: 0;
}

.designer {
  font-size: 20px;
  color: #777;
  margin: 0;
   font-family: 'Dancing Script', cursive;
}

/* Hero */
.hero {
  text-align: center;
  margin: 50px auto;
}

.hero img {
 width: 100%;
  height: 65vh; 
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.hero-text {
  margin-top: 15px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #444;
}

/* Image Right */
.image-right {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 232px ;
  gap: 30px;
}

.image-right img {
  border-radius: 12px;
  max-width: 300px;
}

/* Dessert + Vote */
.dessert-vote {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin: 60px;
}

.three-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.card {
  text-align: center;
}

.card img {
 width: 70%; 
  height: 500px; 
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-size: contain;
  background-position: center;
}



.card img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    };


.card p {
  margin-top: 8px;
  font-weight: bold;
}

/* Voting Section */
.vote-section {
  flex: 1;
  text-align: center;
  padding: 25px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  animation: popUp 0.8s ease;
}

.vote-section h2 {
  margin-bottom: 20px;
  color: #c2185b;
  font-size: 1.4rem;
}

.vote-section form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.vote-section label {
  font-size: 1rem;
  cursor: pointer;
}

.vote-section button {
  margin-top: 20px;
  padding: 12px;
  border: none;
  background: linear-gradient(135deg, #c2185b, #ad1457);
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.vote-section button:hover {
  background: linear-gradient(135deg, #d81b60, #880e4f);
  transform: scale(1.05);
  backdrop-filter: blur(7px);
}

/* Vertical Gallery */
.vertical-gallery {
  margin: 50px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 400px;
}

.hover-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.hover-card img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.hover-card:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(194, 24, 92, 0.366);
  color: #fff; 
  text-align: center;
  padding: 12px;
  font-weight: bold;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  backdrop-filter: blur(6px); 
}

.hover-card:hover .overlay {
  transform: translateY(0);
}

/* Animations */
@keyframes popUp {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.glass-btn {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(40px);
  color: #fff;
  border: 2px solid #fff;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none; /* مهم للـ <a> */
  display: inline-block;
  transition: all 0.3s;
}

.glass-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.glass-btn:active {
  background: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.glass-button .icon {
  width: 24px; /* حجم الأيقونة */
  height: 24px;
  margin-right: 8px;
  filter: drop-shadow(0 2px 4px rgba(255, 105, 180, 0.5)); /* لمعان */
}


.vote-gap-info {
  position: absolute;
  background-color: #fff8f0; /* soft, warm background */
  border-radius: 12px;
  padding: 25px;
  margin-top: 360px; /* under vote box */
  margin-left: 614px; /* push to right */
  margin-right: auto;
  width: 400px; /* reasonable width for the space */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-family: 'Arial', sans-serif;
}

.vote-gap-info h3 {
  margin-bottom: 15px;
  color: #d2691e; /* chocolate color */
  font-size: 2.4em;
  text-align: left;
  
}

.vote-gap-info p {
  color: #555;
  line-height: 1.57em;
  text-align: left;
}
.sweet-title {
  font-size: 28px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px; /* المسافة بين النص والأيقونة */
}

.sweet-icon {
  width: 32px;
  height: 32px;
}

.top-buttons {
  position: absolute; /* تثبيت فوق الصفحة */
  top: 20px; /* المسافة من الأعلى */
  right: 20px; /* المسافة من اليمين */
  display: flex;
  gap: 15px;
}

.glass-button , .glass-btn {
  padding: 10px 20px;
  background: rgba(252, 50, 114, 0.346);
  border: 1px solid rgba(255, 255, 255, 0.497);
  border-radius: 12px;   
  backdrop-filter: blur(10px);
  color: rgba(246, 50, 106, 0.771);
  font-weight: bold;
  cursor: pointer; 
  transition: all 0.3s ease;
}

.glass-button:hover   {
  background: rgba(255, 180, 216, 0.825);
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4);
}  

.glass-btn:hover {
  background: rgba(255, 180, 216, 0.825);
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4);
}  

.bottom-info {
  width: 90%;
  margin: 50px auto;
  padding: 30px;
  background: rgba(255, 182, 203, 0.14);
  backdrop-filter: blur(15px);    
  border-radius: 15px; 
  color: white; 
  border: 1px solid rgb(196, 196, 196);
  text-align: center;
} 

.bottom-info h2 {
  font-size: 2em;
  margin-bottom: 25px;
  color: #2f2f2f;
} 
 
.store-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.store-card {
  background: rgba(196, 196, 196, 0.305);
  border-radius: 12px;
  padding: 20px; 
  backdrop-filter: blur(20px);
  flex: 1 1 250px; 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(227, 40, 78, 0.318);
}
 
.store-card h3 {
  margin-bottom: 10px;
  font-size: 1.5em;
}

.store-card p {
  line-height: 1.5;
}



.vote-gap-info2 {
  position: absolute;
  background: rgba(206, 206, 255, 0.85) #ff8800; /* soft, warm background */ 
  backdrop-filter: blur(60px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: -1;
  transform: translateY(-50%);
  border-radius: 12px;
  padding: 25px;
  margin-top: 1089px; /* under vote box */
  margin-left: 626px; /* push to right */
  margin-right: auto;
  width: 400px; /* reasonable width for the space */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-family: 'Arial', sans-serif;
  max-height: 2040px;

}

.vote-gap-info2 h3 {
  margin-bottom: 15px;
  color: #f7692b; /* chocolate color */
  font-size: 2.4em;
  text-align: left; 
  
}

.vote-gap-info2 p {
  color: #1515159b;
  line-height: 1.57em; 
  text-align: left; 
}
.sweet-title {
  font-size: 28px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px; /* المسافة بين النص والأيقونة */
}

.sweet-icon2 {
  width: 40px;
  height: 40px;
  top : 20px;
}

.top-buttons {
  position: absolute; /* تثبيت فوق الصفحة */
  top: 20px; /* المسافة من الأعلى */
  right: 20px; /* المسافة من اليمين */
  display: flex;
  gap: 15px;
}

/* الخلفية الحرة */
.floating-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;   /* غطي الصفحة كلها أو حسب ما بدك */
  height: 100%;  /* فيك تزيدها لتغطي أكتر */
  pointer-events: none; /* ما تمنع الضغط */
  z-index: -2;
}

/* المربعات */
.float-box {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 15px;
  overflow: hidden;
  animation: floaty 4s infinite ease-in-out;
  opacity: 0.7;
  z-index: -2;
}

/* هون إنت حر بتحدد أماكنها بدقة */
.float-box:nth-child(1) { top: 5780px; left: 850px; }

.float-box:nth-child(2) { top: 6080px; left: 630px; }

.float-box:nth-child(3) { top: 4880px; left: 689px; }

.float-box:nth-child(4) {top: 5300px; left: 900px; }

.float-box:nth-child(5) { top: 4800px; left: 750px; }

.float-box:nth-child(6) { top: 5100px; left: 750px; }

.float-box:nth-child(7) { top: 4750px; left: 970px;  }

.float-box:nth-child(8) { top: 5450px; left: 650px; }

.float-box:nth-child(9) { top: 6400px; left: 650px; }

.float-box:nth-child(10) { top: 6050px; left: 850px; }
  
.float-box:nth-child(11) { top: 5520px; left: 950px; } 



.float-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* حركة التموج */
@keyframes floaty {
  0%   { transform: translateY(0px) rotate(0deg); }
  50%  { transform: translateY(-20px) rotate(8deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}
 
.store-location {
  display: flex;
  align-items: center;
  gap: 6px; /* مسافة بين الأيقونات والنص */
  margin-bottom: 8px;
}

.icon-location {
  color: #fff; /* أو حسب لون تصميمك */
  position: relative;
  top: 60px;
}

.flag-placeholder img {
  display: block;
  border-radius: 2px; /* شكل صغير مستدير حواف العلم */
  width: 40px;
  height: 14px;
  top: 34px;
  position: relative;
}

