/* Moroccan Crafted Art - Under Construction Styles */

:root {
  --bg: #F4E9D8; /* Sand / Beige */
  --accent: #B66A3C; /* Terracotta / Clay */
  --text: #3A2D24; /* Dark Brown */
  --radius: 10px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.container {
  max-width: 600px;
  background: rgba(255, 255, 255, 0.6);
  padding: 40px 25px;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  border: 2px solid var(--accent);
}

.hero-image {
  max-width: 100%;
  border-radius: var(--radius);
  margin-bottom: 25px;
}

h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--accent);
}

p {
  margin-bottom: 12px;
  line-height: 1.4;
}

.contact {
  margin-top: 15px;
  font-weight: bold;
}

@media (max-width: 500px) {
  h1 { font-size: 1.7rem; }
  .container { padding: 25px 18px; }
}

.hero-image {
  transition: opacity 0.8s ease-in-out;
}

.buttons {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  justify-content: center;
}

.btn {
  text-decoration: none;
  background: var(--accent);
  color: white;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background: var(--accent-light);
  color: var(--text);
}