
body {
  margin: 0;
  font-family: 'Cinzel', serif;
  background: linear-gradient(to bottom, #0a0a0a, #000);
  color: #e0e0e0;
}
header {
  background-color: #0d0d0d;
  padding: 0;
  text-align: center;
  border-bottom: 2px solid #06402B;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
header h1 {
  margin: 0;
  font-size: 2.2rem;
  color: #06402B;
}
section {
  background-color: #111;
  padding: 3rem 2rem;
  max-width: 800px;
  margin: 2rem auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}
h2 {
  color: #06402B;
  border-bottom: 2px solid #06402B;
  padding-bottom: 0.5rem;
}
/* Navbar */
.navbar {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px; 
  background-color: #0d0d0d;
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  font-family: 'Cinzel', serif;
}
.nav-links {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  flex: 1;
  text-align: center;
}
.nav-links a {
  font-family: 'Cinzel', serif;
  color: #06402B;
  text-decoration: none;
  font-weight: bold;
  margin: 0 1rem;
  font-size: 1.25rem;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: #0aff94;
}
.index-logo-container {
  position: relative; 
  height: 60px;
  display: flex;
  align-items: center;
  left: 0;
  top: 0;
}
.index-logo-container img {
  height: 60px;
  transition: opacity 1s ease;
  opacity: 0;          
  pointer-events: none;
}
.navbar.scrolled .index-logo-container img {
  opacity: 1;
  pointer-events: auto;
  height: 160px; 
  top: 0;
  transform: translateY(25%); 
  z-index: 5;
}
.logo-container {
  position: relative; 
  height: 60px;
  display: flex;
  align-items: center;
  left: 0;
  top: 0;
}
.logo-container img {
  opacity: 1;
  pointer-events: auto;
  height: 160px; 
  top: 0;
  transform: translateY(25%); 
  z-index: 5;
}
/* Hero Logo + Scoll */
#hero-logo-wrapper {
  position: fixed;
  top: 80px; 
  left: 0;
  width: 100vw;
  height: calc(100vh - 80px);
  background: linear-gradient(to bottom, #0a0a0a, #000);
  z-index: 900;
  transition: top 1s ease, height 1s ease, padding-left 1s ease, justify-content 1s ease, align-items 1s ease;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
#hero-logo-wrapper.scrolled {
  top: 0;
  height: 80px;
  padding-left: 60px;
  pointer-events: auto;
  justify-content: flex-start;
  align-items: flex-start;
}
#hero-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; 
  transition: width 1s ease, height 1s ease;
  z-index: 1;
}
#hero-logo-wrapper.scrolled #hero-logo {
  position: relative;
  width: auto;
  height: 80px;
  object-fit: contain;
  z-index: 10;
}
#hero-caption {
  font-family: 'Cinzel', serif;
  position: relative;
  z-index: 20;
  color: white;
  font-weight: bold;
  font-size: 3rem;
  user-select: none;
  pointer-events: none;
  text-align: center;
  transition: opacity 1s ease;
}
#hero-logo-wrapper.scrolled #hero-caption {
  opacity: 0;
}
/* About Us */
.about-us {
  font-family: 'Cinzel', serif;
  background-color: #111;
  padding: 1rem 1rem;
  max-width: 800px;
  margin: 40vh auto 1rem auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}
.about-us h2 {
  color: #06402B;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.about-us p {
  font-size: 1.2rem;
  line-height: 1.6;
}
/* Previous Work */
.previous-work {
    font-family: 'Cinzel', serif;
    background-color: #111;
    padding: 3rem 2rem;
    max-width: 800px;
    margin: 4rem auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}
.previous-work h2 {
  color: #06402B;
  border-bottom: 2px solid #06402B;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}
.previous-work ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  color: #e0e0e0;
}
.previous-work li {
  margin-bottom: 1rem;
  line-height: 1.6;
}
.previous-work a {
  color: #06402B;
  text-decoration: none;
  transition: color 0.3s ease;
}
.previous-work a:hover {
  color: #0aff94;
}
/* Services Page */
.services {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  background-color: #111;
  padding: 3rem 2rem;
  max-width: 800px;
  margin: 4rem auto 2rem auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}
.services ul {
  list-style: none;
  padding: 0;
}
.services li {
  background-color: #1a1a1a;
  margin: 1rem 0;
  padding: 1rem;
  border-left: 4px solid #06402B;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}
/* Contact Page */
.contact-section {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    background-color: #111;
    padding: 3rem 2rem;
    max-width: 800px;
    margin: 4rem auto 2rem auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}
.contact-form-container h2 {
  color: #06402B;
  margin-bottom: 2rem;
}
.contact-form-container form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-form-container input,
.contact-form-container textarea {
  background-color: #1a1a1a;
  border: 1px solid #06402B;
  color: #e0e0e0;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 1rem;
}
.contact-form-container input::placeholder,
.contact-form-container textarea::placeholder {
  color: #888;
}
.contact-form-container button {
  background-color: #06402B;
  color: #0aff94;
  border: none;
  padding: 0.75rem;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contact-form-container button:hover {
  background-color: #0aff94;
  color: #0d0d0d;
}
/* Footer */
.footer-info {
    font-family: 'Cinzel', serif;
  display: flex;
  justify-content: space-between;
  background-color: #0d0d0d;
  padding: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  color: #e0e0e0;
  border-top: 2px solid #06402B;
  border-bottom: 2px solid #06402B;
  flex-wrap: wrap;
}
.footer-left,
.footer-right {
  flex: 1;
  min-width: 250px;
  margin-bottom: 1rem;
}
.footer-info h3 {
  color: #06402B;
  margin-bottom: 1rem;
}
.footer-info a {
  color: #06402B;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}
.footer-info a:hover {
  color: #0aff94;
}
.social-icon {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}
.social-icon:hover {
  transform: scale(1.2);
}
footer {
    font-family: 'Cinzel', serif;
  background-color: #0d0d0d;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  border-top: 2px solid #06402B;
  color: #888;
}
/* Mobile */
@media (max-width: 600px) {
  .navbar {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .nav-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; 
    gap: 1rem; 
    width: 100%;
    text-align: center;
    padding-right: 2rem;
  }
  .nav-links a {
    display: inline-block;
    margin: 0.40rem 0.50rem;
    font-size: .55rem;
    text-align: center;
  }
  .logo-container,
  .index-logo-container {
    justify-content: center;
  }
  .logo-container img{
    height: 90px;
  }
  .index-logo-container img {
    height: 10px ;
    transform: none;
  }
  .navbar.scrolled .index-logo-container img {
   height: 90px;
  }
  #hero-logo-wrapper {
  position: fixed;
  top: 80px;
  height: calc(100vh - 80px);
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  }
  #hero-logo-wrapper.scrolled {
    height: 60px;
    padding-left: 0;
  }
  #hero-logo {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #hero-logo-wrapper.scrolled #hero-logo {
    height: 50px;
  }
  #hero-caption {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    font-size: 1rem;
    padding: 1rem;
    border-radius: 10px;
    max-width: 90%;
  }
  .about-us {
    margin-top: 50vh;
  } 
  .about-us,
  .contact-section,
  .services,
  .previous-work {
    padding: 2rem 1rem;
  }
  .services {
    padding: 2rem 1rem;
    margin: 4rem 1rem 2rem 1rem;
  }
  .contact-section {
    margin: 6rem 1rem 2rem 1rem;
    padding: 2rem 1rem;
  }
  .contact-form-container form {
    gap: 1rem;
  }
  .contact-form-container input,
  .contact-form-container textarea {
    font-size: 1rem;
    padding: 0.75rem;
  }
  .contact-form-container button {
    font-size: 1rem;
    padding: 0.75rem;
  }
  .footer-info {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 2rem 1rem;
  }
  .footer-left,
  .footer-right {
    min-width: 100%;
  }
  .social-icon {
    width: 40px;
    height: 40px;
  }
  footer {
    font-size: 0.85rem;
    padding: 1rem;
  }
}