/* Global Page Styles */
body {
  background-color: #f5f1eb; /* pale warm film tone */
  color: #2b2b2b;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  position: relative;
}

/* Subtle texture overlay for film paper feel */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("https://www.transparenttextures.com/patterns/paper-fibers.png");
  opacity: 0.08;
  z-index: -1;
}

/* Headings */
h1, h2, h3 {
  font-family: "Playfair Display", serif;
  color: #222;
  margin-top: 2.5rem;
}

h1 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

h2 {
  font-size: 1.6rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.3rem;
  font-weight: 600;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* Links */
a {
  color: #946b46;
  text-decoration: none;
  border-bottom: 1px solid rgba(148, 107, 70, 0.3);
  transition: border 0.3s ease, color 0.3s ease;
}

a:hover {
  color: #7d5838;
  border-bottom-color: rgba(148, 107, 70, 0.9);
}

/* Image Styling */
img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Photo Grid */
.photo-grid, .portfolio-container .portfolio-item {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  align-items: start;
}

.portfolio-item {
  text-align: center;
}

.portfolio-item img {
  max-width: 100%;
}

/* Captions under images */
.portfolio-item em, .portfolio-item strong {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #555;
}
/* Event Ticket Button */
.btn-event {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #946b46; /* warm accent */
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-event:hover {
  background-color: #7d5838;
  transform: translateY(-1px);
}

/* Contact Form Container */
.contact-form {
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.95); /* subtle translucent paper feel */
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}

/* Form Heading */
.contact-form h2, label {
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 1.7rem;
  color: #222;
}

/* Form Paragraph */
.contact-form p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
}

/* Form Fields */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #946b46;
  box-shadow: 0 0 8px rgba(148, 107, 70, 0.2);
  outline: none;
}

/* Submit Button */
.contact-form button {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  background-color: #946b46; /* warm brown accent */
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: backg

/* Paragraphs and general content spacing */
p {
  margin-bottom: 1rem;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  body {
    padding: 1.5rem 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.4rem;
  }
}
/* Editorial-style photo grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.portfolio-grid .portfolio-item:nth-child(odd) {
  grid-column: span 2; /* Make every other image larger */
}

.portfolio-grid .portfolio-item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-grid .portfolio-item img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.portfolio-grid .portfolio-item em, 
.portfolio-grid .portfolio-item strong {
  display: block;
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #555;
}

/* Responsive tweaks */
@media (max-width: 800px) {
  .portfolio-grid .portfolio-item:nth-child(odd) {
    grid-column: span 1; /* stack on smaller screens */
  }
}
