/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

h2 {
    color: gold;
}
h3 {
    color: whitesmoke;
}
h4 {
    color: gold;
}

p {
  color: orange;
  /* font-style: italic; */
}


  /* Body Styling */
  body {
    font-family: 'Roboto', sans-serif;
    background-color: #fff; /* White background for the page */
    background-image: url('./images/Menorca_Group_NA.jpg');
    background-size: 100vw 100vh;
    color: #333; /* Dark text for good readability */
  }
  
  /* Hero Section Styling */
  .hero {
    position: relative;
    background-image: url('./images/Index1.jpg'); /* Replace with your hero image */
    background-size: cover;
    background-position: center;
    height: 100vh; /* Full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for text contrast */
  }
  
  /* Hero Content (Text) */
  .hero-content {
    position: relative;
    z-index: 1;
  }
  
  .hero-heading {
    font-size: 3rem; /* Large headline */
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .hero-subheading {
    font-size: 1.5rem; /* Medium-sized subheading */
    font-weight: 300;
    margin-bottom: 40px;
  }
  
  .cta-button {
    font-size: 1.2rem;
    padding: 15px 30px;
    background-color: #e12b2b; /* Red background for CTA */
    color: white;
    text-transform: uppercase;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #a71d1d; /* Darker red on hover */
  }
  
/* -------------- Contact Form  -------------  */

.card2 {
  width: 90%;
  background: rgba(0, 0, 0, 0.75);
  text-align: left;
  margin: auto;
  top: 10%;
  padding: 30px;
  /* border: whitesmoke;
  border-width: 1px;
  border-style: solid none; */
  }
.card2 a:link {
  color: orange;
  text-decoration: none
  }
.card2 a:visited {
  color: orange;
  text-decoration: none
  }
.card2 a:hover {
  color: red;
  }
.card2::after {
  content: "";
  clear: both;
  display: table;
}

/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
  background-color: #2a2020;
  color: whitesmoke;
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */ 
  border: 1px solid black; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: gold;
  color: #000;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: orange;
}

/* Add a background color and some padding around the form */
.container {
  border-radius: 5px;
  background-color: black;
  padding: 20px;
  color: whitesmoke;
} 

/* -------------- Contact Form  -------------  */



  /* Responsive Design: */
  @media (max-width: 768px) {
    .hero-heading {
      font-size: 2.5rem;
    }
    
    .hero-subheading {
      font-size: 1.2rem;
    }
  
    .cta-button {
      font-size: 1rem;
      padding: 12px 24px;
    }
  }
  