* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Header Section */
header {
    background-image: url(/img/seven_1.webp); 
    background-size: cover;
    background-position: center;
    height: 500px;
    color: white;
    position: relative;
    padding: 20px 50px;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Navbar */
.navbar {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    font-size: 1.8em;
    font-weight: bold;
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.1em;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffcc00;
}

/* Header buttons */
.header-buttons button {
    padding: 8px 16px;
    border: none;
    margin-left: 10px;
    cursor: pointer;
    border-radius: 20px;
    font-weight: bold;
}

.btn-login {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-signup {
    background-color: #ff6600;
    color: white;
}

.icon-container{
    display: none;
}

.header-text {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 100px;
}

.header-text h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.header-text p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.explore-btn {
    text-decoration: none;
    padding: 12px 30px;
    background-color: #ff6600;
    color: white;
    border-radius: 30px;
    font-size: 1.1em;
    transition: background-color 0.3s;
}

.explore-btn:hover {
    background-color:#e65c00;
}

/* About Section */

.about-section {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    background-color: #f4f4f4; 
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    font-family: Arial, sans-serif;
    line-height: 1.8;
    color: #333;
    
}
  
.about-section h2 {
    text-align: center;
    color: #222;
    margin-bottom: 20px;
    font-size: 2em;
}
  
.about-section p {
    margin-bottom: 15px;
    text-align: justify; 
    font-size: 1.1em;
}
  
.about-section strong {
    color: #007BFF; 
}

/* Gallery Section */

#gallery {
    padding: 50px 20px;
    background-color: #f5f5f5;
    text-align: center;

}

#gallery h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #333;
}

#gallery p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #555;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
    transition: all 0.5s ease;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: white;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s;
}

.gallery-item h3 {
    padding: 10px 0;
    color: #333;
    font-size: 1.2em;
}

.gallery-item:hover img {
    transform:scale(1.1);
}

/* Main Section */
.main-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 50px;
}
  
.main-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
    color: #333;
}
  
.wonder {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
 
.wonder img {
    width: 40%;
    height: auto;
    object-fit: cover;
}
  
.wonder-text {
    padding: 20px;
    width: 60%;
}
  
.wonder-text h3 {
    margin-top: 0;
    font-size: 1.8em;
    color: #007BFF;
}
  
.wonder-text p {
    font-size: 0.8em;
    color: #555;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 60px 20px;
    background: #f5f5f5;
    text-align: center;
    margin: 0% 13%;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #333;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.contact form {
    max-width: 400px;
    width: 100%;
}

.contact form input,
.contact form textarea {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.contact form button {
    background: #007BFF;
    color: white;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact form button:hover {
    background: #0056b3;
}

.contact-info {
    max-width: 400px;
    text-align: left;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 16px;
    margin: 8px 0;
    color:#333;
}

/* Footer Section */
footer {
    background: #333;
    color: white;
    padding: 20px 10px;
    text-align: center;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
}

.footer-container p {
    margin: 10px 0;
    font-size: 16px;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color:#00bcd4;
}

/* Media Query */
@media (max-width: 768px) 
{
    header {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .logo {
        font-size: 26px;
        margin-bottom: 10px;
    }

    nav ul {
        display: none;
    }

    .header-buttons {
        margin-top: 15px;
    }

    .header-buttons button {
        margin: 5px 0;
        width: 100px;
    }

    .header-text h1 {
        font-size: 23px;
    }

    .header-text p {
        font-size: 14px;
    }

    .explore-btn {
        padding: 10px 20px;
    }

    /* Place Section */

    .wonder {
        flex-direction: column;
    }
    
    .wonder img, .wonder-text {
        width: 100%;
    }
    
    .wonder-text {
        padding:15px;
    }

    #about ,
    #gallery{
       margin: 5%
    }
}

@media (max-width: 480px) 
{
    .logo {
        font-size: 22px;
        width: 100%;
    }

    .header-text h1 {
        font-size: 13px;
    }

    .header-text p {
        font-size: 8px;
    }

    .header-buttons{
        display: none;
    }
    
    .icon-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        position: relative;
      }
      
      .icon {
        width: 25px;
        height: 25px;
        background-color: transparent;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        transition: transform 0.2s, background-color 0.3s;
        cursor: pointer;
      }

      #sign-in{
        position: relative;
        bottom: 10px;
      }
      
      #sign-up{
        position: relative;
        left: 25px;
        top: 3px;
      }

      .icon svg {
        color: #ffffff;
      }

       #sign-in-p{
        font-size: 10px;
        width: 125%;
        position: relative;
        left: 5px;
        bottom: 10px;
      }
      
      #sign-up-p{
        font-size: 10px;
        width: 125%;
        position: relative;
        left: 25px;
        top: 4px;
       
      }
    
      .icon:hover {
        transform: scale(1.1);
        background-color:#ececec;
    }

    .explore-btn {
        padding: 8px 16px;
        font-size:14px;
    }

    .contact{
        margin-left: 10%;
    }
}

@media (max-width: 325px) 
{
    header {
        padding: 10px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo {
        font-size: 20px;
        margin-bottom: 10px;
        padding-right: 60px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        padding: 0;
        margin: 10px 0;
    }

    nav ul li {
        margin: 5px 0;
    }

    nav ul li a {
        font-size: 14px;
    }

    .header-buttons{
        display: none;
    }
    
    .icon-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        position: relative;
      }
      
      .icon {
        width: 25px;
        height: 25px;
        background-color: transparent;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        transition: transform 0.2s, background-color 0.3s;
        cursor: pointer;
      }

      #sign-in{
        position: relative;
        right: 20px;
        bottom: 10px;
      }
      
      #sign-up{
        position: relative;
        left: 0px;
        top: 8px;
      }

      .icon svg {
        color: #ffffff;
      }

       #sign-in-p{
        font-size: 10px;
        width: 125%;
        position: relative;
        left: -20px;
        bottom: 10px;
      }
      
      #sign-up-p{
        font-size: 10px;
        width: 140%;
        position: relative;
        left: 3px;
        top: 4px;
       
      }
    
      .icon:hover {
        transform: scale(1.1);
        background-color:#ececec;
    }
    
    .header-text {
        margin-top: 35px;
    }

    .header-text h1 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .header-text p {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .explore-btn {
        padding: 8px 16px;
        font-size:14px;
    }

    main{
        width: 100%;
    }

    footer{
        width: 100%;
    }
}