/* Flawless Gift - Main Style Sheet
    Updated to match Premium Golden Identity
*/

@font-face {
  font-family: "Agustina";
  src: url(../fonts/Agustina.woff);
}

/* CSS Variables for Dark/Light Mode - Premium Theme */
html[light-mode="dark"], html[data-theme="dark"] {
  --bg: #000000;
  --text: #ffffff;
  --primary-gold: #d4af37; /* اللون الذهبي الأساسي */
  --secondary-gold: #f0d06e;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(212, 175, 55, 0.3);
}

/* ---------------------------
      SCROLLBAR (Golden)
---------------------------
*/
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #000;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-gold);
  border-radius: 10px;
  border: 2px solid #000;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-gold);
}

/* Global Styles */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Tajawal', sans-serif;
  overflow-x: hidden;
}

/* ---------------------------------------
  SCROLL TO TOP BUTTON (Golden Style)
---------------------------------------
*/
#btnScrollToTop {
  width: 45px;
  height: 45px;
  background-color: var(--primary-gold);
  color: #000;
  border: none;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
  animation: up-down 2s infinite ease-in-out;
}

#btnScrollToTop:hover {
  background-color: var(--secondary-gold);
  transform: scale(1.1);
}

@keyframes up-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ------------------------
    PREMIUM FOOTER
------------------------
*/
.footer {
  padding: 40px 0 20px;
  background-color: #000;
  border-top: 1px solid var(--glass-border);
  text-align: center;
}

.footer .tag {
  color: var(--primary-gold);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* ----------------------------------------
   CONTACT FORM (Golden & Glass)
----------------------------------------
*/
.form-style-6 {
  max-width: 500px;
  margin: 20px auto;
  background: var(--glass-bg);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.form-style-6 input, .form-style-6 textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--glass-border);
  padding: 12px;
  color: #fff;
  margin-bottom: 20px;
  transition: 0.3s;
}

.form-style-6 input:focus, .form-style-6 textarea:focus {
  border-bottom-color: var(--primary-gold);
  outline: none;
}

.form-style-6 input[type="submit"] {
  background: var(--primary-gold);
  color: #000;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  border: none;
}

.form-style-6 input[type="submit"]:hover {
  background: var(--secondary-gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* ----------------------------
    RESPONSIVE HELPERS
----------------------------
*/
@media (max-width: 768px) {
  .hero-center h1 { font-size: 2rem; }
  #btnScrollToTop { width: 40px; height: 40px; bottom: 15px; right: 15px; }
}

/* حماية الصور */
.premium-logo-box img {
  pointer-events: none;
  user-select: none;
}