@import "https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Roboto:wght@300;400;500&display=swap";

/* src/styles.scss */
:root {
  --color-olive-light: #f4f6e6;
  --color-olive-dark: #4a5d23;
  --color-terra: #ec983d;
  --color-sand: #f6e6d4;
  --color-stone: #8b8178;
  --transition: all 0.3s ease;
}
body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  background-color: var(--color-olive-light);
  overflow-x: hidden;
  line-height: 1.6;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  color: var(--color-olive-dark);
}
.main-h1,
.main-h2 {
  color: var(--color-olive-light);
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}
.slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: var(--transition);
}
.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: var(--transition);
}
.slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: var(--transition);
}
.visible {
  opacity: 1;
  transform: translate(0);
}
.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero {
  margin-top: 56px;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}
.photo-item {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}
.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.photo-item:hover img {
  transform: scale(1.05);
}
.timeline {
  position: relative;
  padding: 4rem 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--color-terra);
}
.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--color-olive-dark);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  transition: var(--transition);
}
.cta-button:hover {
  background: var(--color-terra);
  transform: translateY(-2px);
}
.mat-mdc-card {
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}
.mat-mdc-card .mat-mdc-card-header {
  padding: 24px 24px 0;
}
.mat-mdc-card .mat-mdc-card-title {
  font-family: "Playfair Display", serif;
  color: var(--color-olive-dark);
}
.mat-mdc-raised-button {
  border-radius: 25px;
  padding: 0 24px;
  height: 48px;
}
.mat-toolbar {
  background:
    linear-gradient(
      to right,
      var(--color-olive-dark),
      var(--color-terra));
  color: white;
}
@media (max-width: 768px) {
  .timeline::before {
    left: 0;
  }
  .content-columns {
    flex-direction: column;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
}
:host {
  display: block;
  width: 100%;
}
.hero {
  height: 80vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/assets/images/hero-bg.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  margin-bottom: 4rem;
}
.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
}
.hero-content h2 {
  font-size: 2rem;
  font-weight: 300;
}
.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
section {
  margin-bottom: 4rem;
}
section h2 {
  font-size: 2.5rem;
  color: var(--color-olive-dark);
  font-family: "Playfair Display", serif;
  margin-bottom: 2rem;
  text-align: center;
}
section p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #333;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}
@media (max-width: 768px) {
  .photo-grid {
    grid-template-columns: 1fr;
  }
}
.photo-grid-small {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}
@media (max-width: 768px) {
  .photo-grid-small {
    grid-template-columns: 1fr;
  }
}
.photo-item {
  position: relative;
  padding-bottom: 75%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.photo-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.photo-item img:hover {
  transform: scale(1.05);
}
.video-section {
  background-color: #f5f5f5;
  padding: 4rem 0;
}
.video-section .video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.video-section .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.content-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 768px) {
  .content-columns {
    grid-template-columns: 1fr;
  }
}
.closing-text {
  font-style: italic;
  text-align: center;
  max-width: 800px;
  margin: 3rem auto;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
