*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

header{
    width: 100%;
    height: 100vh;
    background-image:linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.1)) url(image/background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

nav{
    width: 100%;
     height: 15vh;
     background: rgba(0,0,0,0.2);
     color: white;
     display: flex;
     justify-content: space-between;
     align-items: center;
     text-transform: uppercase;

}

nav .logo {
    width: 25%; text-align: center;
}

nav .Menu{
    width: 40%;
    display: flex;
    justify-content: space-around;

}

body{
    width: 100%;
    height: 100vh;
    background-image: url(image/background.jpg);
    background-color: #f1f1f1;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    
}

nav .Menu  a{
    width: 25%;
    text-decoration: none;
    color: white;
}

nav .Menu a:first-child{
    color: #00b894;

}

main {
    width: 100%;
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;

}

section h3{
    font-size: 35px;
    font-weight: 200;
    letter-spacing: 3px;
    text-shadow: 1px 1px 2px;
}

section h1 {
    margin: 30px 0 20px 0;
    font-size: 55px;
    font-weight: 700;
    text-shadow: 2px 1px 5px black;
    text-transform: uppercase;
}
section p{
    font-size: 25px;
    word-spacing: 2px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 1px black;
}
section a{
    padding: 12px 30px;
    border-radius: 4px;
    outline: none;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 1px;
}
section .btnone{
    background: white;
    color: #000;
}
section .btntwo{
    background: #00b894;
    color: white;
}


/* Full-width input fields */
input[type=text], input[type=password] {
    width: 100%;
    padding: 15px;
    margin: 5px 0 22px 0;
    display: inline-block;
    border: none;
    background: #f1f1f1;
  }
  
  /* Add a background color when the inputs get focus */
  input[type=text]:focus, input[type=password]:focus {
    background-color: #ddd;
    outline: none;
  }
  
  /* Set a style for all buttons */
  button {
    background-color: #04AA6D;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
    opacity: 0.9;
  }
  
  button:hover {
    opacity:1;
  }
  
  /* Extra styles for the cancel button */
  .cancelbtn {
    padding: 14px 20px;
    background-color: #f44336;
  }
  
  /* Float cancel and signup buttons and add an equal width */
  .cancelbtn, .signupbtn {
    float: left;
    width: 50%;
  }
  
  /* Add padding to container elements */
  .container {
    padding: 16px;
  }
  
  /* The Modal (background) */
  .modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: #474e5d;
    padding-top: 50px;
  }
  
  /* Modal Content/Box */
  .modal-content {
    background-color: #fefefe;
    margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
  }
  
  /* Style the horizontal ruler */
  hr {
    border: 1px solid #f1f1f1;
    margin-bottom: 25px;
  }
   
  /* The Close Button (x) */
  .close {
    position: absolute;
    right: 35px;
    top: 15px;
    font-size: 40px;
    font-weight: bold;
    color: #f1f1f1;
  }
  
  .close:hover,
  .close:focus {
    color: #f44336;
    cursor: pointer;
  }
  
  /* Clear floats */
  .clearfix::after {
    content: "";
    clear: both;
    display: table;
  }
  
  /* Change styles for cancel button and signup button on extra small screens */
  @media screen and (max-width: 300px) {
    .cancelbtn, .signupbtn {
       width: 100%;
    }
  }

  /*gallery css*/

  div.scroll-container {
  overflow: auto;
  white-space: nowrap;
  padding: 10px;
}

div.scroll-container img {
  padding: 10px;
}

.card-container {
    display: grid;
    gap: 5px;
    grid-template-columns: repeat(3, 1fr);

}
.card{
    width: 325px;
    padding: 10px;
    background-color: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 2px 4px rgba(0.0,0,0.2);
    margin: 20px;

}

.container {
    width: 50%;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    
}

.card img{
    width: 100%;
    height: auto;
}

.card-content{
    padding: 16px;
}
.card-content h3{
    font-size: 28px;
    margin-bottom: 8px;
}

.card-content p{
    color: #666;
    font-size: 15px;
    line-height: 1.3;

}
.card-content .btn{
    display: flex;
    padding: 8px 16px;
    background-color: #333;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 16px;
    color: #f0f0f0;
}



form label {
    display: block;
    margin-bottom: 5px;
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.hero {
    background-image: url('paris.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background-color: #ff5733;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #ff8148;
}

.features {
    padding: 50px 0;
}

.feature {
    text-align: center;
    margin-bottom: 30px;
}

.feature h3 {
    font-size: 24px;
    margin-bottom: 10px;
}



h2 {
    text-align: center;
    margin-top: 40px;
    color: #333;
}

/* Gallery styles */
.scroll-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 20px;
}

figure {
    margin: 0 10px;
    text-align: center;
}

figcaption {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

figure img {
    width: 300px; /* Adjust as needed for responsiveness */
    height: auto;
    border-radius: 8px;
}

/* Footer styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .scroll-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    figure {
        flex: 0 0 calc(50% - 20px);
        margin: 0 10px 20px;
    }

    figure img {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    figure {
        flex: 0 0 calc(100% - 20px);
    }
}

.scroll-container img {
    width: 300px;
    height: 200px;
    border-radius: 8px;
}



h1 {
    color: #333; /* Set the text color */
    font-size: 36px; /* Set the font size */
    margin: 0; /* Remove any default margin */
}

p {
    color: #666; /* Set the text color */
    font-size: 18px; /* Set the font size */
    margin-top: 10px; /* Add some space above the paragraph */
    margin-bottom: 20px; /* Add some space below the paragraph */
}

.logo {
    margin-bottom: 10px;
}

/* Gallery styles */
.scroll-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 20px;
}

figure {
    margin: 0 10px;
    text-align: center;
}

figcaption {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

figure img {
    width: 300px; /* Adjust as needed for responsiveness */
    height: auto;
    border-radius: 8px;
}



/* Responsive styles */
@media screen and (max-width: 768px) {
    .scroll-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    figure {
        flex: 0 0 calc(50% - 20px);
        margin: 0 10px 20px;
    }

    figure img {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    figure {
        flex: 0 0 calc(100% - 20px);
    }
}
