/* styles.css */

/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*Fonts for text*/
.fontfaune{
  font-family: 'Faune Regular' !important;
}

.italicfaune{
  font-family: 'Faune Italic' !important;
}

.boldfaune{
  font-family: 'Faune Bold Italic' !important;
}

/* Basic Styling */
body {
    margin: 20px auto;
    padding: 0 3%;
    position: relative;
    font-family: 'Faune', sans-serif;
    text-align: left;
    line-height: 1.5;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
   
}
p {
    font-size: 1.2rem;
}

li {
    font-size: 1.2rem;
    padding-bottom: 2%;
}
ul {
    list-style-type: none;
}
h1 {
    font-size: 3rem;
   font-family: 'Faune', serif;
  src: url('../fonts/Faune-Display_Bold_Italic.eot?') format('eot'), url('../fonts/Faune-Display_Bold_Italic.woff') format('woff'), url('../fonts/Faune-Display_Bold_Italic.ttf') format('truetype');
}

h2 {
    font-size: 2rem;
  font-family: 'Faune', serif;
}

/* Styling for anchor tag */
a {
    color: black; /* Default color */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s; /* Smooth transition for color change */
}

/* Hover effect */
a:hover {
    color: rgb(98, 0, 255); /* Change color on hover */
}

.header {
    margin: 0 auto;
    padding: 1% 5% 1%;
    ;}


footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #fff;
    text-align: center;
    padding: 10px;
    display: none; /* Initially hidden */
    
}

img {
    border-radius: 0.5%;
    width: 100%;
  }

/* 3 Column Layout Desktop*/
.container {
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.column {
    width: calc(33.33% - 3%);
    margin-bottom: 20px;
    
}

.containerForImage {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content:space-between;
    
}

.columnForImage{
    width: calc(50% - 2%);
    margin-bottom: 2rem;
    margin-top: 3%;

}


/* Home page image scale */
img.thumb {
    position:relative;
    top:0px;

}

img.thumb:hover {
    position:relative;
    scale: 98%;
}



/* Responsive Styling */
/* For screens smaller than 768px (e.g., smartphones) */
@media (max-width: 767px) {
    header {
        padding: 10px;
    }
    
    nav ul li {
        display: block;
        margin-bottom: 10px;
    }

    main {
        padding: 10px;
    }
    a {
        color: black; /* Default color */
        text-decoration: none; /* Remove underline */
        transition: color 0.3s; /* Smooth transition for color change */
        padding-left: 0;
    }
    

    p {
        font-size: 1.5rem;
    }
    li {
        font-size: 1.2rem;
    }
    h1{
        font-size: 3rem;
    }

    /* 2 Column Layout */
    .container {
        display:block;
        flex-wrap: wrap;
    }

    .column {
        width: calc(100% - 20px);
    }

    .containerForImage {
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content:space-between;
    }
    
    .columnForImage{
        width: calc(90%);
        margin-bottom: 0;
        margin-top: 0;
    
    }

}

/* For screens between 768px and 1023px (e.g., tablets) */
@media (min-width: 768px) and (max-width: 1023px) {
    .column {
        width: calc(50% - 20px);
    }
}
