/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@500;700&family=Open+Sans:wght@400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Homemade+Apple&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda+SC:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
:root {
  --primary-brown: #6b5b51;
  --warm-beige: #f5efe7;
  --dark-brown: #3b2f2f;
  --off-white: #ffffff;
  --light-tan: #dccebe;
  --dark-green: #525032;
  --light-green: #838562;
}

/* General Styles */
body {
  margin: 0;
  font-family: "Playfair Display", sans-serif;
  background-color: var(--off-white);
  color: var(--dark-brown);
  line-height: 1.6;
}

p {
  max-width: 700px;
  margin: 0 auto 2em;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header layout */
.header-top {
  text-align: center;
  padding: 1rem 1rem;
}

.logo {
  font-size: 2.2rem;
  color: var(--dark-brown);
}

/* Horizontal navigation for larger screens */
.nav-links {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  flex-wrap: wrap;
  border-top: var(--primary-brown) solid;
  border-bottom: var(--primary-brown) solid;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: "Homemade Apple";
  color: var(--primary-brown);
}

/* Nav link appearance */
.nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--light-tan);
}

/* Hero Section */
.hero {
  height: 90vh;
  background: url("/images/CJ_Jackie/CJ_Jackie2.JPG") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: var(--off-white);
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-text {
  position: relative;
  z-index: 1;
}

.hero-text h2 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero-text p {
  font-size: 1.3rem;
}

/* Sections */
.intro,
.preview-gallery,
.gallery {
  padding: 4rem 2rem;
  text-align: center;
}

.intro h2,
.preview-gallery h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Gallery Layout */
.preview-gallery {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.shoot-section {
  margin-bottom: 3rem;
}

.shoot-section h3 {
  font-size: 1.8rem;
  color: var(--primary-brown);
  margin-bottom: 1rem;
  text-align: center;
  border-bottom: var(--primary-brown) solid;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  transform: translateZ(0);
}

.gallery img {
  width: 300px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  will-change: transform;
}

.gallery img.wide {
  width: 100%;
  max-width: 800px;
  object-fit: cover;
}

/* Services List */
.custom-bullets {
  list-style: none;
  padding-left: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.custom-bullets li {
  position: relative;
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
}

.custom-bullets li::before {
  content: "🍂"; /* Leaf emoji bullet */
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--primary-brown); /* Matches your brown palette */
  font-size: 1.1rem;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.contact-form label {
  padding-top: 20px;
}

.contact-form button {
  padding: 0.8rem;
  border: none;
  background-color: #613613;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 20px;
}

.contact-form button:hover {
  background-color: #997950;
}

/* Footer */
footer {
  background: var(--dark-brown);
  color: white;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
}

/* Hamburger styles */
.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  text-align: right;
  margin-top: 1rem;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 70px;
    right: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    border-radius: 8px;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

/*About Page*/

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: 2rem auto;
  padding: 1rem;
  gap: 2rem;
}

/* Image container stays fixed width */
.about-image img {
  width: 300px;
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Text area grows to fill space */
.about-text {
  flex: 1;
  min-width: 250px;
  max-width: 600px;
}

.about-text h2 {
  color: var(--primary-brown);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Responsive: Stack on smaller screens */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }
}

.social-links {
  margin-top: 1rem;
}

.social-links a {
  display: inline-block;
  margin: 0 0.5rem;
}

.social-links img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.social-links img:hover {
  transform: scale(1.2);
}

.freepik {
  display: block;
}
