@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
}

.minimal-header {
  background-color: #ffffff;
  padding: 20px 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  font-family: 'Helvetica Neue', sans-serif;
  color: #222;
}

.nav-links a {
  margin-left: 30px;
  text-decoration: none;
  font-size: 1rem;
  color: #555;
  position: relative;
  transition: color 0.3s;
  font-weight: 500;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background-color: #222;
  transition: width 0.3s;
}

.nav-links a:hover {
  color: #000;
}

.nav-links a:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .main-content {
    flex-direction: column;
    align-items: center;
  }
}

.main-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  flex-wrap: wrap;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.image-stack img {
  width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-text {
  max-width: 700px;
}

h1 {
  margin-top: 0;
  font-size: 2em;
}

h2 {
  margin-top: 20px;
  font-size: 1.5em;
  color: #444;
}

.about-text p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #555;
}

#films {
  margin-top: 60px;
  background-color: #f0f0f0;
  padding: 40px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-top: 60px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #333;
}

#films .main-content img {
  width: 400px; /* Or any size that looks good to you */
  max-width: 100%;
  margin-right: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  #films .main-content img {
    width: 400px;
  }
}

#contact {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

label {
  font-weight: bold;
  margin-bottom: 5px;
}

input,
textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

button[type="submit"] {
  padding: 12px 25px;
  font-size: 1rem;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

button[type="submit"]:hover {
  background-color: #555;
}

footer {
  background-color: #f9f9f9;
  padding: 20px 0;
  text-align: center;
  margin-top: 60px;
}

.footer-content a {
  margin: 0 15px;
  display: inline-block;
}

.footer-content img {
  width: 30px;
  height: 30px;
  transition: transform 0.2s ease;
}

.footer-content img:hover {
  transform: scale(1.1);
}

.intro-section {
  background-color: #f0f0f0;
  padding: 80px 20px;
}

.intro-container {
  display: flex;
  align-items: center; /* ✅ Vertically center image and text */
  justify-content: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  text-align: center; /* ✅ Optional: Center text inside the text block */
}

.intro-image {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.intro-text {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center; /* ✅ Center content horizontally inside text */
}


.intro-text h1 {
  font-size: 2.2rem;
  margin: 0.2em 0;
}

.intro-text h2 {
  font-size: 1.2rem;
  color: #555;
  margin: 0;
}

.intro-text h3 {
  font-size: 1.2rem;
  color: #888;
  margin-top: 0.2em;
}

.intro-buttons {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}

.btn {
  padding: 12px 24px;
  background-color: #333;
  color: white;
  border: none;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #555;
}

.btn-outline {
  background-color: transparent;
  color: #333;
  border: 2px solid #333;
}

.btn-outline:hover {
  background-color: #333;
  color: white;
}

@media (max-width: 768px) {
  .intro-container {
    flex-direction: column;
    text-align: center;
  }

  .intro-text {
    align-items: center;
  }
}

#home {
  height: 100vh; /* Make it take full screen height */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  box-sizing: border-box;
}

.intro-socials {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.intro-socials img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.intro-socials img:hover {
  transform: scale(1.1);
}
