:root {
    --primary-color: #865D4E;       /* Muted Brown - Text & Key Elements */
    --secondary-color: #CBAD8D;     /* Beige - Highlights & Accents */
    --accent-color: #A48374;        /* Warm Taupe - Subtle Accents */
    --background-color: #F1EDE6;    /* Light Ivory - Main Background */
    --surface-color: #EBE3DB;       /* Soft Cream - Cards & Sections */
    --muted-text-color: #D1C7BD;    /* Light Taupe - Secondary Text */
    --text-color: #3A2D28;          /* Dark Brown - Primary Text */
}
html{
    scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

.intro-anim{
  width:100%;
  height:auto;
  background-color: #000000;
  object-fit: contain;
}

.tagline-overlay{
  width: 100vw;
  height: 100vh;
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: overlay-fade-out 800ms ease-in-out 8s forwards;
  /* transform-origin: top; */
  border: 1px solid var(--primary-color);
  border-radius: 0px;
  overflow: hidden;
}

@keyframes overlay-fade-out {
  0% {
    filter: blur(0px);
    scale: 1;
  }
  95% {
    border-radius: 100vw;
    scale: 0;
    filter: blur(55px);
  }
  100%{
    display: none;
    border-radius: 100vw;
    scale: 0;
  }
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns */
    grid-template-rows: auto auto;  /* Two rows */
}

@keyframes bounce {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
    }
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    font-family: 'Gill Sans', sans-serif;
    text-transform: uppercase;
}
p{
    color:var(--text-color);
    margin:10px 0px;
}
h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}   

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 3rem;
    }

    h3 {
        font-size: 2.5rem;
    }

    h4 {
        font-size: 2rem;
    }   

    h5 {
        font-size: 1.75rem;
    }

    h6 {
        font-size: 1.5rem;
    }
    p{
        font-size: 1.2rem;
    }
  
}

.container{
    margin: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    height:80dvh;
    transition: height 0.5s ease-in-out;
    grid-column: 1; /* First column */
    grid-row: 1;    /* First row */
}

.logo {
    position: relative;
    width: 18rem;
    fill: var(--primary-color);
  }
  
  @media (min-width: 768px) {
    .logo {
      width: 30rem;
    }
  }

#content {
    text-align: center;
}

#content h3{
  margin-top:60px;
}

@media (min-width: 768px) {
  #content {
    text-align: start;
  }
  #content h3 {
    margin:40px 15px 20px 0px;
  }
}

  #scroll-d {
    animation: up-down 1s linear infinite;
    transition: color 0.5s ease-in;
    fill: var(--text-color);
    margin-top: -10px;
  }
  
  #scroll-d:hover {
    color: var(--accent-color);
  }

.scroll-click-wrapper {
    text-align: center;
}

.scroll-click-wrapper.hidden {
    display: none;
}

.scroll-click-wrapper p{
    font-size: 1.2rem;
    color: var(--text-color);
}

.scroll-click-wrapper:hover{
    cursor: pointer;
    color: var(--accent-color);    
}


@keyframes up-down {
    0% {
      transform: translateY(0%);
    }
    10% {
      transform: translateY(25%);
    }
    100% {
      transform: translateY(0);
    }
}

    video {
        object-fit: cover;
        width: 100vw;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        z-index: -1;
        filter: brightness(1.2);
    }

#second-section {
    /* background-color: var(--surface-color); */
    border-radius: 10px;
    /* border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    grid-column: 2; /* Second column */
    grid-row: 1;    /* First row */
}



.email-signup {
    font-family: "Quicksand", sans-serif;
    max-width: 1000px;
    background-color: #EBE3DBB3;
    border-width: 2px;
    border-radius: 8px;
    border-color: rgb(0, 0, 0);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding:40px 30px;
    margin: 10px;
    backdrop-filter: blur(10px) opacity(0.8);
  }
  
  .email-signup form {
    display: flex;
    flex-direction: column;
    width: 40vw;
  }
  
  @media screen and (max-width: 768px) {
    .email-signup form {
      width: 80vw;
    }
  }
  
  label {
    margin-bottom: 8px;
    color: var(--text-color);
  }
  
  input {
    padding: 10px;
    margin-bottom: 15px;
    border: 2px solid var(--accent-color);
    border-radius: 5px;
    font-size: 1rem;
    padding: 15px;
  }
  
  input[type="email"], input[type="text"], input[type="tel"] {
    background-color: transparent;

    color: var(--text-color);
    transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  input:focus {
    background-color: var(--primary-color);
    /* border: 2px solid #ffffff; */
    color: var(--muted-text-color);
    transform: scale(1.05);
    transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .email-signup button {
    border: 0px solid #000000;
    cursor: pointer;
    margin-top: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    padding: 15px 20px 15px 20px;
    width: 50%;
    align-self: center;
  }
  
  .btn-grad {
    background-image: linear-gradient(to right, var(--primary-color) 0%, var(--primary-color) 51%, var(--accent-color) 100%);
    margin: 10px;
    padding: 15px 45px;
    text-align: center;
    transition: 0.5s;
    text-transform: uppercase;
    background-size: 200% auto;
    color: whitesmoke;
    /* box-shadow: 0 0 15px #cbad8d; */
    border-radius: 10px;
    display: block;
    background-position: left center;
  }
  
  .btn-grad:hover {
    background-position: right center;
    text-decoration: none;
    transition: 0.5s ease-in-out;
  }

  footer {
    background-color: var(--text-color);
    color: var(--background-color);
    padding: 20px;
    text-align: center;
    /* bottom: 0;
    position: absolute; */
    width: calc(100vw - 60px);
    margin: 10px;
    grid-column: 1 / 3; /* Spans both columns */
    grid-row: 2;        /* Second row */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 40px;
  }

  @media (min-width: 768px) {
    footer {
      height: auto;
    }
  }

  footer p{
    color: var(--muted-text-color);
  }

  @media (max-width: 768px) {
    body {
      display: block;
    }
    .container {
        height: 85dvh;
    }
  }

  @import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css');

a, a:hover {
	text-decoration: none;
}

.socialbtns, .socialbtns ul, .socialbtns li{
	margin: 0;
	padding: 5px;
}

.socialbtns li {
    list-style: none outside none;
    display: inline-block;
}

.socialbtns .fa {
	width: 40px;
    height: 28px;
	color: #FFF;
	background-color: #000;
	padding-top: 12px;
	border-radius: 20px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	-o-border-radius: 20px;
	transition: all ease 0.5s;
	-moz-transition: all ease 0.5s;
	-webkit-transition: all ease 0.5s;
	-o-transition: all ease 0.5s;
}

.socialbtns .fa:hover {
	transform: scale(1.2,1.2);
	-moz-transform: scale(1.2,1.2);
	-webkit-transform: scale(1.2,1.2);
	-o-transform: scale(1.2,1.2);
	transition: all ease 0.5s;
	-moz-transition: all ease 0.5s;
	-webkit-transition: all ease 0.5s;
	-o-transition: all ease 0.5s;
}
