/* ======================================
   MASTER LAYOUT STYLE - SMART EVENTS
   ====================================== */

:root {
  --primary-color: #d4af37; /* gold */
  --secondary-color: #000000; /* black */
  --white: #ffffff;
  --text-color: #222;
  --transition: all 0.3s ease;
}

/* ====== RESET ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  background: var(--white);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ====== UTILITIES ====== */
.se-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ====== BACK TO TOP ====== */
#backToTop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  font-size: 20px;
}

#backToTop.visible {
  opacity: 1;
  visibility: visible;
}

#backToTop:hover {
  background: var(--secondary-color);
}
