@import url('https://fonts.googleapis.com/css2?family=Biryani:ital,wght@0,400;0,700;1,400&family=Martel:ital,wght@0,400;0,700;1,400&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --padding: 1rem;
  --color-brand: #333333 ; /* rgb(25,121,169); #e7bdbd; */
  --color-white: #f0f0f0; /*#fff; */
  --color-black: #000000;
  --color-grey: #777;
  --color-light: #efefef;
  --color-text: var(--color-black);
  --color-text-grey: var(--color-grey);
  --color-background: var(--color-white);
  --font-family-sans: 'Biryani', sans-serif;
  --font-family-serif: 'Martel', serif;
  --font-size: 15px;
}

body, html {
  height: 100%;
  padding: 60px 0 0 ;
  background-color: var(--color-white);
  
  
  justify-content: center;
  align-items: center;
  
}

.hero {
  /* The image used */
  background-image: url("../images/no.jpg");
  /* Full height */
  height: 100%;
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media only screen and (max-device-width: 1023px) {
  .hero-body {
    background-attachment: scroll; 
  }
}

.hero .columns {
  position: absolute;
  bottom:-120px;
  left: 0%;
  height: 300px;
  width: 100%;
  margin:0;
  z-index: 500;
  background-color: rgba(33,33,33,0.8);
}

#about, #news, #gallery {background-color: #FFF;} /*  #contact*/

/* Typography */
/* Header */
h1 {
    font-size: 2.4em;
    font-style: 700;
    font-family: var(--font-family-serif);
    margin: 0.5em 0;
}

h2 {
    font-size: 1.8em;
    font-style: 700;
    font-family: var(--font-family-sans);
    margin:0.5em 0;
}

h3 {
    font-size: 1.2em;
    font-family: var(--font-family-sans);
    color: var(--color-brand);
    margin:0.5em 0;
}

h4 {
    font-size: 1em;
    font-family: var(--font-family-sans);
    color: var(--color-brand);
    margin:0.2em 0;
    font-weight: 700;
}

h1.title {
    font-size: 3.5em;
    color: var(--color-white);
}

h2.title {
    font-size: 2.5em;
    color: var(--color-white);
}
h4.title {
    font-size: 1.6em;
    color: var(--color-white);
}

/* Links Navbar */
a:link.navbar-item ,a:active.navbar-item ,a:visited.navbar-item {    
    color:rgba(54, 100, 139, 1);
    background-color: transparent;
}
a:hover.navbar-item {
    color: rgba(54, 100, 139,0.8)
}
/* Links content */
a:link.content-item ,a:active.content-item ,a:visited.content-item {    
    color:rgba(54, 100, 139,1)
}
a:hover.content-item {
    color: rgba(54, 100, 139,0.8)
}

/* Links social */
a:link.social-item ,a:active.social-item ,a:visited.social-item {
    color:rgba(54, 100, 139,1)
}
a:hover.social-item {
    color: rgba(54, 100, 139,0.8)
}


#wrapper {
  flex: 1;
}

@media screen and (max-width: 1023px) {
    
    .navbar {
        display: flex;        
    }
    .navbar-brand {
        min-width: 100%;
    }
    .navbar-menu {
        position:absolute;
        top: 125px;
        min-width: 100%;
        min-height: 100%;
        text-align: right;
        z-index: 10000
    }
    .logo {
        width: 100px;
        height: auto;
    }
}

.navbar {   
    position: fixed;
    top: 0;
    width: 100%;
    height: 125px;
    z-index: 501;
    background-color: var(--color-white); 
}

.navbar-item img {
    max-height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-left: 1em;
    width: 100px;
    height: auto;
    
}


  
.footer {
    /*color: var(--color-brand); */
}

.social {
    font-size: 1.5em;
}

.modal {
    z-index: 1000;
}
#dark img {
    margin: 10px;
}

/* Responsive image gallery rules begin*/

.image-gallery {
  display: flex; 
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 5px;
}

.image-gallery > li {
 
  height: 220px;
  cursor: pointer;
  position: relative;
}

.image-gallery::after {
  content: "";
  flex-grow: 999;
}

.image-gallery li img {
    

   width: auto;
   height: 220px;
}


.grid-container {
  columns: 4 200px;
  column-gap: 0.3rem;
  width: 100%;
  margin: 0 auto;
}
.grid-container div {
  width: 150px;
  margin: 0 0.4rem 0.1rem 0;
  display: inline-block;
  width: 100%;
  transition: all 0.25s ease-in-out;
} /*
.grid-container div:hover img {
  filter: grayscale(0);
} */
.grid-container div:hover {
  border-color: coral;
}
.grid-container div img {
  width: 100%;
 /* filter: grayscale(100%); */
  transition: all 0.25s ease-in-out;
}
.grid-container div p {
  margin: 3px 0;
  padding: 0;
  text-align: center;
  font-style: italic;
}
