/* GLOBAL STYLES */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 4rem;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: 'Lexend', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
}

@font-face {
  font-family: 'AppleMyungjo';
  src: url('fonts/apple-myungjo.ttf') format('opentype');
}

@font-face {
  font-family: 'LastChristmas';
  src: url('fonts/LastChristmas_PERSONAL_USE_ONLY.otf') format('opentype');
}

/* FULLSCREEN HERO SECTION */
.hero-fullscreen {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background-color: #fff; /* keeps the rest of the screen clean */
}


/* MAIN TEXT BLOCK */
.hero-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 1200px;
  font-size: 7vw; /* Bigger text */
  font-weight: bold;
  line-height: 1;
  margin-bottom: 2rem;
}

/* ROTATING WORDS */

.rotating-words {
  display: flex;
  flex-direction: column;
  height: 1em;
  overflow: hidden;
  text-align: right;
  font-family: 'AppleMyungjo', serif;
  color: black;
  flex: 1;
  align-items: flex-end;
  align-self: flex-end;
  line-height: 1;
  font-size: 9vw;
  transform: translate(-10px, 10px);
  
}

.rotating-words span {
  display: block;
  height: 1em;
  white-space: nowrap;
  animation: smoothSlide 10s ease-in-out infinite;
}

/* STATIC "DESIGN" */

.static-word {
  font-family: 'LastChristmas', cursive;
  color: #6e2e2e;
  flex: 1;
  text-align: left;
  margin-left: 0.3rem;
  font-size: 13vw;
}

/* ROTATION ANIMATION */
@keyframes smoothSlide {
  0%   { transform: translateY(0%); }
  10%  { transform: translateY(0%); }

  20%  { transform: translateY(-100%); }
  30%  { transform: translateY(-100%); }

  40%  { transform: translateY(-200%); }
  50%  { transform: translateY(-200%); }

  60%  { transform: translateY(-300%); }
  70%  { transform: translateY(-300%); }

  80%  { transform: translateY(-400%); }
  90%  { transform: translateY(-400%); }

  100% { transform: translateY(-500%); }
}

.about-photo {
  width: 400px;
  height: auto;
  border-radius: 40px;
  object-fit: cover;
}


.hero-box {
  max-width: 100%;
  margin: auto;
  padding: 4rem 2rem;
  text-align: center;
  background-image: url('assets/coverpage.png'); 
  background-size: cover;
  background-position: center;
  border-radius: 30px;
}

.hero-overlay {
  backdrop-filter: blur(4px);
  background-color: rgba(255, 255, 255, 0.2); 
  border-radius: 30px;
  width: 100%;
  height: 100%;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-box {
  position: relative;
  width: 100%;
  height: 500px;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
}

.hero-blur {
  position: absolute;
  inset: 0;
  background-image: url('assets/coverpage.png');
  background-size: cover;
  background-position: center;
  filter: blur(5px);
  transform: scale(1.05); 
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #3d0e0e; 
  padding: 2rem;
  text-align: center;
}


.hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: 6vw;
  font-weight: bold;
  line-height: 1;
}


/* Button */
.cta-button {
  transform: translateX(-30px);
  display: block;
  margin: 1rem auto 0 auto; /* top, auto (left/right), bottom */
  width: fit-content;
  
  padding: 0.75rem 1.5rem;
  background-color: #6e2e2e;
  font-family: 'Lexend', sans-serif;
  color: white;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
  align-items: center;
}

.cta-button:hover {
  background-color: #531f1f;
}

.nav-cta {
  background-color: #6e2e2e;
  color: white !important;
  font-weight: 700;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 999px;
  margin-left: 1rem;
  transition: background-color 0.3s ease;
}

.nav-cta:hover {
  background-color: #531f1f;
}

.header {
  max-width: 1200px;
  width: 90vw;
  margin: 2rem auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 45px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-family: 'Lexend', sans-serif;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.nav-button {
  font-family: 'Lexend', sans-serif;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 16px;
  color: #000;
  border: 0px solid #fff;
  border-radius: 20px;
  transition: all 0.3s ease;
  margin-top: 1rem; /* this creates space between image and button */
  display: inline-block; /* ensures margin-top works */
}

.nav-button:hover {
  background-color: #6e2e2e;
  color: white;
  border: 1px solid #6e2e2e;
  border-radius: 20px;
}

.portfolio-section {
  max-width: 1200px;
  margin: 2rem auto;       /* was 4rem, now tighter */
  margin-bottom: 0;
  padding: 0 2rem 2rem;
  padding-bottom: 0;
}

.portfolio-grid {
  display: flex;
  gap: 1rem;               /* Increase or decrease to your taste */
  justify-content: center; /* Centers the whole row */
  padding: 0;
}

.portfolio-item {
  flex: 1;              /* Let it grow equally */
  max-width: 22%;       /* Or 25% with slight gap */
  text-align: center;
}

.portfolio-item img {
  width: 300px;        /* Adjust this to make grey boxes larger */
  border-radius: 2rem;
}

.portfolio-item img {
  transition: transform 0.3s ease;
  width: 100%; /* Makes the image fill the container */
  border-radius: 2rem;
}
.portfolio-item:hover img {
  transform: scale(1.05);
}

#portfolio {
  scroll-margin-top: 120px; /* adjust to match or slightly exceed your header height */
}

#about {
  scroll-margin-top: 30px; /* adjust to match or slightly exceed your header height */
}


.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto 20px auto; /* reduced spacing below */
  padding: 40px 20px 20px;  /* reduced bottom padding */
  flex-wrap: wrap;
}

.about-image img {
  width: 450px;
  border-radius: 2rem;
}

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

.about-text p {
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.about-logo {
  width: 400px;
  margin-bottom: 0.5rem;
}

section.about-section {
  margin-top: 0;
  padding: 2rem;
}


.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: bold;
  margin-bottom: 0.5rem;
}


html {
  scroll-behavior: smooth;
}


h2 {
  font-size: 5rem;
}

h3 {
  font-size: 3rem;
}


.brandheader {
  background-color: #3d0e0e;
  color: white;
  justify-content: center;
  text-align: center;
  padding: 2rem 2rem;
}

.brandheader h1 {
  font-size: 3rem; /* or adjust size */
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 0;
}

.brandheader p {
  max-width: 800px;
  margin: 0 auto; /* centers the paragraph */
  font-size: 1.1rem;
  line-height: 1.6;
}


.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}

.cta-section {
  display: flex;
  justify-content: center;
  padding: 0.7rem;
  padding-bottom: 2rem;
  text-decoration: none;

}

/*
.nav-button {
  font-family: 'Lexend', sans-serif;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 16px;
  color: #000;
  border: 0px solid #fff;
  border-radius: 20px;
  transition: all 0.3s ease;
  margin-top: 1rem; 
  display: inline-block; 
}
  */

/*
.nav-button:hover {
  background-color: #6e2e2e;
  color: white;
  border: 1px solid #6e2e2e;
  border-radius: 20px;
}
  */


.graphic-image img {
  width: 450px;
  border-radius: 2rem;
}

.branding-image img {
  width: 450px;
  border-radius: 2rem;
}



.about-text h3 {
  color: #000; /* dark maroon from header */
}


.parallax-section {
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8); /* change this to soften the background */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.parallax-content {
  max-width: 1200px;
  display: flex;
  gap: 5rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.parallax-image img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.parallax-text {
  flex: 1;
  min-width: 300px;
}

.parallax-text h2 {
  font-size: 3.5rem;
  color: #000;
}

.parallax-text p {
  font-size: 1.2rem;
  margin: 1rem 0;
  color: #333;
}

.button-group {
  margin-top: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  margin-right: 1rem;
}

.btn.primary {
  background-color: #7d2629;
  color: white;
}

.btn.secondary {
  background-color: #ddd;
  color: #333;
}

.parallax-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.parallax-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


.mission-section {
  text-align: center;
  padding: 6rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.mission-section .tagline {
  font-size: 4rem;
  font-weight: 700;
  color: #7d2629; /* Your bold red brand color */
  margin-bottom: 1rem;
  margin-top: 0;
}

.mission-section .subheading {
  font-size: 1.25rem;
  color: #444;
  line-height: 1.6;
}





.about-section {
  padding: 4rem 2rem;
  background-color: #fff;
}

.about-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 3rem;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-logo {
  width: 300px;
  margin-top: 4rem;
}

.about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
  margin-top: 3rem;

}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 1rem;
  object-fit: cover;
}

.signature{
  width: 170px;
  height: 170px;
  
}



.contact-section {
  background-color: #3d0e0e;
  margin-top: 6rem;
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  max-width: 1300px;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
}

.contact-intro {
  flex: 1;
  min-width: 300px;
}

.contact-intro h2 {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 500;
  font-family: 'Lexend', sans-serif;
  color:#fff;
 
}

.contact-form {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color:#fff;
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 0.25rem;
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}


.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
}

.contact-section h2 {
  font-size: 5rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.contact-form select {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
  background-color: #fff;
}



.watermark{
  text-align: center;
}

/* */

.pill-label {
  display: inline-block;
  background-color: #f0f0f0; /* light grey */
  color: #333; /* dark text */
  font-size: 2rem; /* slightly bigger font */
  padding: 0.4em 1em;
  border-radius: 999px; /* fully rounded */
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 1em;
}




