:root {
  --primary: #eb9203;
  --accent: #6b1f1f;
  --dark: #222;
  --light-gray: #f7f7f7;
}


body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;
}
/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  background: var(--primary);
  border-bottom: 1px solid #ddd;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

nav {
  display: flex;
  gap: 25px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

nav a:hover {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* HEADER */
.page-header {
  text-align: center;
  padding: 50px 20px;
  background: #f5f5f5;
}

/* PHOTOS */
.photos {
  padding: 50px 10%;
  text-align: center;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

/* 🔥 Key fix */
.photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;   /* change to 1 / 1 if you want square */
  object-fit: cover;     /* crops, does NOT stretch */
  border-radius: 6px;
  display: block;
}


/* CONTACT */
.contact-section {
  padding: 60px 10%;
}
.contact-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.contact-info,
.contact-form {
  flex: 1;
  min-width: 280px;
}

.contact-info p {
  margin-bottom: 15px;
}

.whatsapp-btn {
  display: inline-block;
  margin-top: 15px;
  background: #25D366;
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-form button {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 4px;
}

/* FOOTER */
.contact-footer {
  background: #222;
  color: #fff;
  text-align: left;
  padding: 20px;
}
