@import url('https://fonts.googleapis.com/css2?family=Rosarivo:ital@0;1&display=swap');

@font-face {
  font-family: 'AntroVectra';
  src: url('Antro_Vectra.woff2') format('woff2');
}

@font-face {
  font-family: 'AntroVectraBold';
  src: url('Antro_Vectra_Bolder.woff2') format('woff2');
}

body {
  margin: 0;
  background: #f0e6e8;
  font-family: "Rosarivo", serif;
}

/* HEADER */
.header {
  position: relative;
  width: 100%;
  max-width: 1409px;
  margin: 0 auto;
  height: 450px;
}

.header img {
  position: absolute;
}

.headflowers { 
  z-index: 1; 
  left: 0;
  top: 0;
}

.head1 {
  z-index: 2;
  top: 10px;
  left: clamp(500px, 46%, 650px);
  transform: rotate(3.8deg);
  filter: drop-shadow(-2px -2px 2px rgba(0,0,0,0.3));
}

.head2 {
  z-index: 3;
  top: 40px;
  left: clamp(750px, 64%, 900px);
  transform: rotate(-7deg);
  filter: drop-shadow(-2px -2px 2px rgba(0,0,0,0.3));
}

.head4 { 
  z-index: 4; 
  top: 70px;
  left: 140px; /* stays fixed */
  transform: rotate(-5.6deg); 
  filter: drop-shadow(-2px -2px 2px rgba(0,0,0,0.3)); 
}

.head3 {
  z-index: 5;
  top: 195px;
  left: clamp(300px, 30%, 430px);
  transform: rotate(-5.2deg);
  filter: drop-shadow(-2px -2px 2px rgba(0,0,0,0.3));
}

.title {
  position: absolute;
  right: clamp(0px, 8%, 290px);
  top: 290px;
  font-family: 'AntroVectraBold';
  font-size: 90px;
  color: #756059;
  z-index: 6;
}

.nav {
  position: absolute;
  right: clamp(0px, 10%, 290px);
  top: 390px;
  z-index: 6;
}

.nav a {
  margin-left: 25px;
  font-size: 24px;
  font-style: italic;
  color: #b2b1b8;
  text-decoration: none;
}

.nav a:hover {
  color: #8c8999;
}

/* CONTENT */
.content {
  width: 900px;
  margin: 50px auto;
  color: #d4ac8e;
  font-size: 18px;
}

.content a {
  color: #b2b1b8;
  text-decoration: none;
}

.content a:hover {
  color: #756059;
}

h1, h2, h3 {
  text-align: left;
  color: #b35851;
  font-family: 'AntroVectraBold';
  margin-bottom: 10px;
}

h1 { font-size: 50px; }
h2 { font-size: 40px; }
h3 { font-size: 30px; }

/* FOOTER */
.footer {
  position: relative;
  width: 1050px;
  height: 320px;
  margin: 0 auto;
}

.footer img {
  position: absolute;
}

.footflowers { z-index: 1; }
.foot1 { 
  z-index: 2; 
  transform: rotate(3.3deg); 
  filter: drop-shadow(-2px 2px 2px rgba(0,0,0,0.3)); 
}

.footer-text {
  position: absolute;
  left: 435px;
  top: 80px;
  z-index: 4;
  color: #b2b1b8;
  font-style: italic;
}

.footer-text a, .footer-text a:hover {
  color: #b2b1b8;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-color: #b2b1b8;	
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .header {
    width: 100%;
    height: auto;
    text-align: center;
  }

  .header img {
    position: static;
    transform: none;
    display: none;
  }

  .head3 {
    display: block;
    margin: 0 auto;
  }

  .title, .nav {
    position: static;
    text-align: center;
  }

  .title { font-size: 48px; }

  .content {
    width: 90%;
  }

  .footer img {
    display: none;
  }

  .footer {
    width: 100%;
    height: auto;
    text-align: center;
  }

  .footer-text {
    position: static;
  }
}