/*==============================
GENERAL STYLES
==============================*/

@import url(https://fonts.googleapis.com/css?family=Anton|Maven+Pro:500,700);
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,700;1,800;1,900&display=swap');



/*******************************************/
/** Fonts **/ 
/*******************************************/

@font-face {
  font-family: 'Ambiant Variable GX';
  src: url('fonts/AmbiantVariableGX.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/*******************************************/
/** Content **/ 

/* Make sure the body takes full height */
html, body {
  height: 100%;
  margin: 0;
  font-family: 'Ambiant Variable GX';
}

/* Main content container (body wrapper) */
body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  font-size: 16px;
}

/* Regular content area */
.content {
  flex-grow: 1;  /* Takes up all available space */
  margin-top: 90px;
}

ul a{
  text-decoration: none;
  font-style: italic;
  color: black;
}


ul a:hover{
  color: #8DBF95;
}

.content a{
  text-decoration: none;
  font-style: italic;
  color: black;
}

.content a:hover{
  color: #8DBF95;
}

/** Header **/
.header {
  display: flex;
  flex-direction: column; /* stack title/logo and navbar */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background-color: white;
  border: 1px solid black;
}

/* Inside .header, logo/title row */
.header-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0px 20px;
  height: 60px;
}

.header-top img{
  height: 6vh;
}

/* Navbar */
.navbar {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 0px 20px;
  border-top: 1px solid black;
  background-color: white;
  gap: 3%;
  font-size: 1.2rem;
  height: 30px;
}

.navbar a {
  text-decoration: none;
  color: black;
  cursor: pointer;
}

.navbar a:hover {
  text-decoration: none;
  color: #8DBF95;
}


/***** Footer *****/
/* Footer styles */
.site-footer {
  background-color: white;
  padding: 30px 20px;
  text-align: center;
  font-size: 1rem;
}

/* Footer navigation */
.footer-nav {
  margin-bottom: 20px;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.footer-menu li a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-menu li a:hover {
  color: #8DBF95;
}

/* Footer info */
.footer-info {
  font-size: 0.8rem;
  color: black;
}

.footer-logo img {
  width: 30%;
  max-width: 200px;
}

/* Responsive tweaks */
@media (max-width: 480px) {
  .footer-menu {
    flex-direction: column;
    gap: 10px;
  }
  .navbar {
    font-size: 1rem;
  }
  .footer-info {
    font-size: 0.6rem;
  }
  .site-footer {
    font-size: 0.8rem;
  }
}

/** Images **/
.full-width-image {
    width: 100vw;      /* 100% of the viewport width */
    height: auto;      /* maintain aspect ratio */
    display: block;    /* removes bottom spacing if inside inline elements */
}

.small-image{
    width: 15%;
    min-width: 80px;
}

.single-image {
  width: 90%;
  max-width: 900px;
  margin: 10px auto;
  box-sizing: border-box;
} 

.single-image-portrait {
  width: 50%;
  max-width: 300px;
  margin: 10px auto;
  box-sizing: border-box;
} 




.small-image2{
    width: 15%;
    min-width: 80px;
    margin-left: auto;
    margin-right: auto;
}

.image-frame {
  flex: 1 1 50%;         /* takes up 50% of the container */
  min-height: 70vh;
  position: relative;
  overflow: hidden;
}

.image-frame img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-frame2 {
  flex: 1 1 100%;         /* takes up 100% of the container */
  min-height: 70vh;
  position: relative;
  overflow: hidden;
}

.image-frame2 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.logo-icon{
  top: -30px !important;
  right: 15% !important;
  left: auto !important;
  width: 30% !important;
  max-width: 200px !important;
  object-fit: contain !important;
}

.image-frame2 .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
  width: 80%;
}



/** content boxes **/
.content-container1{
    width: 100vw;       /* full viewport width */
    min-height: 70vh;   /* minimum height */
    padding: 10%;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    align-items: center;
    font-size: 2.3rem;
}

.content-container2{
    width: 100vw;       /* full viewport width */
    min-height: 70vh;   /* minimum height */
    padding: 10%;
    box-sizing: border-box;
    display: flex;
    font-size: 1.4rem;
    flex-direction: column;
    gap: 10px;
}

.content-container3{
    width: 100vw;       /* full viewport width */
    min-height: 70vh;   /* minimum height */
    box-sizing: border-box;
    display: flex;
    font-size: 1.4rem;
    flex-direction: row;
    gap: 10px;
}

.content-container4{
    flex: 1 1 50%;
    min-height: 70vh;    
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 5%;
}

.content-container5{
    flex: 1 1 50%;  
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 10px;
    padding: 5%;
}

.content-container5 img{
  width: 20%;
  min-width: 80px;
}

.content-container6{
    width: 100vw;       /* full viewport width */
    min-height: 70vh;   /* minimum height */
    padding: 0% 10%;
    box-sizing: border-box;
    display: flex;
    font-size: 1.4rem;
    flex-direction: column;
    gap: 10px;
}

.content-container7{
    width: 100vw;       /* full viewport width */
    min-height: 70vh;   /* minimum height */
    padding: 0% 10%;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.content-container7 img{
  width: 50%;
  min-width: 80px;
}


@media (max-width: 480px) {
  .content-container1 {
    font-size: 1.4rem;
  }
  .content-container2, .content-container3, .content-container4, .content-container6 {
    font-size: 1rem;
  }

}

/*** Grid ***/

.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4%;
  padding: 4%;
}

.grid-item {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: pointer;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.3s ease;
}

.grid-item .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
  width: 80%;
}

.subtitle{
    font-size: 1rem;
}


.grid-item:hover .title {
  color: #8DBF95;
}

@media (max-width: 480px) {
  .grid-item .title {
    font-size: 1rem;
  }
  .subtitle{
    font-size: 0.6rem;
  }

}


/*******************************************/
/** Land **/ 
/*******************************************/

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 400px);
  gap: 10px;
  justify-content: center; 
  align-items: center;
}

.landscape-img {
  width: 400px;
  height: auto;
  display: block;
}

.portrait-img {
  height: 400px;
  width: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .image-grid {
    grid-template-columns: repeat(auto-fit, 300px);
  }
  .landscape-img {
    width: 300px;
  }
  .portrait-img {
    height: 300px;
  }
}


/* Cavanei */
.three-image-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

.three-image-row img {
  width: 100%;
  height: auto;
  display: block;
}


/* Artists */

.artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 150px);
  gap: 5%;
  justify-content: center;
  margin-bottom: 30vh;
  margin-top: 5%;
}

.artist-card {
  width: 150px;
  text-align: center;
  cursor: pointer;
}

.artist-card a{
  text-decoration: none;
}
.artist-card .artist-name {
  margin-top: 8px;
  font-size: 0.8rem;
  color: black;
  transition: color 0.3s ease; /* Moved here for smooth hover in/out */
}

.artist-card:hover .artist-name {
  color: #8DBF95;
}

.artist-card img {
  width: 100%;
  height: auto;
  display: block;
}


