/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px; 
    margin: 0 auto;     
    padding: 0 1rem;    /* Horizontal spacing */
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

a:hover {
    color: #e63946;
}

/* Header Styles */
.tf-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 15px;
    position: relative;
    gap: 25px;
}

.bg-header {
    background-color: white;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.tf-logo img {
    height: 65px;
}

.tf-search-container {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.column-entries{
    width: 100%;
    margin-top: 67px;
}

.tf-search-input {
    width: 100%;
    padding: 10px 40px 10px 14px;
    border-radius: 50px !important;
    border: 1px solid #ff3b3b !important;
    background-color: transparent;
    color: black;
    outline: none;
    font-size: 15px;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.tf-search-input:focus {
    border-color: #ff3b3b;
}

.tf-search-input::placeholder {
    color: black;
    opacity: 1;
}

.tf-search-button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #ff3b3b;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Navigation Styles */
/* .tf-nav {
    width: 100%;
} */

.tf-mobile-menu-toggle {
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
    margin: 0 auto;
    display: block;
}

.tf-mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: black;
    position: absolute;
    left: 0;
    transition: all 0.3s;
}

.tf-mobile-menu-toggle span:nth-child(1) {
    top: 0;
}

.tf-mobile-menu-toggle span:nth-child(2) {
    top: 10px;
}

.tf-mobile-menu-toggle span:nth-child(3) {
    top: 20px;
}

.tf-mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}

.tf-mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.tf-mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
}

.tf-nav-list {
    display: none;
    flex-direction: column;
    align-items: center;
    list-style: none;
    padding: 15px 0;
}

.tf-nav-list.active {
    display: flex;
    position: absolute;
    border-radius: 15px;
    z-index: 9999;
    left: 0;
    right: 0;
    width: 100%;
    background-color: white;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    top: 70px;
}

/* .tf-nav-item {
    margin: 8px 0;
} */

.tf-nav-link {
    color: black;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: color 0.3s;
}

.tf-nav-link:hover {
    color: #ff3b3b;
}

/* Main Content Styles */
.tf-main-slider {
    height: 400px;
    min-height: 300px; 
}

/* Slider Styles */
.tf-slider {
    width: 100%;
    height: 100%;
    background-color: #f7d631; /* Default background color */
}

.tf-slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    outline: none;
}

.tf-slide-content {
    position: absolute;
    top: 50%;
    left: 24% !important;
    transform: translateY(-50%);
    text-align: left;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for readability */
    color: #fff;
    max-width: 50%;
}

.tf-quote-line {
    width: 30px;
    height: 2px;
    background-color: #fff;
    margin-bottom: 15px;
}

.tf-quote {
    font-size: 20px; /* Reduced font size to fit shorter height */
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #fff;
}

.tf-quote-author {
    font-size: 14px; /* Reduced font size */
    font-weight: 500;
    color: #fff;
}

/* Slick Slider Custom Styles */
.slick-slider {
    height: 100%;
}

.slick-list, .slick-track {
    height: 100%;
}

/* Custom arrows */
.slick-prev, 
.slick-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 10;
    transition: background-color 0.3s;
}

.slick-prev {
    left: 20px;
}

.slick-next {
    right: 20px;
}

.slick-prev:hover, 
.slick-next:hover,
.slick-prev:focus, 
.slick-next:focus {
    background-color: rgba(0, 0, 0, 0.4);
}

.slick-prev:before, 
.slick-next:before {
    font-size: 20px;
    opacity: 1;
}

/* Custom dots */
.slick-dots {
    bottom: 15px; /* Adjusted for shorter height */
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.slick-dotted.slick-slider{
    margin-bottom: 0px !important;
    height: 400px;
}

.slick-dots li {
    margin: 0 5px;
}

.slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.slick-dots li button:before {
    font-size: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
    content: '';
    opacity: 0.3;
}

.slick-dots li.slick-active button:before {
    background-color: #fff;
    opacity: 1;
}


/* collage section */
.golp-photo-grid {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    background-color: #000;
}

.golp-photo-grid__container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: minmax(150px, auto);
    gap: 2px;
    width: 100%;
}

.golp-photo-grid__item {
    overflow: hidden;
    position: relative;
}

.golp-photo-grid__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Grid layout specific positioning */
.golp-photo-grid__item--1 {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.golp-photo-grid__item--2 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.golp-photo-grid__item--3 {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
}

.golp-photo-grid__item--4 {
    grid-column: 5 / 6;
    grid-row: 1 / 2;
}

.golp-photo-grid__item--5 {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.golp-photo-grid__item--6 {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
}

.golp-photo-grid__item--7 {
    grid-column: 5 / 6;
    grid-row: 2 / 3;
}

.golp-photo-grid__item--8 {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
}

.golp-photo-grid__item--9 {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
}

.golp-photo-grid__item--10 {
    grid-column: 3 / 5;
    grid-row: 3 / 5;
}

.golp-photo-grid__item--11 {
    grid-column: 5 / 6;
    grid-row: 3 / 4;
}

.golp-photo-grid__item--12 {
    grid-column: 1 / 3;
    grid-row: 4 / 6;
}

.golp-photo-grid__item--13 {
    grid-column: 5 / 6;
    grid-row: 4 / 5;
}

.golp-photo-grid__item--14 {
    grid-column: 3 / 4;
    grid-row: 5 / 6;
}

.golp-photo-grid__item--15 {
    grid-column: 4 / 5;
    grid-row: 5 / 6;
}

.golp-photo-grid__item--16 {
    grid-column: 5 / 6;
    grid-row: 5 / 6;
}

.golp-photo-grid__item {
    overflow: hidden;
    position: relative;
}

.golp-photo-grid__item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.golp-photo-grid__item:hover::after {
    opacity: 0.4;
}

.golp-photo-grid__item .image-name {
    position: absolute;
    bottom: 4%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2; /* Above the overlay */
    width: 80%;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}


.golp-photo-grid__item:hover .image-name {
    opacity: 1;
}



/* footer */
/* Main container */
/* .tf-main-slider {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
} */

/* Top red banner */
.tf-top-banner {
    background-color: #E31E24;
    padding: 24px 16px;
    text-align: center;
    position: relative;
}

.tf-banner-title {
    color: white;
    font-weight: 300;
    font-size: 28px;
}

.tf-photo-credit {
    color: white;
    font-size: 10px;
   text-align: start;
}

/* Main content area */
.tf-main-content {
    flex: 1;
    padding: 48px 0;
    background-color: white;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.tf-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main heading */
.tf-main-heading {
    color: #E31E24;
    font-size: 28px;
    margin-bottom: 24px;
}

/* Biography section */
.tf-bio-section {
    margin-bottom: 64px;
}

.tf-bio-paragraph {
    color: #000000;
    margin-bottom: 24px;
    font-size: 14px;
}

/* Logo and social media section */
.tf-logo-social-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.tf-social-icons {
    display: flex;
    gap: 8px;
}

.tf-social-link {
    background-color: #000000b6;
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s;
}

.tf-social-link:hover {
    background-color: #a0a0a0;
}

/* Divider line */
.tf-content-divider {
    border-top: 1px solid #333;
    margin-bottom: 32px;
}

/* Footer content */
.tf-footer-content {
    display: flex;
    /* flex-direction: column; */
    padding-bottom: 40px;
    border-bottom: 1px solid black;
    justify-content: space-between;
    align-items: start;
}

/* Navigation links */
.tf-nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.tf-nav-item {
    text-decoration: none;
    color: black;
    transition: color 0.3s;
    font-size: 17px;
    font-weight: 600;
}

.tf-nav-item:hover {
    color: red;
}

.tf-language-selector {
    margin-bottom: 8px;
}

.tf-lang-active {
    color: #E31E24;
    font-size: 14px;
}

.tf-lang-inactive {
    color: black;
    margin-right: 8px;
    font-size: 14px;
}

.tf-contact-details {
    color: black;
    font-size: 14px;
    line-height: 19px;
}

.tf-contact-text {
    margin-bottom: 2px;
    color: black;
}

.tf-contact-email {
    color: #E31E24;
}

/* Copyright */
.tf-copyright-text {
    margin-top: 12px;
    text-align: start;
    color: #666;
    font-size: 14px;
}

/* csss */

/* Alphabet Navigation */
.film-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: #ffffff;
    margin-bottom: 30px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.arrow-container, .right-arrow-container {
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.left-arrow, .middle-arrow, .small-arrow, .right-arrow {
    width: 0;
    height: 0;
    border-style: solid;
}

.left-arrow {
    border-width: 10px 15px 10px 0;
    border-color: transparent #e63946 transparent transparent;
    margin-right: 5px;
}

.middle-arrow {
    border-width: 8px 12px 8px 0;
    border-color: transparent #e63946 transparent transparent;
    margin-right: 5px;
}

.small-arrow {
    border-width: 6px 9px 6px 0;
    border-color: transparent #e63946 transparent transparent;
}

.right-arrow {
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent #e63946;
}

.alphabet-nav {
    flex-grow: 1;
    text-align: center;
}

.letter-list {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.letter-list li {
    font-weight: 500;
    font-size: 50px;
}

.letter-list a {
    padding: 5px;
    display: inline-block;
    transition: transform 0.2s ease;
    font-size: 40px;
    font-weight: 900;
}

.letter-list a:hover {
    transform: scale(1.2);
    color: #e63946;
}

/* Content Area */
.content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 50px;
}

.letter-section {
    margin-bottom: 40px;
    scroll-margin-top: 100px;
}

.section-content {
    display: flex;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.big-letter {
    font-size: 120px;
    font-weight: 650;
    color: rgb(0 0 0 / 22%);
    position: absolute;
    top: -20px;
    left: 20px;
    z-index: 0;
}

.entries-container {
    display: flex;
    /* flex-wrap: wrap; */
    gap: 20px;
    width: 100%;
    z-index: 1;
    position: relative;
}

.left-entries, .middle-entries, .right-entries, .far-right-entries {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.entry-link {
    display: block;
    padding: 5px 0;
    color: black;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    margin-bottom: 20px;
    font-weight: 400 !important;

}

.entry-link:hover {
    transform: translateX(5px);
    color: #e63946;
    border-bottom-color: #e63946;
}

.bolder{
    font-weight: 600;
}

.entry-link.highlight {
    background-color: rgba(230, 57, 70, 0.1);
    color: #e63946;
    padding: 5px;
    border-radius: 4px;
}

/* contact start */

 /* Unique class names with sw- prefix */
 .sw-container {
    width: 100%;
    max-width: 800px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 50px auto;
}

.sw-header {
    color: #ff3a3a;
    margin-bottom: 50px;
    font-size: 24px;
    font-weight: normal;
    line-height: 1.4;
}

.sw-form-group {
    margin-bottom: 30px;
    position: relative;
}

.sw-form-control {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding: 10px 0;
    color: #333;
    font-size: 16px;
    outline: none;
}

.sw-form-control::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.sw-form-control:focus {
    border-bottom: 1px solid rgba(0, 0, 0, 0.6);
}

.sw-textarea {
    min-height: 80px;
    resize: vertical;
}

.custom-recaptcha-widget{
    margin-bottom: 10px;
}

.sw-submit-btn {
    width: 100%;
    padding: 15px;
    background-color: transparent;
    color: #333;
    border: 1px solid #ff3a3a;
    border-radius: 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.sw-submit-btn:hover {
    background-color: rgba(255, 58, 58, 0.1);
}

.sw-footer {
    margin-top: 100px;
    text-align: center;
}

.sw-brand a {
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: 700;
    color: #333;
}

.sw-sub-brand {
    color: #ff3a3a;
    font-size: 14px;
    margin-bottom: 10px;
}

.sw-contact-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.7);
}

.sw-separator {
    display: inline-block;
}

/* contact end */

/* bio start */
.tf-header-bio {
    font-size: 2.5rem;
    color: #ff0000;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.tf-bio-section-inner {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 20px;
    margin: 30px 0px;
}
.tf-bio-image {
    width: 260px;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
}
.tf-content {
    font-size: 1rem;
    text-align: justify;
    flex: 1;
    /* color: #857676; */
}

.tf-expo-title {
    font-size: 1.5rem;
    color: #ff0000;
    margin-bottom: 20px;
    text-transform: uppercase;
    padding-bottom: 10px;
    border-bottom: 2px solid red;
}

.tf-expo-list {
    list-style: none;
    padding: 0;
}

.tf-expo-item {
    margin-bottom: 15px;
    color: #857676;
    font-size: 1rem;
}

.tf-expo-item strong {
    color: #ff0000;
}


/* video */

.video-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .video-section-title,
  .bibliography-section-title {
    color: #e63946;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e63946;
  }
  
  .video-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .video-item-wrapper {
    display: flex;
    flex-direction: column;
  }
  
  .video-title {
    margin-top: 10px;
    font-size: 16px;
    color: #747070;
    font-weight: 500;
    line-height: 1.4;
  }
  
  .bibliography-container {
    margin-top: 20px;
  }
  
  .bibliography-item {
    margin-bottom: 5px;
    font-size: 15px;
    line-height: 1.3;
    color: #857676;
  }
  
  .bibliography-publisher {
    font-style: italic;
  }

  .video-item-wrapper iframe{
    width: 100%;
    border-radius: 10px;
  }


/* bio end */

/* details start */

.fh-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header styles */
.fh-header {
    margin-bottom: 30px;
}

.fh-title {
    color: #ff3030;
    font-size: 2.5rem;
    font-weight: normal;
    margin-bottom: 20px;
}

/* Main content styles */
.fh-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Bio section styles */
.fh-bio-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.fh-bio-text {
    flex: 1;
    min-width: 300px;
}

.fh-bio-text p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #b0b0b0;
}

.fh-bio-hidden {
    display: none;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}

.fh-bio-hidden.fh-show {
    display: block;
    opacity: 1;
    max-height: 1000px;
}

.fh-read-more {
    color: #ff3030;
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-block;
    margin-top: 10px;
    cursor: pointer;
}

.fh-read-more:hover {
    text-decoration: underline;
}

.fh-main-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.fh-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Gallery styles */
.fh-gallery {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fh-gallery-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fh-gallery-item {
    overflow: hidden;
}

.fh-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fh-gallery-item-large {
    flex: 1;
    min-width: 250px;
}

.fh-gallery-item-small {
    flex: 1;
    min-width: 150px;
}

.fh-gallery-hidden {
    display: none;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}

.fh-gallery-hidden.fh-show {
    display: block;
    opacity: 1;
    max-height: 2000px;
}

/* Load more button styles */
.fh-load-more-container {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.fh-load-more-btn {
    background-color: transparent;
    color: #ff3030;
    border: 1px solid #ff3030;
    padding: 10px 30px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.fh-load-more-btn:hover {
    background-color: rgba(255, 48, 48, 0.1);
}
/* details end */

/* Responsive Styles */
@media (max-width: 992px) {
    .entries-container {
        flex-wrap: wrap;
    }
    
    .left-entries, .middle-entries, .right-entries, .far-right-entries {
        flex-basis: 45%;
    }

    .sw-container {
        padding: 35px 30px;
    }
    
    .sw-header {
        font-size: 22px;
    }
}


@media (max-width: 576px) {
    .film-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .arrow-container, .right-arrow-container {
        padding: 0;
    }
    
    .letter-list {
        justify-content: center;
    }

    .tf-bio-section-inner{
        flex-direction: column;
    }

    .tf-bio-image {
        width: 100%;
        min-height: 200px;
    }
}

/* Animation Effects */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.letter-section {
    animation: fadeIn 0.5s ease forwards;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 30px;
    background-color: #e63946;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
    opacity: 1;
}

.back-to-top:hover {
    background-color: #c1121f;
}

@media (max-width: 768px) {
    .golp-photo-grid__container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .golp-photo-grid__item--1 {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
    }

    .tf-logo img{
        height: 30px;
    }

    .tf-logo-social-wrapper{
        margin-bottom: 30px;
    }
    
    .golp-photo-grid__item--2, 
    .golp-photo-grid__item--3, 
    .golp-photo-grid__item--4, 
    .golp-photo-grid__item--5, 
    .golp-photo-grid__item--6, 
    .golp-photo-grid__item--7, 
    .golp-photo-grid__item--8, 
    .golp-photo-grid__item--9, 
    .golp-photo-grid__item--11, 
    .golp-photo-grid__item--13, 
    .golp-photo-grid__item--14, 
    .golp-photo-grid__item--15, 
    .golp-photo-grid__item--16 {
        grid-column: auto;
        grid-row: auto;
    }
    
    .golp-photo-grid__item--10 {
        grid-column: 1 / 3;
        grid-row: 6 / 8;
    }
    
    .golp-photo-grid__item--12 {
        grid-column: 1 / 3;
        grid-row: 8 / 10;
    }

    /* 2nd page */
    .letter-list {
        gap: 5px;
    }
    
    .letter-list li {
        font-size: 50px;
    }
    .letter-list a{
        font-size: 30px;
    }
    
    .section-content {
        padding: 20px;
    }
    
    .big-letter {
        font-size: 80px;
        top: -10px;
        left: 10px;
    }
    
    .left-entries, .middle-entries, .right-entries, .far-right-entries {
        flex-basis: 100%;
    }

    .tf-slide-content{
        max-width: 70%;
        left: 10% !important;
    }

    .slick-dotted.slick-slider{
        height: 300px;
    }

    .sw-container {
        padding: 30px 20px;
    }
    
    .sw-header {
        font-size: 20px;
        margin-bottom: 30px;
    }
    
    .sw-form-group {
        margin-bottom: 25px;
    }
    
    .sw-contact-info {
        flex-direction: column;
        gap: 5px;
    }
    
    .sw-separator {
        display: none;
    }

    .tf-bio-section {
        flex-direction: column;
        align-items: center;
    }


    .tf-header {
        font-size: 2rem;
    }

    .tf-content {
        font-size: 0.9rem;
    }

    .tf-expo-title {
        font-size: 1.3rem;
    }

    .tf-expo-item {
        font-size: 0.9rem;
    }
    .video-grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .video-section-title,
    .bibliography-section-title {
        font-size: 24px;
    }

    .video-page-container {
        padding: 10px;
    }

    .fh-bio-section {
        flex-direction: column;
    }
    
    .fh-main-image {
        order: -1;
        max-width: 100%;
    }
    
    .fh-gallery-row {
        flex-direction: column;
    }
    
    .fh-title {
        font-size: 2rem;
    }

}

@media (max-width: 480px) {
    .golp-photo-grid__container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .golp-photo-grid__item--1, 
    .golp-photo-grid__item--10, 
    .golp-photo-grid__item--12 {
        grid-column: 1 / 3;
        grid-row: auto / span 2;
    }

    .tf-nav-item{
        margin: 0px;
    }
    
    .header-menu{
        margin: 10px 0px
    }

    .golp-photo-grid__item--2, 
    .golp-photo-grid__item--3, 
    .golp-photo-grid__item--4, 
    .golp-photo-grid__item--5, 
    .golp-photo-grid__item--6, 
    .golp-photo-grid__item--7, 
    .golp-photo-grid__item--8, 
    .golp-photo-grid__item--9, 
    .golp-photo-grid__item--11, 
    .golp-photo-grid__item--13, 
    .golp-photo-grid__item--14, 
    .golp-photo-grid__item--15, 
    .golp-photo-grid__item--16 {
        grid-column: auto;
        grid-row: auto;
    }

    .sw-container {
        padding: 25px 15px;
    }
    
    .sw-header {
        font-size: 18px;
        margin-bottom: 25px;
    }
    
    .sw-form-group {
        margin-bottom: 20px;
    }
    
    .sw-footer {
        margin-top: 60px;
    }
    
    .sw-brand {
        font-size: 20px;
    }


    .tf-header {
        font-size: 1.5rem;
    }

    .tf-content {
        font-size: 0.8rem;
    }

    .tf-expo-title {
        font-size: 1.1rem;
    }

    .tf-expo-item {
        font-size: 0.8rem;
    }

    .video-title {
        font-size: 13px;
      }
    
      .bibliography-item {
        font-size: 13px;
      }
    
      .video-section-title,
      .bibliography-section-title {
        font-size: 22px;
      }

      .fh-container {
        padding: 15px;
    }
    
    .fh-title {
        font-size: 1.8rem;
    }
    
    .fh-bio-text p {
        font-size: 0.9rem;
    }

    .photos-button {
        font-size: 12px;
        padding: 8px 15px;
        min-width: 100px;
    }
}

@media (min-width: 768px) {
    .tf-header {
        flex-direction: row;
        justify-content: space-between;
        /* padding: 12px 40px; */
    }

    .tf-logo {
        margin-bottom: 0;
    }

    .tf-search-container {
        margin-bottom: 0;
        order: 2;
    }

    .tf-nav {
        order: 3;
        width: auto;
    }

    .tf-mobile-menu-toggle {
        display: none;
    }

    .tf-nav-list {
        display: flex;
        flex-direction: row;
        padding: 0;
    }

    .tf-nav-item {
        margin: 0 0 0 30px;
    }

    .footer-link{
        margin: 0 0 0 0px !important;
    }

    .tf-slide-content {
        left: 40px;
        padding: 20px;
        max-width: 40%;
    }

    .tf-quote {
        font-size: 24px; /* Slightly reduced for shorter height */
    }

    .tf-quote-author {
        font-size: 16px;
    }

    /* footer */

    .tf-banner-title {
        font-size: 32px;
    }
    
    .tf-main-heading {
        font-size: 32px;
    }
    
    .tf-bio-paragraph {
        font-size: 16px;
    }
    
    .tf-footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .tf-nav-links {
        margin-bottom: 0;
    }
}

@media (min-width: 1024px) {
    .tf-logo {
        font-size: 32px;
    }

    .tf-slide-content {
        padding: 30px;
    }

    .tf-quote {
        font-size: 28px;
    }

    .tf-container {
        padding: 0 30px;
    }
    
    .tf-banner-title {
        font-size: 36px;
    }
}

@media (min-width: 1440px) {
    /* .tf-header {
        padding: 12px 80px;
    } */

    .tf-slide-content {
        padding: 40px;
    }

    .tf-quote {
        font-size: 32px; 
    }
}

/* Artistes Page Styles */
.tf-search-section {
    padding: 2rem 0;
    background-color: #f8f8f8;
}

.tf-search-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.tf-search-input {
    width: 100%;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.tf-search-input:focus {
    border-color: #666;
    outline: none;
}

.tf-alphabet-nav {
    background-color: #fff;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.letter-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.letter-list a {
    display: inline-block;
    padding: 0.5rem 1rem;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tf-artists-grid {
    padding: 2rem 0;
}

.letter-section {
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.letter-heading {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eee;
}

.tf-artists-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.entry-link {
    display: block;
    padding: 1rem;
    color: black;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    border-radius: 4px;
}

.entry-link:hover {
    background-color: #f8f8f8;
    color: #000;
    transform: translateY(-2px);
}

.entry-link.highlight {
    background-color: #fff3cd;
    border-color: #ffeeba;
}

/* Bio Page Styles */
.tf-bio-section {
    padding: 4rem 0;
}

.tf-bio-content {
    max-width: 800px;
    margin: 0 auto;
}

.tf-bio-title {
    font-size: 3rem;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.tf-bio-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.tf-bio-text p {
    margin-bottom: 1.5rem;
}

.fh-bio-hidden {
    display: none;
}

.fh-bio-hidden.fh-show {
    display: block;
}

.fh-read-more {
    display: inline-block;
    color: #666;
    text-decoration: none;
    margin-top: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.fh-read-more:hover {
    color: #000;
}

.tf-gallery {
    margin-top: 4rem;
}

.tf-gallery-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.tf-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.tf-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tf-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tf-gallery-item:hover img {
    transform: scale(1.05);
}

.fh-gallery-hidden {
    display: none;
}

.fh-gallery-hidden.fh-show {
    display: block;
}

.fh-load-more-btn {
    display: block;
    margin: 2rem auto;
    padding: 1rem 2rem;
    background-color: #fff;
    border: 2px solid #666;
    color: #666;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fh-load-more-btn:hover {
    background-color: #666;
    color: #fff;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.artist-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    margin-top:30px;
    gap: 50px;
}

.artist-title {
    color: #333;
    margin-top: 0;
}

.artist-info {
    flex: 1;
    /* padding-right: 30px; */
}

.artist-main-image {
    flex: 1;
    position: relative;
    border: 1px solid #ddd;
    border-radius: 8px;
}


.artist-main-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.bio-content {
    position: relative;
    margin-bottom: 20px;
}

.bio-short {
    overflow: hidden;
    max-height: 150px;
    position: relative;
}

.bio-full {
    display: none;
}

.bio-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
    pointer-events: none;
}

.read-more {
    display: inline-block;
    color: #e74c3c;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
}

.read-more:hover {
    text-decoration: underline;
}

.image-gallery {
    margin-top: 40px;
}

.gallery-title {
    color: #333;
    margin-bottom: 20px;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid #eee;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .copyright-overlay {
    transform: translateY(0);
}

.product-details {
    padding: 10px;
    background-color: white;
}

.product-details h3 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #333;
}

.product-details p {
    margin: 0 0 5px 0;
    font-size: 14px;
}

.metadata {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
    min-width: 150px;
}

.metadata-item {
    margin-bottom: 8px;
    display: flex;
}

.metadata-item strong {
    min-width: 120px;
    display: inline-block;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 16px;
    background-color: #666;
}

.share-section {
    margin-top: 30px;
}

.share-title {
    margin-bottom: 10px;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.twitter {
    background-color: #1DA1F2;
}

.facebook {
    background-color: #4267B2;
}

.pinterest {
    background-color: #E60023;
}

.linkedin {
    background-color: #0077B5;
}

.whatsapp {
    background-color: #25D366;
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.no-bio {
    grid-column: 1 / -1;
    text-align: center;
    padding: 30px;
    border-radius: 4px;
    min-height: 150px;
}

/* Responsive design */
@media (max-width: 768px) {
    .artist-header {
        flex-direction: column;
    }
    
    .artist-info {
        padding-right: 0;
        margin-bottom: 20px;
    }
}

/* Prevent image copying */
img {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    pointer-events: none;
}

.photos-button{
    background: #1d1d1b;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 9px 18px; min-width: 120px; text-align: center; display: inline-block;
    border-radius: 10px;
    white-space: nowrap;
}

.big-letter-cat {
  font-size: 50px;
  font-weight: 650;
  color: rgb(0 0 0 / 22%);
  position: absolute;
  top: -10px;
  left: 20px;
  z-index: 0;
}

/* Agency Description */
.agency-description {
    text-align: left;
    margin: 20px 0;
    font-size: 18px;
    line-height: 1.5;
    color: black;
    font-weight: bold;
}
        
.highlight {
    font-weight: normal;
}

.email-link {
    font-weight: bold;
    color: black;
    text-decoration: none; /* removes underline */
}

.agency-address {
    font-style: normal; /* removes italic style from <address> */
    line-height: 1.6;
    margin: 1em 0;
}

.agency-address strong {
    color: #000;
    font-weight: 600;
}

.bio-photo-gallery {
    padding: 30px 0;
    margin-bottom: 50px;
}

.bio-section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.bioi-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 10px;
    margin: 0 auto;
}

.bio-gallery-item {
    position: relative;
    overflow: hidden;
}

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

.bio-gallery-item:hover img {
    transform: scale(1.05);
}

.bio-gallery-item.large {
    grid-row: span 2;
}

.bio-category-banner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: #e63946;
    color: white;
    text-align: center;
    padding: 5px 0;
    font-weight: bold;
    text-transform: uppercase;
}

.photo-image {
    height:200px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: end;
}

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

.metadata-item .p-title{

    font-weight: 600;
    min-width: 145px;
}

@media (min-width: 576px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .gallery-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1200px) {
    .gallery-container {
        grid-template-columns: repeat(6, 1fr);
    }
}
.content-ul{
    margin-left: 15px;
}

.tf-lang-dropdown {
    position: relative;
}

.tf-lang-icon {
    width: 32px; /* Bigger size */
    height: 22px;
    vertical-align: middle;
    margin-left: 5px;
}

.tf-lang-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 5px;
}

.tf-lang-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 999;
    padding: 5px 0;
    border-radius: 4px;
    min-width: 140px;
}

.tf-lang-menu a {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.tf-lang-menu a:hover {
    background-color: #f5f5f5;
}

.tf-lang-dropdown:hover .tf-lang-menu {
    display: block;
}

.tf-lang-active {
    font-weight: bold;
    background-color: #f0f0f0;
}
.photo-image.vertical img,
.gallery-item.vertical img
{
  height: 200px !important;
  object-fit: contain !important;
}

.autocomplete-suggestions {
    position: absolute;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin-top: 5px;
    padding: 0;
    list-style: none;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    z-index: 999;
}

.autocomplete-suggestions li {
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.2s ease;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid #f1f1f1;
}

.autocomplete-suggestions li:last-child {
    border-bottom: none;
}

.autocomplete-suggestions li:hover {
    background-color: #f5f5f5;
    color: #e60000; /* Carpentier red accent on hover */
}
