         *,
 *::before,
 *::after {
     box-sizing: border-box;
}
/* 2. Remove default margin */
* {
  margin: 0;
}

/* 3. Smooth Scroll */
  html, body {
  scroll-behaviour: smooth;
  overflow-x : clip;
  
}
/* Typographic tweaks! 4. Add accessible line-height 5. Improve text rendering */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  scrollbar-gutter: stable;
  background-color: white;
}
/* 6. Improve media defaults */
  img,svg,video,picture {
  max-width: 100%;
  height: auto;
}
/* 7. Remove built-in form typography styles */
input, button, textarea, select {
  font: inherit;
}
/* 8. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* fade in */
@keyframes appear {
from {
opacity: 0;
scale: 1;
/* transform:translateX(-100px);
clip-path: inset(100% 100% 0 0); */
}
to {
opacity: 1;
scale: 1;
transition: 2s;
/* transform:translateX(0px);
clip-path: inset(0 0 0 0); */
}
}

/* the class given to each element */

.element {
animation: appear linear;
animation-timeline: view();
animation-range: entry 0% cover 10%;
}



        /* Header MENU */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    background: #A52A2A;
    border-bottom: 1px solid transparent;
    z-index: 999;
    transition: padding 0.25s ease, box-shadow 0.25s ease;
    padding: 18px 0;
}

/* Shrunk state */
.site-header.shrink {
    padding: 8px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Container */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
    transition: transform 0.25s ease;
}

.site-header.shrink .logo {
    transform: scale(0.9);
}

/* Desktop Nav */
.desktop-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.desktop-nav a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    font-family: "DM Sans", sans-serif;
    transition: opacity 0.2s;
}

.desktop-nav a:hover {
    opacity: 0.6;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger → Cross Animation */
.mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav (slide-down animation) */
.mobile-nav {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition:
        max-height 0.45s ease,
        opacity 0.35s ease,
        transform 0.45s ease;
    background: white;
}

.mobile-nav.open {
    max-height: 500px;
    opacity: 1;
    background-color: #861A1A;
    transform: translateY(0);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    font-family: "DM Sans", sans-serif;
}

.mobile-nav li {
    margin-bottom: 15px;
}

.mobile-nav a {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 1rem;
}


.overlay {
       border-image: linear-gradient(hsla(0, 91%, 31%, 0.24), hsla(0, 92%, 29%, 0.6))
       fill 1;
}
.hero {
        background-image: url(./images/herobg.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        min-block-size: 60vh;
        place-content: center;
        text-align: center;
}

.hero2 {
        background-image: url(./images/hero2.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        min-block-size: 30vh;
        place-content: center;
        text-align: center;
}

.fifty50 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 1rem;
    margin-top: 1rem;
    align-items: center;
    justify-content: center;
}

.left-50 {
    padding: 1rem;
}

.right-50 {
    padding: 1rem;
}

.strap {
    width: 100%;
    text-align: center;
    padding: 1rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.youtube {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
    gap: 1rem;
}

.you-1 {
    background-color: #FFFFFF;
    text-align: center;
    padding: 1rem;

}

.you-2 {
    background-color: #FFFFFF;
     text-align: center;
     padding: 1rem;

}

.you-3 {
    background-color: #FFFFFF;
     text-align: center;
     padding: 1rem;

}

.you-4 {
    background-color: #FFFFFF;
     text-align: center;
     padding: 1rem;

}


/* Responsive menu */
@media (max-width: 900px) {

    .fifty50 {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1rem;
    margin-top: 1rem;
}

.youtube {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 1rem;
}



    .desktop-nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }
}

/* Responsive menu */
@media (max-width: 600px) {
.youtube {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1rem;
}

}


h1 {
    font-family: "Sekuya", system-ui;
  font-weight: 800;
  font-optical-sizing: auto;
  color:white;
  font-size: clamp(1.5625rem, 1.1448rem + 2.0886vw, 6.625rem);
}

h2 {
  font-family: "Yellowtail", cursive;
  font-weight: 400;
  font-size: clamp(1.2625rem, 1.1448rem + 2.0886vw, 6.625rem);
}

h3 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 600;
}

.white {
    color: white;
}

p {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: clamp(0.875rem, 0.8244rem + 0.2532vw, 1.125rem);
    color: black;
    line-height: 1.5;
    margin-top: 1rem;
}
.sign  {
      font-family: "Yellowtail", cursive;
  font-weight: 400;
  font-size: clamp(1.2625rem, 1.1448rem + 2.0886vw, 6.625rem);

}
.strap-txt {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  color:white;
  font-size: clamp(0.875rem, 0.6725rem + 1.0127vw, 1.875rem);
}

img {
    border-radius: 8px;
}

/**todo back to top */

	.cd-top {
	  display: inline-block;
	  height: 40px;
	  width: 40px;
	  position: fixed;
	  bottom: 40px;
	  right: 10px;
	  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
	  /* image replacement properties */
	  overflow: hidden;
	  text-indent: 100%;
	  white-space: nowrap;
	  background: #A52A2A url("./images/cd-top-arrow.svg") no-repeat center 50%;
	  visibility: hidden;
	  opacity: 0;
	  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
	  -moz-transition: opacity .3s 0s, visibility 0s .3s;
	  transition: opacity .3s 0s, visibility 0s .3s;
	}
	.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
	  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
	  -moz-transition: opacity .3s 0s, visibility 0s 0s;
	  transition: opacity .3s 0s, visibility 0s 0s;
	}
	.cd-top.cd-is-visible {
	  /* the button becomes visible */
	  visibility: visible;
	  opacity: 1;
	}
	.cd-top.cd-fade-out {
	  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
	  opacity: .5;
	}
	.no-touch .cd-top:hover {
	  background-color: #F29E92;
	  opacity: 1;
	}
	@media only screen and (min-width: 768px) {
	  .cd-top {
		right: 20px;
		bottom: 20px;
	  }
	}
	@media only screen and (min-width: 1024px) {
	  .cd-top {
		height: 60px;
		width: 60px;
		right: 30px;
		bottom: 30px;
	  }
	}



