.top-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #111827;
}

.top-text-heading {
  font-size: 2.25rem;
  /* font-family: "Playfair Display", serif; */
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .top-text-heading {
    font-size: 3rem;
  }
}

.top-text-heading-under {
    font-size: 1.125rem; 
    color: #ffedd9; 
    max-width: 42rem; 
    margin-left: auto; 
    margin-right: auto; 
}

.custom-top-link1 {
  color: #caa05f;
  font-weight: 500;
}

.custom-hover-links {
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-hover-links:hover {
  color: #af8f5e;
}

.custom-grid {
    display: grid; 
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem; 
}

@media (min-width: 640px) {
    .custom-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (min-width: 1024px) {
    .custom-grid {
        grid-template-columns: repeat(3, 1fr); 
    }
}

.custom-thumbnail {
    position: relative; 
    border-radius: 0.5rem; 
    overflow: hidden; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.custom-thumbnail:hover {
transform: scale(1.04);
}

.custom-image-overlay {
    position: absolute; 
    top: 0;    
    right: 0;  
    bottom: 0; 
    left: 0;   
    display: flex; 
    align-items: flex-end; 
    padding: 1rem; 
}

#preview {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }
        
        #preview img {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
            border: 3px solid white;
            border-radius: 14px;
        }
        
        /*#close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 40px;
            text-decoration: none;
            font-weight: bold;
            line-height: 1;
            cursor: pointer;
        }
        
        #close:hover {
            color: #ccc;
        }*/

.GH-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: white;
}

.GH-class {
    text-align: center;
    margin-bottom: 3rem;
}

.GH-Title {
    font-size: 1.875rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .GH-title {
        font-size: 2.25rem;
    }
}


.footer-section {
    background-color: #111827; 
    color: white; 
    padding-top: 4rem; 
    padding-bottom: 2rem; 
}

.social-media-icons {
    color: #A0AEC0; 
}

.social-media-icons:hover {
    color: #af8f5e; 
}

.links-container {
    border-top: 1px solid; 
    border-color: #1F2937; 
    margin-top: 3rem; 
    padding-top: 2rem; 
    text-align: left; 
    color: #6B7280; 
}

.links:hover {
    color: #af8f5e; 
}