@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Lato:wght@300;400;700&display=swap');

html {
  scroll-behavior: smooth;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fonts and Colors */
body {
  font-family: 'Lato', sans-serif;
  color: #333;
  background: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  color: #d4af37; /* Golden color for headings */
  text-transform: uppercase;
}

/* Navigation */
.main-header {
  position: fixed;
  top: 0;
  right: 0;
  padding: 1.5rem 2rem;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.main-header.visible {
  opacity: 1;
}

.main-header nav a {
  color: #000;
  text-decoration: none;
  margin-left: 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.main-header nav a:hover {
  color: #d4af37;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url('weddingbg.jpg') center/cover no-repeat; /* Placeholder image */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 2rem;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Darker overlay for text visibility */
}

.hero-text {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  font-size: 6rem; /* Increased font size */
  letter-spacing: 3px;
  margin-bottom: 1rem;
  color: #d4af37; /* Golden color */
  font-weight: 700; /* Bolder font */
}

.hero p {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: #f0f0f0;
}

.btn {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  padding: 0.8rem 2rem;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  font-weight: 300;
  letter-spacing: 1px;
}

.btn:hover {
  background: #fff;
  color: #333;
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 5px; /* Small gap between images */
}

.portfolio-item {
  height: 70vh;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s, filter 0.3s;
}

.portfolio-item:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}

.portfolio-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: background 0.4s;
}

.portfolio-item:hover .overlay {
  background: rgba(0, 0, 0, 0.2);
}

.portfolio-item h2 {
  font-size: 2.5rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 1;
}

/* Image URLs - Replace with actual images */
.weddings { background-image: url('wedding.jpg'); }
.quinces { background-image: url('quinces.jpg'); }
.family { background-image: url('family.jpg'); }
.portraits { background-image: url('portraits.JPG'); }

/* Statistics Section */
.stats-section {
  display: flex;
  justify-content: center;
  gap: 4rem;
  text-align: center;
  padding: 6rem 2rem;
  background: #f4f4f4;
}

.stat-item h3 {
  font-size: 4rem;
  color: #d4af37;
}

.stat-item p {
  font-size: 1.2rem;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Description Section */
.description-section {
  padding: 6rem 2rem;
  text-align: center;
}

.description-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.description-section ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.description-section ul li {
  background: transparent;
  padding: 0.8rem 2rem;
  border-radius: 5px;
  border: 1px solid #333;
  transition: background 0.3s, color 0.3s;
}

.description-section ul li a {
  color: #333;
  text-decoration: none;
  font-weight: 300;
  letter-spacing: 1px;
}

.description-section ul li:hover {
  background: #333;
}

.description-section ul li:hover a {
  color: #fff;
}

/* Quote Section */
.quote-section {
  background: url('wedding.JPG') center/cover no-repeat fixed;
  padding: 8rem 2rem;
  text-align: center;
  color: #fff;
  position: relative;
}

.quote-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.quote-section p {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  position: relative;
  z-index: 1;
}

/* Footer/Contact Section */
.contact-footer {
  text-align: center;
  padding: 4rem 2rem;
  background: #1a1a1a;
  color: #fff;
}

.contact-footer .contact-content {
  margin-bottom: 2rem;
}

.contact-info {
  margin-bottom: 3rem;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #ccc;
}

.contact-info a {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: #fff;
}

.contact-footer h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #d4af37;
}

.contact-footer p {
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
  font-weight: 300;
  color: #ccc;
  font-size: 1.1rem;
}

.contact-footer .btn {
  background: #d4af37;
  color: #1a1a1a;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s, color 0.3s;
}

.contact-footer .btn:hover {
  background: #fff;
  color: #1a1a1a;
}

.footer-links {
  margin-bottom: 2rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  margin: 0 1.5rem;
  font-size: 1rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #d4af37;
}

.trademark p {
  font-size: 0.9rem;
  color: #888;
}

/* Service Area Section */
.service-area-section {
  padding: 2rem;
  text-align: center;
  background: #fff;
  color: #000;
}

.service-area-section p {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 1px;
}
