*{
    margin: 0%;
    padding: 0%;
    font-family: Oxygen, sans-serif;
    font-weight: bold;
    box-sizing: border-box;
}
body{
    color: white;
    background-color: black;
    font-family: Oxygen, sans-serif;
}

nav {
     background-color: #e6eaef;
     padding: 10px 15px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     box-shadow: black;
     color: green;
     position: fixed;
     width: 100%;
    }

    #menu{
        display: none;
    }
.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: green;
}
.nav-links {
    display: flex;
    gap: 20px;

     }

.nav-links a {
    color: black;
    text-decoration: none;
    padding: 10px 10px;
    cursor: pointer;
    font-size: 15px;
     transition: color 0.3s;
    /* ease-in-out; */
    
    }
.nav-links a:hover {
    background-color: palegoldenrod;
    border-radius: 10px; 
     color: red;
    text-decoration: underline;
    }
 .nav-links{
    padding: 0;
    display: flex;
 }
 .drop{
    list-style: none;
 }
 .nav-links li{
    position: relative;
 }
 .nav-links li a{
    display: block;
    padding: 10px 20px;
    text-decoration: none;
 }
 .dropdown{
    position: absolute;
    top: 100%;
    left: 0;
    background: #e6eaef;
    display: none;
    list-style: none;
    padding: 0;
 }
 .dropdown li a{
    padding: 10px;
    display: block;
    font-size: 10px;
 }
 .drop:hover .dropdown{
    display: block;
 }
header {
    background: url(john-schnobrich-FlPc9_VocJ4-unsplash.jpg) no-repeat center center/cover;
    height: 400px;
    padding: 40px 20px;
    color: white;    
}

.gee{
    color: orangered;
    font-size: 60px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin-top: 30px;
    font-weight: bold;
}
.ok{
    color: white;
    font-weight: bolder;
    font-size: 60px;
}
.hed{
     margin: 0;
     padding-top: 60px;
     font-size: 45px;
    }

    .logo{
        font-size: 1.5rem;
        font-weight: bold;
        color: green;
    }

.editt {
     color: orangered;
    }
.buttons1{
    display: flex;
    justify-content: center;
    padding: 100px; 
    color: ffffff;
    font-size: larger;
    font-weight: bold;
    }
.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
        }
        
.btn {
    background-color: black;
    color: white;
    padding: 8px 30px;
    text-decoration: none;
    border-radius: 100px;
    font-size: 1.1em;
    cursor: grab;
    margin-top: 30px;
    box-shadow: 0 0 5px orangered, 0 0 15px orangered;
}

.btn:hover {
    background-color: #ffffff;
    color: black;
    box-shadow: 0 0 5px orangered, 0 0 15px orangered, 0 0 50px orangered, 0 0 200px orangered, 0 0 500px orangered, 0 0 800px orangered;

}

 .pass{
  display: flex;
  justify-content: center;
  font-size: 10px;
  font-style: italic;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin: 20px;
  
}
.abt{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 20px;
    font-size: 20px;
}


.bass{
    text-align: center;
    margin-top: 20px;
    font-size: 10px;
 }

.grid-con{
     width: 800px;
    height: 300px;
    display: grid;
    background-color: white;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    grid-gap: 10px;
    padding: 5px;
   margin: 0 auto;
   margin-top: 40px;  
   border-radius: 10px;
}

.grid-item1{
    background-image: url(box1.jpeg);
    background-size: cover;
    background-position: center;
    grid-row: 1 span;   
}
.grid-item1:hover{
    transform: scale(1.2);
    transition-duration: 1s;
}


.grid-item2{
    background-image: url(box2.jpeg);
    background-size: cover;
    background-position: center;
    grid-row: 2 span;
}

.grid-item2:hover{
    transform: scale(1.2);
    transition-duration: 1s;
}

.grid-item3{
    background-image: url(canter\ 2.jpeg);
    background-size: cover;
    background-position: center;
    grid-column: 2 span;
}

.grid-item3:hover{
    transform: scale(1.2);
    transition-duration: 1s;
}

.grid-item4{
    background-image: url(box4.jpeg);
    background-size: cover;
    background-position: center;
}

.grid-item4:hover{
    transform: scale(1.2);
    transition-duration: 1s;
}

.grid-item5{
    background-image: url(box5.jpeg);
    background-size: cover;
    background-position: center;
}

.grid-item5:hover{
    transform: scale(1.2);
    transition-duration: 1s;
}

.grid-item6{
    background-image: url(box6.jpeg);
    background-size: cover;
    background-position: contain;
}

.grid-item6:hover{
    transform: scale(1.2);
    transition-duration: 1s;
}
section{
    justify-content: center;
}
/* Main content should expand to push footer down */
.main-content {
    flex: 1;
}

/* Footer Styling */
.footer {
    background-color: #f8f9fa;
    padding: 30px 20px;
    text-align: center;
    margin-top: auto; /* Pushes footer to the bottom */
    width: 100%;
    font-size: 14px;
    color: #333;
}

/* Flexbox Container */
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

/* Branding Section */
.footer-brand h1 {
    font-size: 28px;
    margin: 0;
    color: green;
}

.footer-brand h3 {
    font-size: 16px;
    color: #ff0101;
    margin-top: 5px;
}

/* Social Media Section */
.footer-social {
    text-align: center;
}

.footer-social p {
    font-weight: bold;
    margin-bottom: 10px;
    color: black;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icons a {
    font-size: 20px;
    color: navy;
    text-decoration: none;
}
.social-icons a:hover{
    transform: rotate(360deg);
    transition-duration: 1s;
    color: orangered;
    
}

/* Useful Links */
.footer-links {
    text-align: center;
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: black;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin: 5px 0;
}
.footer-links li:hover{
    transform: scale(1.2);
    transition-duration: 1s;
}

.footer-links a {
    text-decoration: none;
    color: navy;
    font-size: 14px;
}

/* Copyright Section */
.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #ccc;
    padding-top: 10px;
    width: 100%;
}

.footer-bottom p {
    font-size: 14px;
    color: navy;
}

/* Mobile Styles (max-width: 600px) */
@media (max-width: 600px) {
    nav {
        flex-direction: column;
        align-items: center;
    }

    .nav-links {
        flex-direction: column;
        gap: 5px;
        font-size: 10px;
        display: none;
        position: absolute;
        top: 100%;
        width: 100%;
        background-color: #e6eaef;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    #menu {
        display: block;
    }

    header {
        height: 250px;
        padding: 20px;
    }

    .gee,
    .ok {
        font-size: 40px;
        padding: 10px;
        font-style: oblique;
    }

    .ok {
        font-size: 30px;
        color: whitesmoke;
    }

    .hed {
        font-size: 15px;
        padding-top: 10px;
    }

    .buttons1 {
        padding: 50px;
    }

    .buttons {
        gap: 10px;
        font-size: 8px;
    }

    .grid-con {
        width: 300px;
        height: 150px;
        grid-template-columns: repeat(4, 1fr);
        gap: 5px;
        padding: 2px;
        margin-top: 20px;
        border-radius: 5px;
    }

    .footer {
        padding: 5px 2px;
        font-size: 4px;
    }

    .footer-brand h1,
    .footer-links h4,
    .footer-social p,
    .footer-bottom p,
    .footer-links a,
    .social-icons a,
    .footer-links li {
        font-size: 8px;
    }
    .footer-brand h3 {
        font-size: 10px;
    }

    .social-icons {
        gap: 5px;
    }
}


/* Tablet Styles (601px - 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
    nav {
     background-color: #e6eaef;
     padding: 5px 10px;
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     position: fixed;
     width: 100%;
     gap: 10px;
    
    }
    .grid-con {
        width: 90%;
        grid-template-columns: repeat(4, 1fr);
    }
    .buttons1 {
        padding: 80px;
    }
    .gee, .ok {
        font-size: 50px;
    }
    .ok {
        font-size: 40px;
        color: whitesmoke;
    }
    .hed {
        font-size: 35px;
    }
    
    #menu{
        display: none;
    }
}

/* Large Screens (1025px and above) */
@media (min-width: 1025px) {
    .grid-con {
        width: 800px;
        grid-template-columns: repeat(4, 1fr);
    }

    #menu{
        display: none;
    }
}

