/* home page layout */

body{
    margin: 0;
  font-family: "Roboto", sans-serif;
  background: #0a0a23;
  padding-bottom: 60px;
    overflow-x: hidden;
}



.nav-bar{
    display: flex;
    list-style: none;
}

/* nav bar menu items */

.nav-bar li a {
    margin-right: 20px;
    text-decoration: none;
    color: #E69138;
    font-size: 25px;
    transition: color 0.3s ease-in-out;
}

/* Change the background color on hover */
.nav-bar li a:hover {
    background-color: #073763;
    color: #E69138;
    border-radius: 5%;
}

/* logo details */
.header-img{
    display: block;
   margin-left: auto;
   margin-right: auto;
     max-width: 80%;
     height: auto;
 }

.hero{
    color:#E69138;
    text-align: center;
    font-size:40px;
    padding-bottom: 140px;   
}

.name{
    font-family: "Cedarville Cursive", cursive;
    font-size: 70px;
    font-weight: bolder;
}

.hero h1, h2 {
    margin:0px;
}

h2{
  color: lightskyblue ;
}
.contact{
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.container{
    display: flex;
     flex-direction: row;
    
  justify-content: center;
  align-items: center;
    padding-top: 100px;
}

.container img {
    height: 100%;
    width: 100%;
     object-fit: contain;     
  }
   

.items{
    flex: 1;
    flex-flow: column wrap;
    color:#073763;
   
   width: 400px;
   height: 400px;
   margin-bottom: 50px;
}
.items:first-child{
    margin-right: 10px;
}

.details, .pic{
    display: flex;
    font-size: 40px;
    justify-content: center;
    align-items: center;  
}

h3 {
    display: flex;
    justify-content: center;
    align-items: center; 
    padding-top: 10px;  
    padding-left: 20px;
    height: 200px;
    font-size: 30px;
}


/* ------------------------gallery layout------------------- */




.header {
  font-size: 30px;
  text-align: center;
  text-transform: uppercase;
  padding: 32px;
  background-color: #0a0a23;
  color: #E69138;
  padding-top: 0;
  border-bottom: 4px solid #fdb347;
  padding-bottom: 1px;
  margin-bottom: 30px;
}


#insta {
  max-width: 40px;
  height: auto;
  border-radius: 40%;
}


#insta:hover {
  transform: scale(1.2);
  z-index: 1;
  transition: 0.5s ease-in-out;
}

#insta {
  transition: 0.5s ease-in-out;
}


.gallery{
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  max-width: 12000px;
  margin: 0 auto;
  padding: 20px 5px;
}

figure, .photo{
  width: 100%;
  max-width: 350px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}



figcaption {
  display: block;
  background-color: #222;
  color: #fff;
  font: italic medium sans-serif;
  padding: 3px;
  text-align: center;
  opacity: 1;
}

.photo:hover {
  border: 5px solid white;
  transform: scale(1.5);
  z-index: 1;
  transition: 0.5s ease-in-out;
}

.photo {
  transition: 0.5s ease-in-out;
} 


/* -------------------Contact Form--------------- */

.contact {

    background-color: #0a0a23;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    font-size: 20px;
    margin: auto;
    
}

.form-group {
    margin-bottom: 15px;
}

label {
    
    margin-bottom: 5px;
    color: #555;
}

input[type="email"],
textarea {
 
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-sizing: border-box; /* Ensures padding doesn't increase width */
}

input[type="email"]:focus,
textarea:focus {
    border-color: #007bff;
    outline: none;
}

button {
    background-color: #007bff;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
}

button:hover {
    background-color: #0056b3;
}

#formStatus {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
}

.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.hidden {
    display: none;
}