@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* 
===================
Global Variables
===================
*/

:root {
/* 
===================
Color Pallette 
===================
*/

/* Primary Color */
--clr-primary: #004225;
/* Secondary Color */
--clr-secondary: #d4af37;

/* Font sizes */
--fs-heading: clamp(20px, 5vw, 30px);
--fs-subheading: clamp(1.2rem, 3.5vw, 1.6rem);
--fs-body: clamp(14px, 2.5vw, 20px);
/* Black Color shades*/
--clr-black: #2E2F36;
--shade1: #F0F0F0;
--shade2: #E8E8E8;
--shade3: #F8F8F8;
/*Fonts */
--ff-primary: "Poppins", sans-serif;
--ff-secondary: "Lato", sans-serif;
/* font size */
font-size: 16px;
/* Global Transition */
--transition: all 0.3s ease;
}

/* 
===================
Basic Reset
===================
*/
*, ::after, ::before{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
  background-color: #f8f8f8;
  color: #222;
}

.noScroll{
    overflow: hidden;
}

.overlay{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 999;
    display: none;
}

.overlay.display{
    display: block;
}

/* 
===========================
HERO SECTION
===========================
*/
header {
  background-color: var(--clr-primary); /* NED green */
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
    width: 15vw;
    min-width: 80px;
    overflow: hidden;
}

header .logo a img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.big-screen a {
    font-size: clamp(12px, 0.1rem + 2vw, 21px);
    margin-left: 20px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

/* Side Menu */
.open-menu{
    color: #fff;
    border-style: none;
    background: none;
    font-size: clamp(18px, 0.1rem + 2vw, 21px);
    display: none;
}
.small-screen{
    display: flex;
    padding: 4em 0 0 0;
    background-color: var(--clr-primary);
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    height: 100vh;
    width: 70vw;
    border-right: 6px double var(--clr-secondary);
    transform: translateX(-100%);
    transition: var(--transition);
}

.visible{
    transform: translateX(0);
}

.close-btn-container{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 0 2em 0 0;
    margin-bottom: 2em;
}
.close-btn-container button{
    color: var(--clr-secondary);
    font-size: clamp(24px, 0.1rem + 2vw, 32px);
    border-style: none;
    background: none;
}

.small-screen a{
    font-family: var(--ff-secondary);
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    font-size: clamp(16px, 0.1rem + 2vw, 21px);
    margin-bottom: 2em;
}

.logo-side-bar{
    width: 15vw;
    min-width: 80px;
    overflow: hidden;
    margin-top: 3em;
}
.logo-side-bar-img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}


.contact{
    font-size: clamp(18px, 0.1rem + 2vw, 21px);
    color: #fff;
    display: none;
}

@media screen and (max-width: 500px) {
    .big-screen{
        display: none;
    }
    header .logo {
        margin: auto;
    }
    /* .small-screen{
        display: flex;
    } */
    .open-menu{
        display: inline-block;
    }
    .contact{
        display: inline-block;
    }
}

/* Contact Section */

.contact-section {
  padding: 4rem 1.5rem;
  background-color: #f7f9f8;
  font-family: var(--ff-secondary);
}

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

.contact-header h1 {
  font-family: var(--ff-primary);
  font-size: clamp(20px, 5vw, 30px);
  color: var(--clr-primary);
  text-align: center;
  margin-bottom: 0.5rem;
}

.contact-header p {
  font-size: clamp(14px, 0.1rem + 2.5vw, 25px);
  text-align: center;
  margin-bottom: 2.5rem;
  color: #000;
}

.appear{
  opacity: 0;
  transition: all 2s ease-in-out;
}

.appear.animate{
  opacity: 1;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  flex: 1;
}

.input-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.input-group label {
    font-size: clamp(14px, 0.1rem + 2.5vw, 18px);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--clr-primary);
}

.input-group input,
.input-group textarea {
    font-family: var(--ff-secondary);
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: clamp(14px, 0.1rem + 2.5vw, 18px);
    transition: border 0.2s ease;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: var(--clr-secondary);
  outline: none;
}

.contact-btn {
  background-color: var(--clr-primary);
  color: white;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 8px;
  font-family: var(--ff-primary);
  font-size: clamp(14px, 0.1rem + 2.5vw, 18px);
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background-color: #022d19;
}

.contact-info {
  padding: 2rem;
  border-left: 4px solid var(--clr-secondary);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  flex: 1;
}

.contact-info h2 {
  font-family: var(--ff-primary);
  font-size: clamp(18px, 0.1rem + 2.5vw, 20px);
  color: var(--clr-primary);
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 1rem;
  font-size: clamp(14px, 0.1rem + 2.5vw, 18px);
}

.contact-info a {
  color: var(--clr-secondary);
  text-decoration: none;
}

@media (min-width: 768px) {
  .contact-content {
    flex-direction: row;
  }
}

.rise{
  opacity: 0;
  transform: translateY(20%);
  transition: all 2s ease-in-out;
}

.rise.animate{
  opacity: 1;
  transform: translateY(0);
}

/* 
===================================
FOOTER SECTION
===================================
 */
.ned-footer {
  background-color: var(--clr-primary);
  color: #ffffff;
  padding: 2rem 1rem;
  font-size: 14px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left {
    width: 15vw;
    min-width: 80px;
    overflow: hidden;
}

.footer-left div img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.footer-links{
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 2em;
}

.footer-socials{
    display: flex;
    gap: 2vw;
    padding-top: 2em;
}
.footer-socials a{
    font-size: clamp(14px, 0.1rem + 3vw, 24px);
    color: #fff;
}

.footer-links a{
    font-family: var(--ff-secondary);
    font-weight: 400;
    font-size: clamp(10px, 0.1rem + 3vw, 24px);
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s;
    margin-bottom: 1em;
}

.footer-links a:hover,
.footer-socials a:hover {
  color: #d4af37;
}

.footer-bottom {
    font-family: var(--ff-secondary);
    font-weight: 400;
    font-size: clamp(10px, 0.1rem + 3vw, 14px);
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid #ffffff22;
    padding-top: 1rem;
}
