body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-image: url(./images/bridget-flohe-f5Y_m2bD_Tw-unsplash.jpg);
    background-image: url(./images/chris-knight-gQq774FG-K4-unsplash.jpg);
    background-image: url(./images/pexels-anna-nekrashevich-7946559.jpg);

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    background-attachment: fixed;
}

html {
  scroll-behavior: smooth;
}



.container{
    display: grid;
    height: 130vh;
    width: 85%;
    margin: 0 auto;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: 0.3fr 0.05fr 0.7fr 1.2fr 0.4fr;
    gap: 8px;
    /* background-color: rgba(0, 0, 0, 0.1); */
    grid-template-areas: 
        "header header header"
        "nav nav nav"
        "main main main"
        "column1 column2 column3"
        "footer footer footer";

}

.container > *:not(:last-child)::after {
    content: '';
    display: block;
    height: 2px; /* Thickness of the line */
    background-color: rgba(0, 0, 0, 0.2); /* Line color */
    margin: 1rem 0; /* Add spacing above and below */
  }

header{
    border-radius: 10px;
    grid-area: header;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 15px;
}

nav{
    border-radius: 10px;
    grid-area: nav;
}

main{
    border-radius: 10px;
    grid-area: main;
}

.column1{
    background-color: rgba(30, 144, 255, 0.1);
    border-radius: 10px;
    grid-area: column1;
}       

.column2{
    background-color: rgba(30, 144, 255, 0.1);
    border-radius: 10px;
    grid-area: column2;
}

.column3{
    border-radius: 10px;
    grid-area: column3;
    background-color: rgba(30, 144, 255, 0.1);
    /* backdrop-filter: blur(10px); */
}

footer{
    /* background-color: #525252; */
    background-color: rgba(30, 144, 255, 0.1);
    border-radius: 10px;
    grid-area: footer;
}


.logo{
  
    max-width: 90%;
    height: auto;
}

/* */

.nav{
    display: flex;
    justify-content: space-around;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.2rem;
    font-size: 2rem;
}

li{
    list-style: none;
}

a{
    text-decoration: none;
    font-size: 1rem;
    color: #525252; 
    
}

a:hover{
    color: dodgerblue;
    text-decoration: solid;
    text-decoration: underline;
    /* background-color: red; */
}

#contuct{
    background-color: rgba(30, 144, 255, 0.3);
    color: #404040;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    transition: scale 0.5 ease;
    font-family: 'Smooch sans', sans-serif;
    letter-spacing: 0.2rem;
    font-size: 1.4rem;
}

#contuct:hover{
    background-color: rgba(30, 144, 255, 0.8);
    scale: 1.1;
    color: #ffff;
}

#contuct:active{
    scale: 1;
}

.toggle-btn{
    display: none;
}




nav.two {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;
    background-color: rgba(30, 144, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    max-height: 0;
    opacity: 0;
}

/* Show dropdown when "open" class is added */
.nav.two.open { 
    display: flex;
    max-height: 300px;
    opacity: 1;
} 



/* Promotional Banner Section */
.promo-banner {
    /* width: 100%; */
    /* height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #f5f5f5;  */
    padding: 2rem;
    box-sizing: border-box;
  }
  
  /* Main Content Wrapper */
  .promo-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 85%;
    max-width: 1200px;
    gap: 2rem;
  }
  
  /* Left Column: Text Content */
  .promo-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* gap: 1.5rem; */
    max-width: 500px;
  }
  
  .promo-text h1 {
    font-family: "Playwrite IN", serif;
    font-optical-sizing: auto;
    font-weight: 900;
     font-style: normal;
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
  }
  
  .promo-text p {
    font-family: 'Oswald', sans-serif; /* Your chosen font */
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    font-size: 1.6rem;
  }
  
  .cta-button {
    background-color: rgba(30, 144, 255, 0.5);
    color: #666;
    font-family: 'Smooch Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: .8rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .cta-button:hover {
    background-color: rgba(30, 144, 255, 0.8);
    scale: 1.1;
    color: #ffff;
  }
  
  /* Right Column: Video */
  .promo-video {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
  }
  
  .promo-video video {
    width: 100%;
    height: auto;
    border-radius: 15px; /* Optional: Rounded corners */
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2); /* Optional: Shadow effect */
  }




  .column1, .column2, .column3 {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    background-color: rgba(30, 144, 255, 0.1); /* Light blue background */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Column Titles */
.column1 h2, .column2 h2, .column3 h2 {
    font-family: 'Smooch sans', sans-serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

/* Images Below Text */
.column-image {
    width: 80%; /* Make the images smaller than the column */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /*Shadow effect */
}

/* Column Text */
.column1 p, .column2 p, .column3 p {
    font-family: 'Lexend Giga', sans-serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.4;
}

/* Call-to-Action Links */
.cta-link {
    font-family: 'Smooch Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    background-color: rgba(30, 144, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-link:hover {
    background-color: rgba(30, 144, 255, 0.8);
    scale: 1.1;
    color: #ffff;
}


/* Footer Styling */
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background-color: rgba(30, 144, 255, 0.1); /* Light blue background */
    border-radius: 10px;
    grid-area: footer;
    font-family: 'Lexend Giga', sans-serif;
    color: #333;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1); /* Optional shadow */
}

/* Left Column: Logo and Tagline */
.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-logo {
    width: 120px; 
    height: auto;
}

.footer-tagline {
    font-size: 0.9rem;
    color: #555;
}

/* Right Column: Copywriting */
.footer-right {
    text-align: right;
    font-size: 0.85rem;
    color: #666;
}

.footer-right p {
    margin: 0.2rem 0;
}

nav::before {
    content: '';
    display: block;
    height: 2px;
    background-color: rgba(0, 0, 0, 0.2); /* Line color */
    margin: 1.5rem 0; /* Spacing between the line and footer content */
  }
  
  


/* Social Media Links */
.social-media {
    margin-top: 1rem; 
    display: flex;
    gap: 1rem; 
    justify-content: center; 
}

.social-link {
    font-size: 1.5rem;
    color: #555; 
    transition: color 0.3s ease;
}

.social-link:hover {
    color: dodgerblue; /* Highlight color on hover */
    transform: scale(1.1); /* Slightly enlarge icon on hover */
}


/* Media query for responsiveness */
@media (max-width: 1100px) {

    nav .nav {
        display: none;
    }

    /* nav .toggle-btn {
        display: flex;
        justify-content: end;
        cursor: pointer;
    } */

    nav .two {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    nav .two li {
        padding: 0.6rem;
    }

    .promo-content {
        flex-direction: column; /* Stack columns vertically */
        align-items: center;
      }
    
      .promo-text {
        text-align: center;
        gap: 1.5rem;
      }
    
      .promo-video {
        max-width: 100%; /* Allow the video to take full width */
      }


      .container {
        grid-template-columns: 1fr;
        /* grid-template-rows: 0.3fr 0.05fr 0.7fr 1.2fr 0.4fr; */
        gap: 8px;
        grid-template-areas:
            "header"
            "nav"
            "main"
            "column1"
            "column2"
            "column3"
            "footer";
        grid-template-rows: auto;
    }

    .column1, .column2, .column3 {
        padding: 1rem;
        text-align: center;
    }

    .column-image {
        width: 90%; /* Scale images for smaller screens */
        height: auto;
    }

      footer {
        flex-direction: column;
        text-align: center;
        text-align: center;
        gap: 1rem;
    }

    .footer-left, .footer-right {
        align-items: center;
        text-align: center;
    }

    .social-media {
        justify-content: center; /* Center icons */
    }

    nav::before{
        display: none;
    }
}













































/* .nav.two {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;
    background-color: rgba(30, 144, 255, 0.1);
    border-radius: 10px;
    transform: scaleY(0); 
    transform-origin: top; 
    transition: transform 0.3s ease, opacity 0.3s ease; 
    pointer-events: none; 
}

.nav.two.open {
    transform: scaleY(1); 
    opacity: 1; 
    pointer-events: auto; 
}

@media (max-width: 950px) {
    nav .nav {
        display: none; 
    }

    .toggle-btn {
        display: flex; 
        justify-content: flex-end;
    }
} */


















