/* josefin-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Josefin Sans';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/josefin-sans-v34-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* josefin-sans-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Josefin Sans';
  font-style: italic;
  font-weight: 400;
  src: url('fonts/josefin-sans-v34-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* josefin-sans-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Josefin Sans';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/josefin-sans-v34-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* josefin-sans-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Josefin Sans';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/josefin-sans-v34-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* josefin-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Josefin Sans';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/josefin-sans-v34-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* yeseva-one-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Yeseva One';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/yeseva-one-v24-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

html {
  background-color: #FAF7F3;
}

h1, h2, h3 {
  font-family:'Yeseva One';
}

p, ul, li {
font-family: 'Josefin Sans';
}

.navbar {
  background-color: #C68484;
  display: flex;
  justify-content: center;  
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px; 
  padding: 0 20px;           
  z-index: 1000;            
}


.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px; 
}


.navbar a {
  text-decoration: none;
  color: white;
  padding: 10px 15px;
  border-radius: 8px;
  transition: 0.3s;
  font-size: 1.5em;
}

.navbar a:hover {
  background-color: #E7CCCC;
  color: #fff;
}

.toggle-btn {
  position: fixed;        
  left: 20px;
  top:15px;
  font-size: 24px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

.sidebar {
  position: fixed;
  top: 60px; 
  left: -250px;
  width: 250px;
  height: calc(100% - 60px);
  background-color: #222;
  color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: left 0.3s ease;
  z-index: 999; 
}

.sidebar h2 {
  color: #C68484 ;
}

.sidebar-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sidebar-links a:hover {  
  background-color: #9BB4C0;
  color: #fff;               
  transform: scale(1.05);
  transition: transform 0.2s ease, color 0.2s ease; 
}


.sidebar-links a {
  text-decoration: none;
  color: white;
  font-size: 18px;
}


#sidebarToggle:checked ~ .content {
  left: 0;
}

#sidebarToggle:checked ~ .sidebar {
  left: 0;
}


.web-images {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

.web-images img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.header-text {
  position: absolute;
  top: 40px;              
  left: 50%;             
  transform: translateX(-50%);
  text-align: center;
  color: black;         
  background-color: #FAF7F3; 
  border: 3px solid white; 
  padding: 20px 40px;     
  border-radius: 12px;    
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); 
  max-width: 90%;  
  font-size: 13px;      
}


.header-image {
   width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

.header-image img {
  width: 100%;
  height: 250px; 
  object-fit: cover; 
  display: block;
}


.content {
  margin: 100px auto 50px auto; 
  max-width: 800px;           
  padding: 20 20px;              
  text-align: center;           
}

h1 {
  color: #7EACB5;

}
.content h1, h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #7EACB5;
}

.content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer {
  background-color: #DFD3C3;       
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
  margin-top: 50px;
}


.supply-box {
  margin: 50px auto 0 auto; 
  padding: 30px;
  max-width: 600px; 
  background-color: #FAF7F3; 
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
  text-align: left; 
}

.supply-box h2 {
  color: #8FABD4; 
  font-size: 28px;
  margin-top: 0;
  margin-bottom: 15px;
  text-align: center;
}


.supply-box ul {
  list-style: none; 
  padding-left: 0;
}

.supply-box li a {
  display: block; 
  padding: 8px 0;
  color: #222; 
  text-decoration: none;
  border-bottom: 1px dashed #DFD3C3; 
  transition: color 0.2s;
  text-align: center;
  font-size: 1.5em;
}

.supply-box li a:hover {
  background-color: #8FABD4;
  color: #EFECE3;
}

.back-home-btn {
  display: inline-block;
  text-decoration: none; 
  color: white;
  background-color: #7EACB5; 
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 25px; 
  transition: background-color 0.3s ease;
}

.back-home-btn:hover {
  background-color: #9BB4C0; 
}

.suggestion-box-form {
    margin: 40px auto;
    padding: 30px;
    max-width: 500px;
    background-color: #FAF7F3; 
    border: 1px solid #DFD3C3;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.suggestion-box-form h2 {
    color: #7EACB5;
    text-align: center;
    margin-bottom: 25px;
    font-size: 32px;
}

.suggestion-box-form label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #222;
}

.suggestion-box-form input[type="email"],
.suggestion-box-form input[type="tel"],
.suggestion-box-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #DFD3C3;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
    resize: vertical;
}

.suggestion-box-form .submit-btn {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 30px;
    background-color: #7EACB5; 
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.suggestion-box-form .submit-btn:hover {
    background-color: #6C9DA6; 
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; 
    height: 0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px; 
}

.tutorial-section {
    text-align: left;
    margin: 0 auto 50px auto;
    max-width: 800px;
    padding: 20px;
    border-top: 2px solid #7EACB5; 
    padding-top: 30px;
}

.tutorial-section h2 {
    color: #C68484; 
    text-align: center;
    margin-bottom: 25px;
}

.tutorial-section ul {
    padding-left: 20px;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.8;
    list-style: none;
}

.tutorial-section li strong, h3 {
    color: #7EACB5; 
}

.copyright-info {
    font-size: 14px;
    color: #555;
    text-align: center;
    border-top: 1px dashed #DFD3C3;
    padding-top: 15px;

}
