/* ================= RESET & GLOBAL ================= */
@font-face {
  font-family: 'Roboto';
  src: url('../assets/fonts/roboto/Roboto-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url('../assets/fonts/roboto/Roboto-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #000;
  font-family: 'Roboto', 
}

a {
  color: white;
  text-decoration: none;
}
a:hover {
  color: white;
}

img {
  display: block;
  margin: auto;
  max-width: 100%;
  height: auto;
}

.space-bottom{
  width: 100%;
  height: 70px;
}

.container {
  width: 70%;
  margin: auto;
}

.head {
  width: 100%; 
  max-width: 100%; 
  height: auto;   
  padding: 20px 0; 
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: 2px solid #d80606;
  border-image: #000 1;
  box-sizing: border-box;
  overflow: hidden;
}

.head .logo img {
  max-width: 100%; 
  height: auto;   
  display: block;
  object-fit: contain;
}

@media (max-width:600px) {
  .container,
  .head {
    width: 100%;  
  }

  .head {
    height: auto;
    padding: 30px 0;
  }

  .head .logo img {
    max-width: 90%;    
    height: auto;
  }
}



/* ================= MENU ================= */
.menu {
  width: 100%;
  text-align: center;
  background: linear-gradient(to top, #d80606, #d80606);
}
.menu a {
  display: inline-block;
  padding: 10px 20px;
  font-size: 18px;
  color: #fff;
}

/* ================= CONTENT ================= */
.content {
  width: 100%;
  border: 1px solid #d80606;
  border-radius: 0px;
}

.content p {
  font-size: 16px;
  color: white;
  margin: 5px;
}

/* ================= HEADINGS ================= */
h1 { text-align: center; margin: 20px 0; }
h2, h3 { text-align: center; margin: 30px 0; font-size: 26px; color: white; }
h4 { text-align: center; margin: 25px 0; font-size: 20px; color: white; }

.title-head { font-size: 24px; color: white; }
.title-footer { font-size: 26px; color: white; }


.contact-box {
  background-color: #fff;      
  color: #000;                 
  padding: 8px 12px;          
  border-radius: 8px;          
  max-width: 80%;            
  margin: 20px auto;           
  font-family: Arial, sans-serif;
  font-size: 16px;
  text-align: center;          
  box-shadow: 0 2px 6px rgba(0,0,0,0.1); 
}
.contact-box p {
  color: #000;          
}
/* ================= RESPONSIVE ================= */
@media (max-width: 1000px) {
  .container { width: 100%; }
  .menu a { display: block; font-size: 20px; }


  h3, .title-footer { font-size: 14px; }
}



