/* Reset and base styles */

@font-face {
    font-family: "OutfitFF";
    src: url(assets/fonts/Outfit-VariableFont_wght.ttf);
}

@font-face {
  font-family: "OutfitFFLight";
  src: url(assets/fonts/Outfit-Light.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  line-height: 1.6;
  color: #323232;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
header {
  background: #222220;
  color: #fff;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  margin-right: auto;
  margin-left: auto;
}

header h1 {
  text-align: center;
  font-family: 'OutfitFF';
  font-size: 30px;
  color: rgb(211, 200, 137);
}
nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin-top: 10px;
  font-family: 'OutfitFFLight';
}
nav ul li {
  margin: 0 15px;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.about-us {
  background: rgb(63, 62, 62);
  color: white;
  padding: 40px 20px;
  text-align: center;
  font-family: 'OutfitFFLight';
  height: auto;
}

.about-us h2 {
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-family: 'OutfitFF';
}

.about-us p {
  font-size: 1rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.about-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  margin-right: auto;
  margin-left: auto;
}

/* Call to Action */
.cta {
  background: rgb(44, 42, 42);
  color: #fff;
  padding: 20px 0;
  text-align: center;
  font-family: 'OutfitFFLight';
  font-size: 12px;
  line-height: 2px;
}
.cta h3 {
  margin-bottom: 20px;
  margin-top:10px;
  height:10px;
}

.cta a {
  display: block; 
  margin-bottom: 15px; 
  padding:5px 10px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-family: 'OutfitFFLight';
}

.bookingblock {
  background-color: rgb(33, 32, 32);
  color: white; 
  margin-left: auto;
  margin-right: auto;
  width: fit-content; 
  padding: 10px 20px;
  border-radius: 10px; 
  text-align: center; 
}

/* Social Media */
.social-media {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-media a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-family: 'OutfitFFLight';
  text-align: center; 
}

.social-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

/* Footer */
footer {
  background: #222220;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-family: 'OutfitFF';
  font-size: 16px;
}