/* style.css */

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/*Main Body styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0d0d0d;
  color: #f2f2f2;
  line-height: 1.6;
}
/*End of Main Body styles*/
/*Header styles*/
header {
  background-color: #1a1a1a;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #e60000;
}
/*End of Header styles*/
/*Logo styles*/
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #e60000;
}
/*End of Logo styles*/
/*Navigation styles*/
nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav ul li a {
  text-decoration: none;
  color: #f2f2f2;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #e60000;
}
/*End of Navigation & Scrolling styles */
.hero {
  text-align: center;
  padding: 5rem 2rem;
  background: radial-gradient(circle at center, #1a1a1a, #000);
}
/*h1 Header styles*/
.hero h1 {
  font-size: 3rem;
  color: #e60000;
  margin-bottom: 1rem;
}
/*End of h1 Header styles*/
/*h2 Header styles*/
.hero h2 {
  font-size: 2rem;
  color: #e65100f7;
  margin-bottom: 1rem;
}
/*End of h2 Header styles*/
/*Paragraph styles */
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
/*End of Paragraph styles*/
/* Different button styles*/
.btn {
  display: inline-block;
  background-color: #e60000;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #b30000;
}
/*End of Button styles */
/*Footer styles */
footer {
  background-color: #1a1a1a;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #999;
  border-top: 2px solid #e60000;
  margin-top: 2rem;
}
/*End of Footer styles */

/* Contact Form styles */
form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 0 10px #e60000;
}

form h2 {
  color: #e60000;
  margin-bottom: 1rem;
}

label {
  display: block;
  margin: 1rem 0 0.3rem;
}

input, textarea {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  background: #333;
  color: #fff;
  font-size: 1rem;
}

input:focus, textarea:focus {
  outline: 2px solid #e60000;
}

button {
  margin-top: 1rem;
  background: #e60000;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #b30000;
}
/*End of Contact Form styles */

/*Slideshow styles */
* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
/*End of Slideshow styles*/