/* ------------------------------
   HOMEPAGE STYLES
------------------------------ */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Bebas Neue', sans-serif;
  color: #fff;
  overflow-x: hidden;
  overflow-y: auto;
}

/* HERO SECTION  */
.hero-section {
  position: relative;
  height: 100vh; 
  width: 100%;
  overflow: hidden;
}

#bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}

.hero-logo-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: #fff;
}

.hero-logo {
  max-width: 675px;
  width: 100%;
  height: auto;
  margin: 20px 0;
}

.serif {
  font-family: 'Times New Roman', serif;
  font-style: regular;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
}

.hero-subtitle {
  font-family: 'Arial', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  margin-top: 10px;
  color: #fff;
  text-transform: uppercase;
}

/* ------------------------------
   INTRO SECTION
------------------------------ */
.intro-section {
  background-color: #fff;
  padding: 4rem 2rem 2rem;
  text-align: center;
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
}

.intro-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #000;
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin: 0 auto 40px auto; 
  text-align: center;
  color: #000;
}

.intro-text {
  font-family: 'Arial', sans-serif;
  font-size: 1.2rem;
  margin: 0 auto 3rem auto;
  max-width: 820px;
  color: #444;
  line-height: 1.8;
  letter-spacing: 0.01em;
}

.intro-button {
  display: block;           
  margin: 50px auto 0 auto;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-family: 'Arial', sans-serif;
  color: white;
  background-color: black;
  border: 2px solid black;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  width: 350px;
  letter-spacing: 0.05em;
  transition: background-color 0.4s ease, color 0.4s ease;
}

.intro-button:hover {
  background-color: white;
  color: black;
}

/* ------------------------------
   SHOWCASE SECTION
------------------------------ */

.showcase-video-section {
  padding: 1rem 2rem 2rem;
  margin-bottom: 4rem;
  background-color: #fff;
  text-align: center;
}

.showcase-video-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}

.showcase-thumbnail {
  width: 100%;
  max-width: 960px;
  height: auto;
  display: block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.play-icon-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.showcase-video-wrapper {
  position: relative;
  display: inline-block;
}

/* Play Icon */
.play-icon-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon-inner {
  display: inline-block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.play-icon-inner:hover {
  transform: scale(1.2);
  transform-origin: center;
}

.play-icon {
  font-size: 4rem;
  color: white;
  cursor: pointer;
  opacity: 0.9;
}

@keyframes pulsePlay {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* ------------------------------
   PARALLAX SECTION
------------------------------ */

/* Parallax Section */
.parallax-section {
  position: relative;
  background: url('../img/homeimg1.jpg') center center / cover no-repeat fixed;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

/* Dark Overlay */
.parallax-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Dark contrast */
  z-index: 1;
}

/* Content */
.parallax-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px 30px 20px;
}

/* Name */
.parallax-content .testimonial-name {
  font-family: 'The Nautigal', cursive;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

/* Testimonial Text */
.parallax-content .testimonial-text::before,
.parallax-content .testimonial-text::after {
  content: "";
  position: static;
}

.parallax-content .testimonial-text {
  font-family: 'Arial', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 auto 2rem auto;
  color: #ddd;
  max-width: 750px;
}

.parallax-content .testimonial-text::before {
  content: "“";
  color: #fff;
  font-size: 2rem;
  margin-right: 5px;
}

.parallax-content .testimonial-text::after {
  content: "”";
  color: #fff;
  font-size: 2rem;
  margin-left: 5px;
}

/* Button */
.parallax-content .testimonial-btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-family: 'Arial', sans-serif;
  color: white;
  background-color: black;
  border: 2px solid white;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background-color 0.4s ease, color 0.4s ease;
}

.parallax-content .testimonial-btn:hover {
  background-color: white;
  color: black;
}

/* ------------------------------
   ABOUT CV SECTION
------------------------------ */
.about-cv {
  display: flex;
  align-items: center;
  justify-content: center; 
  padding: 5rem 2rem;
  background-color: #fff;
  gap: 10rem;                
  max-width: 1200px;        
  margin: 0 auto;
}

.about-cv-content {
  flex: 1;
  max-width: 600px;
  text-align: right;
}

.about-cv-title {
  font-family: 'The Nautigal', cursive;
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  color: #000;
  margin-bottom: 1rem;
}

.about-cv-text {
  font-family: 'Arial', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 2rem;
}

.about-cv-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-family: 'Arial', sans-serif;
  color: white;
  background-color: black;
  border: 2px solid black;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  transition: background-color 0.4s ease, color 0.4s ease;
}

.about-cv-btn:hover {
  background-color: white;
  color: black;
}

.about-cv-image {
  flex: 1;
  max-width: 600px;
}

.about-cv-image img {
  width: 70%;
  height: 500px; 
  object-fit: cover;
  display: block;
}

/* ------------------------------
   MODERN FOOTER
------------------------------ */
.modern-footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
}

.footer-text {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.footer-socials a {
  color: #fff;
  text-decoration: none;
  margin: 0 12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: #ccc;
}


/* ------------------------------
   RESPONSIVE MOBILE
------------------------------ */

@media only screen and (max-width: 768px) {

  section.about-cv {
      flex-direction: column;
      gap: 2.8rem;
  }

  .about-cv-content {
      text-align: center;
  }

  .about-cv-image img {
    width: 100%;
  }
  
  .intro-button {
    width: auto;
  }

  .parallax-section {
    height: auto;
    padding: 2rem 1rem;
  }

  .footer-text {
    font-size: .7rem;
  } 

}