/* ============================================================
   style.css — GLOBAL STYLES (RESPONSIVE-READY, FINAL)
   - Global safety: box-sizing + media max-width
   - Fix: Title swash cropping (line-height + padding + overflow-y)
   ============================================================ */

/* ============================================================
   GLOBAL SAFETY (RESPONSIVE FOUNDATION)
   ============================================================ */
*, *::before, *::after{
  box-sizing: border-box;
}

img, video, svg{
  max-width: 100%;
  height: auto;
}

/* ============================================================
   LOCAL FONTS (self-hosted)
   ============================================================ */
@font-face{
  font-family: "Allura";
  src: url("../fonts/Allura-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   GLOBAL BASE
   ============================================================ */
body{
  margin: 0;
  padding: 0;

  color: #FFFFFFB3;
  text-align: center;
  font-size: 24px;

  background-color: #FAF7F2;
  background-image: url("../images/floral.png");
  background-repeat: repeat;
  background-size: 380px auto;
  background-position: center -40px;
}

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.parisienne-regular{
  font-family: "Parisienne", cursive;
  font-weight: 400;
}

.tinos-regular{
  font-family: "Tinos", serif;
  font-weight: 400;
}

.tinos-bold{
  font-family: "Tinos", serif;
  font-weight: 700;
}

.allura-regular{
  font-family: "Allura", cursive;
  font-weight: 400;
}

/* ============================================================
   TITLE TEXT (FIXED CROPPING)
   ============================================================ */
#title-text{
  font-size: 80px;
  line-height: 1.15;       /* prevents Parisienne swash clipping */
  display: inline-block;   /* helps ink extents */
  padding: 0 16px;
}

/* ============================================================
   TITLE BAR (FIXED CROPPING)
   ============================================================ */
#title{
  position: relative;
  text-align: center;

  background-color: #C0CBC2;
  color: #FFFFFFB3;

  padding: 32px 0 18px;

  overflow-x: hidden;
  overflow-y: visible;
}

#logo{
  margin-left: 10px;
}

/* ============================================================
   WELCOME SECTION — Desktop band
   ============================================================ */
.welcome{
  background-color: #C0CBC2;
  color: #FFFFFFB3;
  padding: 54px 24px;
}

.welcome .tinos-bold{
  font-size: 32px !important;
  line-height: 1.1;
  margin: 0 auto 14px !important;
  max-width: 900px;
  letter-spacing: 0.5px;
}

.welcome .tinos-bold::after{
  content: "";
  display: block;
  width: 88px;
  height: 2px;
  margin: 16px auto 0;
  background: rgba(255,255,255,0.28);
  border-radius: 999px;
}

.welcome h6:nth-of-type(1){
  font-size: 18px;
  line-height: 1.5;
  margin: 18px auto 18px;
  max-width: 860px;
}

.welcome h6:nth-of-type(2){
  font-size: 16px;
  line-height: 1.85;
  margin: 0 auto;
  max-width: 860px;
}

.welcome h6,
.welcome p{
  color: #FFFFFFB3;
}