/* calimineco/style.css — Strict black & white, no gradient on hero */

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

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background: #000000;
  color: #ffffff;
  line-height: 1.6;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #222222;
}

.top-bar {
  max-width: 1600px;
  margin: 0 auto;
  padding: 1.2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: #ffffff;
}

nav ul {
  display: flex;
  gap: 2.8rem;
  list-style: none;
}

nav a {
  color: #cccccc;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover,
nav a.active {
  color: #ffffff;
}

.hero {
  height: 100vh;
  min-height: 780px;
  background: url('images/t2.jpg') center center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* No overlay — pure image */
.hero::before {
  content: none;
}

.hero-inner {
  max-width: 1200px;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.buy-now {
  display: inline-block;
  background: #ffffff;
  color: #000000;
  padding: 1.1rem 3.2rem;
  font-size: 1.35rem;
  font-weight: 700;
  border-radius: 6px;
  margin: 3rem 0 2.5rem;
  transition: all 0.25s;
}

.buy-now:hover {
  background: #dddddd;
  transform: translateY(-2px);
}

.tagline {
  font-size: 1.45rem;
  max-width: 820px;
  margin: 0 auto 1.5rem;
  color: #cccccc;
}

footer {
  background: #000000;
  padding: 4rem 2rem 2.5rem;
  text-align: center;
  border-top: 1px solid #222222;
  color: #888888;
  font-size: 1.05rem;
}

main {
  padding-top: 100px; /* header height */
}

section {
  padding: 6rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

h1, h2 {
  color: #ffffff;
  margin-bottom: 1.8rem;
}

h1 { font-size: 3.8rem; }
h2 { font-size: 2.6rem; }

.content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.2rem;
  color: #cccccc;
}

/* Gallery grid (for gallery page) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.gallery-grid img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.7);
  transition: transform 0.35s;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* Form (for about page) */
form {
  max-width: 640px;
  margin: 3rem auto 0;
  display: grid;
  gap: 1.4rem;
}

input, textarea {
  background: #111111;
  border: 1px solid #333333;
  color: #ffffff;
  padding: 1rem 1.4rem;
  border-radius: 6px;
  font-size: 1.1rem;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.12);
}

button[type="submit"] {
  background: #ffffff;
  color: #000000;
  border: none;
  padding: 1.2rem;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s;
}

button[type="submit"]:hover {
  background: #dddddd;
}

/* Mobile */
@media (max-width: 980px) {
  .top-bar { flex-direction: column; gap: 1.2rem; padding: 1rem 1.5rem; }
  nav ul { gap: 1.6rem; flex-wrap: wrap; justify-content: center; }
  .hero-title { font-size: 6rem; }
  .hero { min-height: 70vh; }
}