/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 11 2024 | 05:32:29 */
* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Root font size for easier rem calculations */
:root {
  font-size: 16px;
}

body {
	padding-top: 0;
}

nav {
  padding: clamp(0.5rem, 2vw, 1.5rem) clamp(1rem, 7%, 3rem);
  height: 60px;
  width: 100vw;
  position: fixed;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
	top: 0;
	left: 0;
  align-items: center;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}

nav::after {
    content: '';
    display: block;
    position: fixed;  /* Change to fixed */
    top: 0;          /* Position at top */
    left: 0;         /* Align with left edge */
    width: 100%;     /* Full width */
    height: 60px;
    pointer-events: none;  /* Allow clicking through */
    visibility: hidden;
}

nav .logo {
  font-family: Antonio, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav .logo h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  background: #4A1C1C;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  white-space: nowrap;
}

/* Scrolled state - mobile */

nav.scrolled {
	margin: 0;
	background-color: #170f0e;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
	transition: all 0.3s ease-in-out;
    backdrop-filter: blur(10px);
}

nav.scrolled body {
	padding-top: 60px;
}

nav.scrolled .logo h1 {
  background: #fbf4f4;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav.scrolled ul li a {
  font-family: Chivo, sans-serif;
  text-decoration: none;
  color: #fbf4f4;
  font-size: clamp(0.875rem, 1.5vw, 0.95rem);
  font-weight: 400;
  padding: 0.25rem 0.5rem;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
}

nav.scrolled .hamburger .line {
	background-color: #fbf4f4;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  gap: clamp(1rem, 2vw, 1.5rem);
}

nav ul li {
  margin: 0;
}

nav ul li a {
  font-family: Chivo, sans-serif;
  text-decoration: none;
  color: #4A1C1C;
  font-size: clamp(0.875rem, 1.5vw, 0.95rem);
  font-weight: 400;
  padding: 0.25rem 0.5rem;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
}

nav ul li a:hover {
  background-color: #9387876e;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger .line {
  width: clamp(20px, 4vw, 25px);
  height: 1px;
  background-color: #4A1C1C;
  display: block;
  margin: 7px auto;
  transition: all 0.3s ease-in-out;
}

.wpcf7-form {
	background: #2e11115e;
	padding: 30px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #bebebe;
    border-radius: 4px;
	background: #2e1111;
}

.wpcf7-form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #bebebe;
    border-radius: 4px;
    height: 150px;
	background: #2e1111;
}

.wpcf7-form input[type="submit"] {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.wpcf7-form input[type="submit"]:hover {
    background: #4A1C1C;
	color: white;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
    color: white;
    placeholder: white;
}

/* Mobile menu styles */
.menubar {
  position: fixed;
  top: 0;
  left: -100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: min(300px, 80%);
  height: 100vh;
  padding: clamp(4rem, 15vh, 8rem) 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2000;
  backdrop-filter: blur(10px);
	background-color: #4A1C1C;
}

.active {
  left: 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.menubar ul {
  padding: 0;
  list-style: none;
  width: 100%;
}

.menubar ul li {
  margin-bottom: clamp(1.5rem, 4vh, 2rem);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease-in-out;
}

.active ul li {
  opacity: 1;
  transform: translateX(0);
}

.menubar ul li a {
  font-family: Chivo, sans-serif;
  text-decoration: none;
  color: #fbf4f4;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 400;
  padding: 0.5rem 0.75rem;
  border-radius: 5px;
  display: block;
  transition: all 0.2s ease-in-out;
}

.menubar ul li a:hover {
  background-color: #dc3232;
  transform: translateX(5px);
}

/* Responsive breakpoints */

/* Tablets (791px and up) */
@media screen and (min-width: 791px) {
    nav {
        
        height: clamp(60px, 10vh, 70px);
    }
    
    nav .logo h1 {
        font-size: clamp(1.25rem, 3.5vw, 1.75rem);
    }
    
    .hamburger {
        display: none;
    }
    
     nav ul {
        display: flex;
        gap: clamp(1rem, 2vw, 1.5rem);
        align-items: center;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    
    nav ul li a {
        font-family: Chivo, sans-serif;
        text-decoration: none;
        color: #4A1C1C;
        font-size: clamp(0.875rem, 1.5vw, 0.95rem);
        padding: 0.25rem 0.5rem;
        border-radius: 5px;
        transition: all 0.2s ease-in-out;
        white-space: nowrap;
    }
    
    nav.scrolled ul li a {
        color: #fbf4f4;
    }
}

/* Laptops/Tablets Landscape (1024px and up) */
@media screen and (min-width: 1024px) {
	
    nav .logo h1 {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    nav ul li a {
        font-size: clamp(0.875rem, 1.5vw, 0.95rem);
    }
}

/* Desktop (1200px and up) */
@media screen and (min-width: 1200px) {
    nav {
        padding: 0.5rem 7%;
    }
    
    nav.scrolled {
        padding: 0.5rem 7%;
    }
    
    nav ul li a:hover {
        background-color: #9387876e;
        transform: translateY(-1px);
    }
	
	body.nav-scrolled {
    padding-top: 60px;
}
}

/* Extra Large Screens (1400px and up) */
@media screen and (min-width: 1400px) {
    nav {
        padding: 0.5rem 10%;
    }
    
    nav.scrolled {
        padding: 0.5rem 10%;
    }
}

/* Mobile Menu Active States */
.hamburger-active {
    transition: all 0.3s ease-in-out;
    transition-delay: 0.6s;
    transform: rotate(45deg);
}

.hamburger-active .line:nth-child(2) {
    width: 0px;
}

.hamburger-active .line:nth-child(1),
.hamburger-active .line:nth-child(3) {
    transition-delay: 0.3s;
}

.hamburger-active .line:nth-child(1) {
    transform: translateY(12px);
}

.hamburger-active .line:nth-child(3) {
    transform: translateY(-5px) rotate(90deg);
}

.menubar.active {
    left: 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Menu Items Animation */
.menubar ul li {
    margin-bottom: clamp(1.5rem, 4vh, 2rem);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease-in-out;
}

.menubar.active ul li {
    opacity: 1;
    transform: translateX(0);
}

/* Activate hamburger */
@media screen and (max-width: 790px) {
  .hamburger {
    display: block;
  }

  nav ul {
    display: none;
  }
}

/* Staggered animation for menu items */
.menubar ul li:nth-child(1) { transition-delay: 0.1s; }
.menubar ul li:nth-child(2) { transition-delay: 0.2s; }
.menubar ul li:nth-child(3) { transition-delay: 0.3s; }
.menubar ul li:nth-child(4) { transition-delay: 0.4s; }

/* Safe area for notched devices */
@supports (-webkit-touch-callout: none) {
    nav {
        padding-top: calc(env(safe-area-inset-top) + 0.5rem);
    }
    
    .menubar {
        padding-top: calc(env(safe-area-inset-top) + 4rem);
    }
}