@font-face {
  font-display: swap;
  font-family: 'Aoboshi One';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/aoboshi-one-v13-latin-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap; 
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 500;
  src: url('fonts/cormorant-garamond-v21-latin-500italic.woff2') format('woff2'); 
}

/* General Page Styling */
body {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  background-image: url('images/HydroBackground.jpg');
  background-repeat: repeat;
  background-size: contain;
  background-position: center top;
  background-attachment: fixed;
}


/* Navigation Bar */
nav {
  background-color: #333;
  display: flex;
  justify-content: center;
  padding: 10px 0;
  position: relative;
}

nav a {
  font-family: 'Aoboshi One', sans-serif;
  text-decoration: none;
  color: white;
  background-color: #555;
  padding: 10px 20px;
  margin: 0 5px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

nav a:hover {
  background-color: #777;
}

nav .cta-buttons {
  position: absolute;
  right: 20px; /* far right */
  display: flex;
  gap: 10px;
}


nav .cta-buttons button {
  font-family: 'Aoboshi One', sans-serif;
  font-size: 0.9em;
  padding: 6px 12px;
  color: white;
  background-color: #555;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

nav .cta-buttons button:hover {
  background-color: #777;
}

/* Main Content */
main {
  max-width: 600px;
  margin: 50px auto;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: justify;
}

.responsive-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

footer {
  background-color: #333;
  color: white;
  padding: 10px 20px;
  text-align: left;
  font-family: 'Aoboshi One', sans-serif;
  width: 100%;
  box-sizing: border-box;
  border-top: 1px solid #444;
}
/* Header left-aligned */
h1, h2, h3 {
  font-family: 'Aoboshi One', sans-serif;
  text-align: left;
}

/* Paragraph centered */
p {
  font-family: 'Cormorant Garamond', serif;
  text-align: justify;
  line-height: 1.6;
  margin-bottom: 1.2em;
}

ul {
  font-family: 'Cormorant Garamond', serif;
  text-align: justify;
  padding-left: 1.2em;
  margin: 1em 0;
  list-style-position: inside;
  width: 100%;
}

li {
  line-height: 1.6;
  margin-bottom: 0.6em;
}

ul.custom-bullet {
  list-style: none;
  padding-left: 0;
}

ul.custom-bullet li {
  line-height: 1.6;
  margin-bottom: 0.8em;
}

ul.custom-bullet li::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 15px;
  vertical-align: top; 
  background-image: url('images/HydroSigil.webp');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}



ul.image-list {
  padding-left: 0;
  margin: 1em 0;
}

ul.image-list li {
  list-style: none;
  margin-bottom: 30px;
  position: relative;
  padding-left: 0; /* reset */
}


ul.image-list .li-text {
  position: relative;
  display: block;
  padding-left: 40px;
  text-align: justify;
  line-height: 1.6;
  max-width: 100%;
  vertical-align: top;
}

ul.image-list .li-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  background-image: url('images/HydroSigil.webp');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.contact-form label {
  font-family: 'Aoboshi One', sans-serif;
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 1.1em;
  color: #222;
}

.contact-form input,
.contact-form textarea {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1em;
  padding: 10px;
  border: 1px solid #aaa;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.95);
  box-sizing: border-box;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #3399ff; /* Hydro accent */
  box-shadow: 0 0 5px rgba(51, 153, 255, 0.5);
  outline: none;
}

.contact-form button {
  margin-top: 20px;
  padding: 12px 20px;
  font-family: 'Aoboshi One', sans-serif;
  font-size: 1.1em;
  color: white;
  background-color: #3399ff; /* Hydro blue */
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #2277cc;
}


.hero {
  margin-top: 0;
  height: 400px;
  background-image: url('images/FontaineBackground.webp'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: height 0.2s;
}

.nav-animation {
  position: absolute;
  top: 50%;
  left: -50px;
  transform: translateY(-50%);
  z-index: 10;
  animation: slideIn 3s forwards; 
}

.nav-animation img {
  width: 40px;   
  height: 40px;
}

.nav-animation img {
  width: 40px; /* adjust to fit navbar */
  height: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.nav-animation img:hover {
  transform: scale(1.2); /* enlarge slightly */
  box-shadow: 0 0 15px 5px rgba(255, 255, 200, 0.8);
}


@keyframes slideIn {
  0% {
    left: -50px; 
  }
  100% {
    left: 30px; 
  }
}

