@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Inter:wght@300;400;500&display=swap');

:root {
  --blue: #0A67B2;
  --teal: #18D3CF;
  --green: #2FA600;
  --dark: #1F2933;
  --light: #F8FFFF;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  height: 100px;
  background: #000000; 
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.logo img {
  height: 100px;
  filter: brightness(1.1);
  

}
.logo {
  position: absolute;
  left: 16px;        /* 👈 true edge alignment */
  top: 50%;
  transform: translateY(-50%);
}

nav a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 35px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}

nav a:hover {
  opacity: 1;
}

/* HERO SLIDER */
.hero-slider {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* OVERLAY LAYOUT */
.hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(10,103,178,0.75),
    rgba(24,211,207,0.45)
  );
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 100px;
  color: #ffffff;
}

/* LEFT TEXT */
.hero-text {
  max-width: 500px;
}

.hero-text h2 {
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  max-width: 420px;
  opacity: 0.9;
}

/* RIGHT FORM */
.hero-form {
  width: 380px;
  padding: 35px;

  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.4);

  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.hero-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 20px;
  color: #ffffff;
  text-align: left;
}


.hero-form input {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 14px;

  background: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 10px;

  font-size: 14px;
  color: #ffffff;
}

.hero-form input::placeholder {
  color: rgba(255,255,255,0.8);
}

.hero-form input:focus {
  outline: none;
  border-color: var(--teal);
}

.hero-form button {
  margin-top: 10px;
  padding: 14px;

  background: #ffffff;
  color: var(--blue);

  border: none;
  border-radius: 12px;

  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}




/* SECTIONS */
section {
  padding: 100px 40px;
  max-width: 1000px;
  margin: auto;
}

body {
  background: var(--light);
  color: var(--dark);
}

#about h2,
#contact h2 {
  color: var(--blue);
}

#about p {
  font-size: 17px;
  line-height: 1.7;
}

iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

/* FOOTER */
/* FOOTER WRAPPER */
.footer-wrapper {
  background: linear-gradient(
    to right,
    #0A67B2,
    #18D3CF
  );
  padding: 80px 40px;
}

/* FOOTER CARD */
.footer-card {
  max-width: 1200px;
  margin: auto;

  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-radius: 28px;
  padding: 50px 60px;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: #ffffff;
}

/* LEFT */
.footer-brand img {
  height: 80px;
  margin-bottom: 10px;
}

.footer-brand p {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  opacity: 0.9;
}

/* MIDDLE */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.85;
}

.footer-links a:hover {
  opacity: 1;
}

/* RIGHT */
.footer-social p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 10px;
}

.footer-social a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
}

.divider {
  display: block;
  width: 120px;
  height: 1px;
background: rgba(255,255,255,0.3);
  margin: 20px 0;
}

.footer-social .copyright {
  font-size: 12px;
  opacity: 0.7;
}  
#home {
  max-width: 100%;
  padding: 0;
}
/* =========================
   MOBILE RESPONSIVE FIXES
   ========================= */
@media (max-width: 768px) {

  /* HEADER */
  header {
    height: 64px;
    padding: 0 16px;
  }

  nav {
    margin-right: 0;
  }

  nav a {
    margin-left: 16px;
    font-size: 12px;
  }

  .logo img {
    height: 36px;
  }

  /* HERO LAYOUT */
  .hero-overlay {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 24px 20px;
    gap: 24px;
  }

  /* HERO TEXT */
  .hero-text h2 {
    font-size: 36px;   /* BIG FIX */
    line-height: 1.1;
  }

  .hero-text p {
    font-size: 15px;
    max-width: 100%;
  }

  /* FORM */
  .hero-form {
    width: 100%;
    padding: 24px;
    border-radius: 14px;
  }

  .hero-form h3 {
    font-size: 20px;
  }

  .hero-form input {
    font-size: 14px;
  }

  .hero-form button {
    font-size: 13px;
    padding: 12px;
  }

  /* FOOTER */
  .footer-card {
    flex-direction: column;
    gap: 30px;
    padding: 32px;
    text-align: center;
  }

  .footer-links {
    align-items: center;
  }
}
