/* Home Page Styles */

/* Hero Section with Video */
.hero {
  margin-top: var(--header-height);
  background-color: #d5e5e5;
  padding: 0;
  height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.3) 70%, transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-container {
  margin: 0;
  width: 100%;
  position: relative;
  z-index: 2;
  padding-left: 3rem;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
}

.hero-content {
  padding: 0;
  text-align: left;
  display: inline-block;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.1;
  color: #f5f5f5;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-content .tagline {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 0;
  font-style: italic;
  display: inline;
  margin-left: 1rem;
  color: #f5f5f5;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
}

.hero-content .btn {
  display: inline-block;
  margin-top: 2rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}

.hero-content .btn:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background-color: rgba(44, 44, 44, 0.9);
}

/* About Section */
.about-section {
  background-color: #d5e5e5;
  padding: 0;
  height: calc(100vh - var(--header-height));
  display: flex;
  align-items: stretch;
}

.about-container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  gap: 0;
}

.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

.about-text h2 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.about-text p {
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.8;
}

.about-image-container {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.about-image {
  width: 100%;
  height: 100%;
  max-height: calc(100vh - var(--header-height));
  object-fit: cover;
}

/* Content Section */
.content-section {
  background-color: #c4a5a5;
  padding: 0;
  height: calc(100vh - var(--header-height));
  display: flex;
  align-items: stretch;
}

.content-container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  gap: 0;
}

.content-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

.content-text h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.content-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  max-width: 600px;
}

.content-image-container {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.content-image {
  width: 100%;
  height: 100%;
  max-height: calc(100vh - var(--header-height));
  object-fit: cover;
}

/* Services Section */
.services-section {
  background-color: #d5e5e5;
  padding: 0;
  height: calc(100vh - var(--header-height));
  display: flex;
  align-items: stretch;
}

.services-container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  gap: 0;
}

.services-image-container {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.services-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

.services-content h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.services-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  max-width: 600px;
}

.services-image {
  width: 100%;
  height: 100%;
  max-height: calc(100vh - var(--header-height));
  object-fit: cover;
}

/* Gallery Section */
.gallery {
  padding: 0;
  background-color: #d5e5e5;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.gallery-item {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* Contact Form Section */
.contact-form-section {
  background-color: #c4a5a5;
  padding: 6rem 5%;
}

.contact-form-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-form-container h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.contact-form-container p {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  line-height: 1.8;
}
