/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");
@import url('https://fonts.cdnfonts.com/css/ica-rubrik-black');
@import url('https://fonts.cdnfonts.com/css/poppins');

body{
    background-image:url("Images/bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

h1 h2 h3 h4 h5 h6{
  font-family: "poppins" , sans-serif ;
  text-shadow: 2px 4px 5px;
}
p{
  font-family: Georgia, 'Times New Roman', Times, serif;
}
/* navbar */

:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  --black-color: hsl(237, 28%, 15%);
  --black-color-light: hsl(43, 24%, 15%);
  --black-color-lighten: hsl(40, 20%, 18%);
  --white-color: #fff;
  --body-color: hsl(220, 100%, 97%);

  /*========== Font and typography ==========*/
  --body-font: "Poppins", sans-serif;
  --normal-font-size: .938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  border: 2px solid red;
}

 ul {
  list-style: none;
 } 

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*

/*=============== HEADER ===============*/
.header {
  /* position: fixed; */
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--black-color);
  box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
  z-index: var(--z-fixed);
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
}

.nav__logo, 
.nav__burger, 
.nav__close {
  color: var(--white-color);
}

.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  font-weight: var(--font-semi-bold);
  }

.nav__logo i {
  font-weight: initial;
  font-size: 1.25rem;
}

.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav__burger, 
.nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity .1s, transform .4s;
}

.nav__close {
  opacity: 0;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1118px) {
 .nav__data {
   width:100%;
   padding: 0 1rem 0 1rem;
 }
  .nav__menu {
    position: relative;
    width: 100%;
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top .4s, opacity .3s;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0;
  }
  .nav__list {
    background-color: var(--black-color);
    height: 100%;
  }
}

.nav__link {
  color: var(--white-color);
  background-color: var(--black-color);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color .3s;
}

.nav__link:hover {
  background-color: var(--black-color-light);
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 0rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}
.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__item {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform .4s;
}

.dropdown__link, 
.dropdown__sublink {
  padding: 1.25rem 1.25rem 1.25rem 1.25rem;
  color: var(--white-color);
  background-color: var(--black-color-light);
  display: flex;
  align-items: center;
  column-gap: .5rem;
  font-weight: var(--font-semi-bold);
  transition: background-color .3s;
}


.dropdown__menu, 
.dropdown__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease-out;
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu, 
.dropdown__subitem:hover > .dropdown__submenu {
  max-height: 1000px;
  transition: max-height .4s ease-in;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .nav__link {
    padding-inline: 1rem;
  }
}

/* For large devices */
@media screen and (min-width: 1118px) {

  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
    margin-inline: 1rem;
  }
  .nav__toggle {
    display: none;
  }
  .nav__list {
    height: 100%;
    display: flex;
    column-gap: 3rem;
  }
  .nav__link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: .25rem;
  }
  .nav__link:hover {
    background-color: transparent;
  }

  .dropdown__item, 
  .dropdown__subitem {
    position: relative;
  }

  .dropdown__menu, 
  .dropdown__submenu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, top .3s;
  }

  .dropdown__link, 
  .dropdown__sublink {
    padding-inline: 1rem 3.5rem;
  }

  .dropdown__subitem .dropdown__link {
    padding-inline: 1rem;
  }

  .dropdown__submenu {
    position: absolute;
    left: 100%;
    top: .5rem;
  }

  /* Show dropdown menu */
  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: 5.5rem;
    pointer-events: initial;
    transition: top .3s;
  }

  /* Show dropdown submenu */
  .dropdown__subitem:hover > .dropdown__submenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    transition: top .3s;
  }
}

/* button */
.veda {
  place-content: center;
  justify-content: center; 
  align-items: center ;
  --glow-color: rgb(255, 247, 176);
  
  --glow-spread-color: rgba(255, 224, 123, 0.781);
  
  --enhanced-glow-color: rgb(255, 246, 206);
  
  --btn-color: rgb(153, 118, 41);
  
  border: 0.25em solid var(--glow-color);
  
  padding: 1em 3em;
  
  color: var(--glow-color);
  
  font-size: 15px;
  
  font-weight: bold;
  
  background-color: var(--btn-color);
  
  border-radius: 1em;
  
  outline: none;
  
  box-shadow: 0 0 1em 0.25em var(--glow-color),
  
  0 0 4em 1em var(--glow-spread-color),
  
  inset 0 0 0.75em 0.25em var(--glow-color);
  
  text-shadow: 0 0 0.5em var(--glow-color);
  
  position: relative;
  
  transition: all 0.3s;
  
  }
  .veda::after {

    pointer-events: none;
    
    content: "";
    
    position: absolute;
    
    top: 120%;
    
    left: 0;
    
    height: 100%;
    
    width: 100%;
    
    background-color: var(--glow-spread-color);
    
    filter: blur(2em);
    
    opacity: 0.7;
    
    transform: perspective (1.5em) rotateX(35deg) scale(1, 0.6);
    
    }
    
    .veda:hover {
    
    color: var(--btn-color);
    
    background-color: var(--glow-color);
    
    box-shadow: 0 1em 0.25em var(--glow-color),
    
    00 4em 2em var(--glow-spread-color), inset 0 0 0.75em 0.25em var(--glow-color);
    
    }
    
    .veda:active {
    
    box-shadow: 0 0 0.6em 0.25em var(--glow-color), 0 0 2.5em 2em var(--glow-spread-color), inset 0 0 0.5em 0.25em var(--glow-color);
    }

/* footer */
footer {
    background-color: #33322e;
    color: #fff;
    /* padding: 10px 0; */
    text-align: center;
}

.footer-container {
    width: 90%;
    margin: 60px;
    display:grid;
    flex-direction: column;
    align-items: center;
}
.footer-logo{
    margin-top: 20px;
}
.footer-links {
    margin: 20px 0;
}

.footer-links a {
    color: #bbb;
    margin: 0 15px;
    text-decoration: none;
    font-size: 16px;
}

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

.footer-social a {
    color: #bbb;
    margin: 0 10px;
    font-size: 20px;
    text-decoration: none;
}

.footer-social a:hover {
    color: #1DA1F2; /* Twitter blue for hover effect */
}

.footer-bottom {
    margin-top: 9px;
    font-size: 14px;
    color: #aaa;
}