/* ==================== RESET ==================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ==================== BASE ==================== */

body {
  background: #120724;                  /* roxo noite */
  color: #FDF7E5;                       /* bege claro */
  line-height: 1.6;
  font-family: "Georgia", "Times New Roman", serif;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 0);
  background-size: 80px 80px;
}

/* Títulos em dourado de palácio */
h1,
h2 {
  color: #E4BD5B;
}

/* ==================== NAVBAR + LÂMPADA ==================== */

.navbar {
  background: #0a0a0d;
  padding: 1rem 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  color: #f5f5f5;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* links em desktop */
.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #f5f5f5;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: #d4af37;
}

/* botão lâmpada */
.lamp-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: none;         /* escondido no desktop */
  padding: 0;
}

.lamp-toggle img {
  width: 32px;
  height: auto;
}

/* ==================== HEADER ==================== */

header {
  padding: 6rem 10%;
  text-align: center;
  background: radial-gradient(circle at top, #2B0E5A, #120724 60%, #050209 100%);
}

header h1 {
  font-size: 3.5rem;
  letter-spacing: 3px;
  text-shadow: 0 0 12px #522A83, 0 0 30px #A2052C;
  animation: glow 3s ease-in-out infinite alternate;
}

header p {
  margin-top: 1rem;
  color: #d4af37;
  letter-spacing: 2px;
}

/* brilho mágico do título */
@keyframes glow {
  from {
    text-shadow: 0 0 8px #522A83, 0 0 18px #A2052C;
  }
  to {
    text-shadow: 0 0 14px #F5E29F, 0 0 30px #E4BD5B;
  }
}

/* ==================== SECÇÕES GENÉRICAS ==================== */

section {
  padding: 4rem 10%;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* Cartões tipo palácio */
.card {
  background: rgba(24, 8, 48, 0.95);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid #E4BD5B;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
}

/* Botões estilo lâmpada */
.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: .6rem 1.4rem;
  border-radius: 999px;
  border: 2px solid #E4BD5B;
  color: #E4BD5B;
  background: transparent;
  text-decoration: none;
  font-size: .85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn:hover {
  background: radial-gradient(circle at top, #F5E29F, #E4BD5B);
  color: #120724;
}

/* ==================== GALERIA / LOOKBOOK ==================== */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.gallery img,
.lookbook-item img {
  width: 100%;
  border-radius: 18px 18px 0 0;
  border: 3px solid #E4BD5B;
  box-shadow: 0 0 20px rgba(0,0,0,0.7);
  cursor: pointer;
  transition: transform .3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
}

.lookbook {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.lookbook-item h3 {
  margin-top: 1rem;
  color: #d4af37;
}

/* ==================== SILHUETAS ==================== */

.silhueta {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  padding: 4rem 10%;
}

.silhueta-imagem img {
  width: 100%;
  border-radius: 18px;
  border: 3px solid #E4BD5B;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.7);
}

.silhueta-texto h2 {
  font-size: 2.2rem;
  color: #E4BD5B;
  margin-bottom: 1rem;
}

.silhueta-texto p {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  color: #f5f5f5;
}

/* ==================== RODAPÉ ==================== */

footer {
  text-align: center;
  padding: 2rem;
  background: #0a0a0d;
  font-size: 0.8rem;
  color: #aaa;
}

/* ==================== RESPONSIVO (TELEMÓVEL) ==================== */

.btn-menu {
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#img-menu {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.btn-menu.active #img-menu {
    transform: rotate(90deg); /* Animação opcional ao abrir */
}

#nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #222;
    padding: 80px 20px 20px;
    transition: right 0.3s ease;
    z-index: 1000;
}

#nav-menu.active {
    right: 0;
}

#nav-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#nav-menu a {
    color: white;
    text-decoration: none;
    padding: 12px;
    display: block;
    border-radius: 4px;
    transition: background 0.3s;
}

#nav-menu a:hover {
    background: #444;
}

@media (min-width: 5000px) {
    .btn-menu {
        display: none;
    }
    #nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: none;
        padding: 0;
        right: auto;
    }
    #nav-menu ul {
        flex-direction: row;
        gap: 20px;
    }
}
