html, body {
  height: 100%;
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  background: linear-gradient(to bottom, #fbe8e3 0%, #f9d6c8 40%, #eceaea 100%);
  background-attachment: fixed;
  color: #2a2d30;
  line-height: 1.8;
}

.footer-spacer {
  height: 90px;
}

blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  line-height: 2.2;
  margin: 40px 0;
  padding: 25px 40px;
  position: relative;
  border-left: 6px solid #f47c6b;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 240, 235, 0.9), rgba(250, 220, 210, 0.9));
  color: #2a2d30;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  quotes: "“" "”" "‘" "’";
}

blockquote::before {
  content: open-quote;
  font-size: 3rem;
  position: absolute;
  top: -10px;
  left: 20px;
  color: #f47c6b;
}

blockquote::after {
  content: close-quote;
  font-size: 3rem;
  position: absolute;
  bottom: -20px;
  right: 20px;
  color: #f47c6b;
}

blockquote p {
  margin: 0;
}

#header-wrapper {
  width: 850px;
  max-width: 90%;
  margin: 80px auto;
  padding: 15px;
  background: linear-gradient(135deg, #f9c5b5, #ffffff);
  border-radius: 30px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

#header {
  width: 800px;
  height: 400px;
  background: url('premade/head.png') no-repeat center center;
  background-size: cover;
  border-radius: 30px;
  box-shadow: none;
  overflow: visible;
  filter: brightness(0.95) contrast(1.05) saturate(1.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: filter 0.5s ease;
}

#header:hover {
  filter: grayscale(100%) brightness(0.95) contrast(1.05);
}

#navigation {
  width: 90%;
  max-width: 800px;
  padding: 16px 16px;
  border-radius: 999px;
  background: rgba(250, 200, 180, 0.75);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  position: fixed;
  z-index: 999;
  backdrop-filter: blur(14px);
  border: 1.5px solid rgba(200, 120, 100, 0.25);
  box-sizing: border-box;
}

#navigation a {
  all: unset;
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  text-transform: uppercase;
  color: #16395d;
  margin: 0 6px;
  padding: 10px 16px;
  border-radius: 20px;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: all 0.3s ease;
}

#navigation a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(to right, #f47c6b, #f9c5b5);
  transition: width 0.3s ease;
  z-index: 0;
}

#navigation a:hover::after {
  width: 80%;
}

#navigation a:hover {
  color: #f47c6b;
  transform: scale(1.05);
  text-shadow: 0 0 4px rgba(244, 124, 107, 0.5);
}

h1 {
  font-family: 'Great Vibes', cursive;
  font-size: 72px;
  text-align: center;
  margin: 120px 0 30px 0;
  background: linear-gradient(135deg, #f47c6b, #f9c5b5, #79aee6, #3b6ca8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

h1::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background: linear-gradient(to right, #f47c6b, #f9c5b5, #79aee6, #3b6ca8);
  border-radius: 5px;
}

a {
  color: #16395d;
  position: relative;
  text-decoration: none;
}

a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: linear-gradient(to right, #3b6ca8, #79aee6);
  transition: width 0.3s ease;
  border-radius: 2px;
}

a:hover {
  color: #79aee6;
}

a:hover::after {
  width: 100%;
}

b, i {
  color: #16395d;
  font-weight: 600;
  font-style: italic;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

b:hover, i:hover {
  color: #79aee6;
  text-shadow: 0 0 6px rgba(100, 160, 230, 0.5);
}

#content {
  max-width: 800px;
  margin: 30px auto;
  padding: 60px 80px;
  background: rgba(255, 245, 240, 0.9); 
  border-radius: 30px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  backdrop-filter: blur(8px);
}

#contentx {
  margin: 60px auto;
  padding: 40px 60px;
  background: linear-gradient(to bottom right, rgba(230, 230, 230, 0.85), rgba(245, 210, 200, 0.85));
  border-radius: 24px;
  box-shadow: none;
  max-width: 800px;
}

#contenty {
  width: 90%;                     
  margin: 0 auto;                 
  padding: 25px 35px;             
  background: linear-gradient(to bottom right, rgba(230, 230, 230, 0.9), rgba(245, 210, 200, 0.9));
  border-radius: 16px;
  box-shadow: none;
  font-size: 1.15rem;             
  color: #2a2d30;
  text-align: justify;             
}

input, select, textarea {
  width: 80%;                
  max-width: 100%;
  padding: 12px 16px;
  margin: 10px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  border-radius: 12px;
  border: 2px solid rgba(200, 200, 200, 0.5);
  background: linear-gradient(145deg, #ffffff, #fbe8e3);
  transition: all 0.3s ease;
  color: #2a2d30;
  outline: none;
  box-sizing: border-box;
}


input:hover, select:hover, textarea:hover {
  border-color: #f47c6b;
}

input:focus, select:focus, textarea:focus {
  border-color: #f47c6b;
  background: linear-gradient(145deg, #fff7f5, #fdece7);
}

/* Placeholder style */
::placeholder {
  color: #999;
  opacity: 1;
}

textarea {
  min-height: 120px;
  resize: vertical;           
}

select {
  appearance: none;          
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l6 6 6-6' stroke='%2316395d' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  padding-right: 40px;
}

@media (max-width: 768px) {
  input, select, textarea {
    font-size: 0.95rem;
    padding: 10px 14px;
  }
}

@media (max-width: 480px) {
  input, select, textarea {
    font-size: 0.9rem;
    padding: 8px 12px;
  }
}