
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {

    color: #fff;
}

/* CTA Bar */
.cta-section {
    position: relative;
    width: 100%;
    height: 250px;
    background: url('images/background.0cbd8f3e37c5.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
}
  .swiper-button-prev,
  .swiper-button-next {
    width: 75px !important;
    height: 75px !important;
    z-index: 50 !important;
  }

  /* Optional: Adjust z-index of tape if you want buttons above/below */
  .polaroid::before,
  .polaroid::after {
    z-index: 60;
  }
.cta-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.cta-content {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 800px;
    width: 100%;
    transition: background 0.3s ease-in-out;
}
body.cta-closed .nav-logo {
    top: -65px !important; /* adjust based on how far you want it to drop */
    transition: top 0.3s ease-in-out;
  }
  
  body.cta-closed .logo {
    width: 200px !important; /* optional: shrink logo if needed */
    transition: width 0.3s ease-in-out;
  }
  .nav-logo {
    transition: top 0.3s ease-in-out;
  }
    
.cta-content h1 {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.4;
    text-transform: uppercase;
}

.cta-content h1 span {
    color: #c299a4;
}

.join-button {
    background: #c299a4;
    color: white;
    padding: 12px 25px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    display: inline-block;
    transition: background 0.3s;
}

.join-button:hover {
    background: #d9539f;
}

/* Close Button */
.cta-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 24px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.cta-close:hover {
    opacity: 0.7;
}

/* Top Bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #222;
}

.top-bar .login-btn {
    background: none;
    color: #fff;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.top-bar .nav-logo img {
    height: 50px;
}

.top-bar .search-bar {
    display: flex;
    align-items: center;
    background: #333;
    padding: 5px;
}

.top-bar .search-bar input {
    background: none;
    border: none;
    color: #fff;
    outline: none;
    padding: 5px;
}

/* Navigation */
.main-nav {
    background: #1a1a1a;
    padding: 10px 0;
    text-align: center;
}

.main-nav ul {
    list-style: none;
}

.main-nav ul li {
    display: inline-block;
    margin: 0 15px;
}

.main-nav ul li a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
}

.main-nav ul li a:hover {
    color: #ff007f;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: url('placeholder-image.jpg') no-repeat center center/cover;
}

.hero h1 {
    font-size: 42px;
    font-weight: bold;
}

.hero p {
    font-size: 20px;
}

.hero .join-now {
    background: #ff007f;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 5px;
}

/* Trending Photo Sets */
.trending {
    text-align: center;
    padding: 50px 20px;
}

/* Masonry Grid Fix - True Masonry Layout */
.masonry-grid {
    column-count: 3; /* Adjust for number of columns */
    column-gap: 20px;
}

.grid-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    break-inside: avoid;
}

/* Overlay for Metadata */
.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 5px;
}


/* Fix Tab Menu */
.tab-menu {
    display: flex;
    justify-content: space-around;
    background: #d3d3d3;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
}

.tab-menu .tab {
    flex-grow: 1;
    text-align: center;
    padding: 12px 15px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
    background: #c9c9c9;
    margin-right: 2px; /* Adjust this value for spacing */
}

.tab-menu .tab:last-child {
    margin-right: 0; /* Prevents extra spacing at the end */
}

/* Ensure the active tab is visually connected */
.tab-menu .tab.active {
    background: black;
    color: white;
    position: relative;
}

.tab-menu .tab.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 10px;
    background: #111;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

/* Fix Masonry Grid */
.masonry-grid {
    column-count: 3;
    column-gap: 10px;
}

.masonry-grid .grid-item {
    break-inside: avoid;
    margin-bottom: 10px;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
}

/* Post Card Styling */
.post-card {
    background: #252525;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Masonry Grid Post Header */
.post-header {
    padding: 10px;
    text-align: left;
    margin-bottom: 10px;
}

/* Title of the Post */
.post-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    color: #c48b9f; /* Muted pink */
    letter-spacing: 1px;
    margin-bottom: 5px;
}

/* Metadata (Time, Share, Likes) */
.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #414141;
    width: 100%;
    font-size: 14px;
    padding-left: 15px;;
}
.post-time {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777; /* Subtle gray */
    opacity: 0.8; /* Adds softer look */
}

/* Heart Count (Likes) */
.likes {
    background: #f5a9b8;
    color: white;
    padding: 5px 10px;
    margin-bottom: -2px;
}

/* Share Icon */
.share-icon {
    cursor: pointer;
    background: transparent;
    border: none;
    font-size: 16px;
    color: white;
    padding: 5px;
    display: flex;
    align-items: center;
}

/* Ensure Proper Image Display */
.post-image img {
    width: 100%;
    display: block;
}

/* Full-width carousel */
.carousel-overflow {
    width: 100vw;
    overflow: hidden;
    position: relative;
}

/* Wrapper for track movement */
#carousel-wrapper {
    display: flex;
    overflow: hidden;
    width: 100%;
    justify-content: center;
}

/* Track containing all slides */
.carousel-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
    gap: 15px; /* Space between slides */
    cursor: grab;
}

/* Individual Slide */
.carousel-item {
    flex: 0 0 55vw; /* Reduce slide width */
    height: auto; /* Keep height based on content */
    display: flex;
    align-items: stretch;
    background: #1a1a1a;
    border-radius: 0;
    overflow: hidden;
}

/* Image section */
.slide-image {
    width: 100%;
    height: 100%; /* Ensure it fills the entire height */
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures it fills the space without leaving gaps */
}

/* Content section */
.slide-content {
    width: 100%; /* Widen content */
    background: #262526;
    color: white;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 5px;
}

/* Model Name with Decorative Symbols */
.decorated {
    font-family: 'SG', sans-serif;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    display: inline-block;
    margin: 50px auto;
}
/* SWIRL DESIGNS */
.decorative {
    display: block;
    text-align: center;
    font-size: 24px;
    margin: 10px 0;
}
/* Decorative Icons Above and Below */
.decorated:before, 
.decorated:after {
    -webkit-font-smoothing: antialiased;
    font-family: 'SG';
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    speak: none;
    text-transform: none;
    color: inherit;
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 25px;
}

/* Icon Above the Name */
.decorated:before {
    content: "\e001";  
    top: -30px;  /* Adjust for spacing */
}

/* Icon Below the Name */
.decorated:after {
    content: "\e002"; 
    bottom: -30px;  /* Adjust for spacing */
}


/* Positioning */
.decorated:before {
    left: -30px; /* Adjust positioning to match SG */
}

.decorated:after {
    right: -30px;
}
/* Footer Section (Comments & Likes) */
.slide-footer {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 15px 0;
}

/* Button Styles */
.button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    background: #333;
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    gap: 5px;
}

.comment-count {
    background: #444;
}

.like-count {
    background: #d793a5;
}

.like-count i {
    color: white;
}

/* Navigation Arrows */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.carousel-button.prev {
    left: 15px;
}

.carousel-button.next {
    right: 15px;
}

.carousel-button i {
    color: white;
    font-size: 24px;
}

.carousel-button:hover {
    background: rgba(0, 0, 0, 0.8);
}
/* Navigation Arrows (Proper Styling & Positioning) */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: background 0.3s;
    outline: none;
}

.carousel-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-nav i {
    color: white;
    font-size: 22px;
}

/* Fix Left & Right Positions */
.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

/* Footer */
.footer {
    padding: 40px 20px;
    background: #fff;
    color: #000;
    font-family: 'Montserrat', sans-serif;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid #ddd;
    padding-bottom: 40px;
  }
  
  .footer-left {
    flex: 1 1 300px;
    padding-right: 30px;
    border-right: 1px solid #ddd;
  }
  
  .footer-left h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .footer-left p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: #000;
  }
  
  .newsletter {
    display: flex;
    flex-direction: column;
  }
  
  .newsletter input[type="email"] {
    padding: 6px;
    font-size: 0.85rem;
    margin-bottom: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    max-width: 250px;
    color: #000;
  }
  
  .newsletter button {
    padding: 6px;
    font-size: 0.85rem;
    border: none;
    background: #000;
    color: white;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    max-width: 150px;
    transition: background 0.3s;
    font-family: 'Montserrat', sans-serif;
  }
  
  .newsletter button:hover {
    background: #f8a6c8;
    color: #000;
  }
  
  .footer-right {
    flex: 1 1 300px;
    padding-left: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
  }
  
  .stat {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #000;
    transition: color 0.3s;
    font-family: 'Montserrat', sans-serif;
  }
  
  .stat i {
    font-size: 1.95rem;
    margin-right: 10px;
    color: #000;
    transition: color 0.3s;
  }
  
  .stat:hover,
  .stat:hover i {
    color: #f8a6c8;
  }
  
  .stat span {
    display: flex;
    flex-direction: column;
  }
  
  .stat span strong {
    font-size: 1.3rem;
    font-weight: 600;
  }
  
  .stat span em {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #888;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: -2px;
  }
  
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin: 20px 0 10px 0;
    font-family: 'Montserrat', sans-serif;
  }
  
  .footer-nav a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-nav a:hover {
    color: #f8a6c8;
  }
  
  .footer-legal {
    text-align: center;
    font-size: 0.8rem;
    font-family: 'Montserrat', sans-serif;
  }
  
  .footer-legal .footer-links {
    color: #b36b84;
    margin-bottom: 5px;
  }
  
  .footer-legal .footer-links a {
    color: #b36b84;
    text-decoration: none;
    margin: 0 5px;
  }
  
  .footer-legal .footer-links a:hover {
    text-decoration: underline;
  }
  
  .footer-legal .copyright {
    color: #555;
  }
  
  .sponsored-badge {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
  }
  
  .sponsored-badge img {
    max-width: 120px;
    margin-bottom: 5px;
  }
  
  .sponsored-badge p {
    font-size: 0.75rem;
    color: #888;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .sponsored-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 30px 0 -10px;
    flex-wrap: wrap;
  }
  
  .sponsored-inline span {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #888;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
  }
  
  .sponsored-inline img {
    height: 40px;
    width: auto;
  }
  
  .sponsored-logo-link {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 240px;
    z-index: 1;
  }
  
  .sponsored-logo-link img {
    max-width: 120px;
    height: auto;
    pointer-events: auto;
  }
  
  .footer-legal,
  .footer-nav {
    position: relative;
    z-index: 2;
  }
  

/* LOGIN POPUP OVERLAY */
.login-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;
    align-items: center;
  }

.login-popup {
    text-align: center;
}

.login-popup {
    font-size: 20px;
    cursor: pointer;
    float: right;
}

/* CLOSE BUTTON */
.close-btn {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #c299a4;
    cursor: pointer;
    transition: opacity 0.2s ease-in-out;
  }
  .close-btn:hover {
    opacity: 0.6;
  }
  
/* LOGIN BOX */
.login-content {
    background: #222;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.3);
    text-align: center;
    color: white;
    max-width: 400px;
    width: 90%;
    position: relative;
  }
  /* INPUT FIELDS */
.login-content input {
    width: 100%;
    padding: 12px;
    margin: 15px 0;
    border: 1px solid #c299a4;
    border-radius: 5px;
    background: #111;
    color: white;
    font-size: 16px;
  }

/* LOGIN BUTTON */
.login-submit {
    background: #c299a4;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
  }
  .login-submit:hover {
    background: #e85a98;
  }

/* CTA Bar */
.cta-bar {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: center;
    padding: 20px 0;
    padding: 10px;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
}
.cta-bar span {
    color: #c299a4;
}
.cta-bar .join-button {
    background: #c299a4;
    color: #fff;
    padding: 10px 20px;
    cursor: pointer;
    display: inline-block;
    margin-top: 10px;
}

/* Top Bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #222;
    padding: 10px 20px;
}
.top-bar .login-btn {
    background: #c299a4;
    color: #fff;
    padding: 8px 15px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}
.top-bar .nav-logo img {
    max-height: 75px;
}
.top-bar .search-bar {
    display: flex;
    align-items: center;
}
.top-bar .search-bar input {
    padding: 5px;
    border: 1px solid #666;
    background: #333;
    color: #fff;
}
.top-bar .search-bar i {
    margin-left: 5px;
    color: #fff;
}

/* Updated styles for Tattooed Betties Navigation with borders between links */

/* General navigation styling */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    width: 100%;
}


.nav-left, .nav-right {
    display: flex;
    gap: 0px;
}

/* Style for navigation links */
.nav-link {
    text-align: center;
    color: #302828;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease-in-out;
    position: relative;
    padding: 8px 12px; /* Reduce padding for compact layout */
}

/* Add a right border to each navigation link except the last one in each section */
.nav-left .nav-link:not(:last-child), 
.nav-right .nav-link:not(:last-child) {
    border-right: 1px solid #888; /* Light grey border */
}

.nav-link::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #c299a4 0%, #d9539f 100%);
    top: 0;
    left: 0;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}

.nav-link:hover::before {
    transform: scaleX(1);
}

.nav-link:hover {
    color: white;
    transform: scale(1.1);
}

/* Icon styling */
.nav-icon {
    font-size: 18px;
    margin-bottom: 3px;
}

/* Login Button Styling */
.login-button {
    background-color: #c98b9f;
    padding: 8px 12px;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    height: 100%;
    width: auto;
}

.login-button:hover {
    background-color: #b2788e;
}

/* Logo Styling - Centered and Overlaying Navigation */
.nav-logo {
    position: absolute;
    top: -105px; /* Adjusted for larger logo */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.logo {
    width: 260px; /* Increase logo size */
}

/* Reduce blank space below navigation and carousel */
.carousel-overflow {
    margin-top: -20px;
}

/* Adjustments for responsive view */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
    }
    .nav-left, .nav-right {
        flex-direction: column;
    }
    .nav-left .nav-link:not(:last-child),
    .nav-right .nav-link:not(:last-child) {
        border-right: none;
    }
}
/* Tabs Container */
/* Tabs Container */
.tabs-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 10px 0;
    background-color: #f0f0f0; /* Matches theme */
    border-bottom: 2px solid #ccc;
    position: relative;
}

/* Inactive Tabs */
.tab {
    background: #d3d3d3; /* Light gray */
    border: none;
    color: #222; /* Dark text */
    font-size: 16px;
    padding: 14px 25px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
    transition: all 0.3s ease-in-out;
}

/* Active Tab */
.tab.active {
    background: black; /* Black background */
    color: white !important; /* White text */
}

/* Triangle indicator under the active tab */
.tab.active::after {
    content: "";
    position: absolute;
    bottom: -10px; /* Below the tab */
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid black; /* Matches active tab background */
}

/* Prevent menu from shrinking on empty tabs */
.filler-div {
    min-height: 500px; /* Adjust height to match other sections */
    width: 980px;
    background: transparent;
}


/* Best of TB Section */
.post-user {
    padding-left: 10px;
}
.post-user a:{
    color: #e85a98;
}
.best-of {
    padding: 20px;
    background: #f8f8f8;
}
.best-of .tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}
.best-of .tab-btn {
    padding: 10px 15px;
    background: #c299a4;
    color: white;
    border: none;
    cursor: pointer;
}
.best-of .tab-content {
    display: none;
}
.best-of .tab-content.active {
    display: block;
}
.best-of .post {
    background: white;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}
.best-of .post img {
    width: 100%;
}
.best-of .post h3 {
    margin-top: 10px;
}
.best-of .read-more {
    background: #c299a4;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}
.model-name-container {
    position: relative;
    text-align: center;
    margin: 20px 0;
}

/* MODEL NAME */
.model-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 32px; /* Larger for emphasis */
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    text-align: center;
    margin-bottom: 5px; /* Tighter spacing */
}

.model-decor {
    display: block;
    margin: 0 auto;
    max-width: 100px; /* Adjust the size */
}

.model-decor.top {
    margin-bottom: -10px; /* Adjust spacing */
}

.model-decor.bottom {
    margin-top: 10px; /* Adjust spacing */
    margin-bottom: 12px;
}
.post-comments {
    padding: 10px;
    background: #f8f8f8;
    text-align: left;
}

.comment-count {
    display: block;
    font-weight: bold;
    color: #d9539f;
    cursor: pointer;
}

.comments {
    display: none;
    padding: 10px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.comments.hidden {
    display: none;
}
.share-dropdown {
    position: relative;
    display: inline-block;
}

.share-menu a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 5px 0;
}

.share-menu a:hover {
    color: #f5a9b8;
}

.hidden {
    display: none !important;
  }
  
  .share-menu {
    position: absolute;
    background: #111;
    color: white;
    padding: 10px;
    border-radius: 5px;
    top: 30px;
    right: 0;
    z-index: 1000;
  }
  

/* Style for Share Button */
.icon-share {
    display: inline-block;
    width: 24px;
    height: 24px;
    color:#393939;
    background:#707070;
    background: url('images/share-icon.svg') no-repeat center center;
    background-size: contain;
    cursor: pointer;
}

/* Add Hover Effect */
.icon-share:hover {
    opacity: 0.8;
}

/* Fix Alignment of Share Button */
.has-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #333;  /* Matches the dark bar background */
    padding: 5px;
    border-radius: 5px;
}


/* Masonry Grid for Best Of TB Section */
.best-of-tb {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.article-box {
    background: #333;
    padding: 15px;
    border-radius: 5px;
    color: white;
}

.article-box h3 {
    color: #c299a4;
    font-size: 18px;
    margin-bottom: 10px;
}

.article-meta {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 10px;
}

.article-actions {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.article-actions .like-box {
    background: #c299a4;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    display: flex;
    align-items: center;
}

.article-actions .like-box i {
    margin-right: 5px;
}

.article-photo {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
}

.view-comments {
    background: #444;
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 3px;
    cursor: pointer;
}

.load-more {
    background: #222;
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 3px;
    cursor: pointer;
    margin-top: 20px;
    text-transform: uppercase;
}


/* Masonry Grid Fix */
.best-of-tb {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.article-box {
    width: 300px; /* Ensure proper width for each item */
    background: #333;
    padding: 15px;
    border-radius: 5px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.article-box h3 {
    color: #c299a4;
    font-size: 18px;
    margin-bottom: 10px;
}

.article-meta {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 10px;
}

.article-actions {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 10px;
}

.article-actions .like-box {
    background: #c299a4;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.article-actions .like-box i {
    margin-right: 5px;
}

.article-photo {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
}

/* Share icon fix */
.share-box {
    display: flex;
    align-items: center;
    gap: 5px;
}

.share-box img {
    width: 20px;
    height: 20px;
    filter: invert(1);
}

.view-comments {
    background: #444;
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 3px;
    cursor: pointer;
}

.load-more {
    background: #222;
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 3px;
    cursor: pointer;
    margin-top: 20px;
}


/* Fixing masonry grid alignment */
.best-of-tb {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.article-box {
    width: 320px; /* Adjusted for better alignment */
    background: #222;
    padding: 15px;
    border-radius: 5px;
    color: white;
    text-align: left;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.article-box h3 {
    color: #c299a4;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

.article-meta {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 10px;
}

.article-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.article-actions .like-box {
    background: #c299a4;
    color: white;
    padding: 5px 12px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    font-weight: bold;
}

.article-actions .like-box i {
    margin-right: 5px;
}

/* Using the new share icon */
.article-actions .share-box {
    background: #444;
    padding: 5px 10px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.article-actions .share-box img {
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

/* Adjusting the post image */
.article-photo {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

.view-comments {
    background: #333;
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 3px;
    font-size: 14px;
    cursor: pointer;
}

.load-more {
    background: #111;
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 3px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
}


/* Widening the category section */
.best-of-tb-tabs {
    display: flex;
    justify-content: space-around;
    background: #ccc;
    padding: 15px;
    border-radius: 5px;
    width: 90%; /* Increased width */
    max-width: 1200px; /* Ensure it scales properly */
    margin: 20px auto; /* Center alignment */
}

/* Updating the share icon */
.article-actions .share-box {
    background: #444;
    padding: 5px 10px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.article-actions .share-box img {
    width: 20px; /* Slightly larger */
    height: 20px;
    margin-right: 5px;
}

/* Ensuring proper spacing for post items */
.article-box {
    width: 320px;
    background: #222;
    padding: 15px;
    border-radius: 5px;
    color: white;
    text-align: left;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}


/* Remove rounded corners for categories */
.best-of-tb-tabs {
    display: flex;
    justify-content: space-between;
    background: #ccc;
    padding: 15px;
    border-radius: 0; /* No rounded corners */
    width: 100%;
    max-width: 1400px; /* Wider layout */
    margin: 20px auto; /* Center alignment */
}

.best-of-tb-tabs div {
    flex-grow: 1;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    cursor: pointer;
}

.best-of-tb-tabs .active {
    background: black;
    color: white;
}

/* Proper masonry layout fix */
.best-of-tb {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
}

.article-box {
    width: 350px; /* More aligned width */
    background: #222;
    padding: 15px;
    border-radius: 0; /* No rounded corners */
    color: white;
    text-align: left;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* Ensure uniform spacing for elements */
.article-meta, .article-actions, .view-comments, .load-more {
    margin-bottom: 10px;
}

/* Fix share icon */
.article-actions .share-box {
    background: #444;
    padding: 5px 10px;
    border-radius: 0; /* No rounded corners */
    display: flex;
    align-items: center;
    cursor: pointer;
}

.article-actions .share-box img {
    width: 22px; /* Proper size */
    height: 22px;
    margin-right: 5px;
    filter: invert(1);
}


/* Content Wrapper Below Carousel */
.content-wrapper {
    max-width: 1430px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content-section {
    display: none; /* Hide all sections by default */
    width: 100%;
    min-height: 600px; /* Prevent shrinking */
    padding: 20px;
    background-color: #fff; /* Match your design */
}

/* Ensure the active tab section is always shown */
.content-section.active {
    display: block;
}

/* Keep empty sections from collapsing */
.grid-container {
    min-height: 600px; /* Keep tab size consistent */
}



/* Full-Width Tab Menu Fix */
/* Fix for active tab */
.tab-menu .tab.active {
    background: black;
    color: white;
    position: relative;
}

/* Active tab indicator (triangle under active tab) */
.tab-menu .tab.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 10px;
    background: black;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

/* Active Tab Styling */
.tab-menu .tab.active {
    background: black;
    color: white;
    position: relative;
}

/* Hover Effect */
.tab-menu .tab:hover {
    background: #222;
    color: white;
}

/* Active Tab Indicator */
.tab-menu .tab.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 10px;
    background: black;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}


/* Remove grey border from tab menu */
.tab-menu {
    display: flex;
    justify-content: space-between;
    background: transparent; /* Remove grey background */
    padding: 0; /* Remove extra padding */
    width: 100%;
    max-width: 100%;
    text-align: center;
}

/* Individual Tabs */
.tab-menu .tab {
    flex-grow: 1;
    padding: 12px 15px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

/* Active Tab Styling */
.tab-menu .tab.active {
    background: black;
    color: white;
    position: relative;
}

/* Hover Effect */
.tab-menu .tab:hover {
    background: #222;
    color: white;
}

/* Active Tab Indicator */
.tab-menu .tab.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 10px;
    background: black;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.footer {
    padding: 40px 20px;
    background: #fff;
    color: #000;
    font-family: 'Montserrat', sans-serif;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid #ddd;
    padding-bottom: 40px;
  }
  
  .footer-left {
    flex: 1 1 300px;
    padding-right: 30px;
    border-right: 1px solid #ddd;
  }
  
  .footer-left h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .footer-left p {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #000;
  }
  .newsletter {
    display: flex;
    flex-direction: column;
  }
  
  .newsletter input[type="email"] {
    padding: 6px;
    font-size: 1.35rem;
    margin-bottom: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    max-width: 250px;
    color: #000;
  }
  
  .newsletter button {
    padding: 6px;
    font-size: 1.35rem;
    border: none;
    background: #000;
    color: white;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    max-width: 150px;
    transition: background 0.3s;
    font-family: 'Montserrat', sans-serif;
  }
  
  .newsletter button:hover {
    background: #f8a6c8;
    color: #000;
  }
  
  .footer-right {
    flex: 1 1 300px;
    padding-left: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
  }
  
  .stat {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #000;
    transition: color 0.3s;
    font-family: 'Montserrat', sans-serif;
  }
  
  .stat i {
    font-size: 2.25rem;
    margin-right: 10px;
    color: #000;
    transition: color 0.3s;
  }
  
  .stat:hover,
  .stat:hover i {
    color: #f8a6c8;
  }
  
  .stat span {
    display: flex;
    flex-direction: column;
  }
  
  .stat span strong {
    font-size: 1.75rem;
    font-weight: 600;
  }
  
  .stat span em {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #888;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: -2px;
  }
  
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.21rem;
    margin: 20px 0 10px 0;
    font-family: 'Montserrat', sans-serif;
  }
  
  .footer-nav a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-nav a:hover {
    color: #f8a6c8;
  }
  
  .footer-legal {
    text-align: center;
    font-size: 1.05rem;
    font-family: 'Montserrat', sans-serif;
  }
  
  .footer-legal .footer-links {
    color: #b36b84;
    margin-bottom: 5px;
  }
  
  .footer-legal .footer-links a {
    color: #b36b84;
    text-decoration: none;
    margin: 0 5px;
  }
  
  .footer-legal .footer-links a:hover {
    text-decoration: underline;
  }
  
  .footer-legal .copyright {
    color: #555;
  }
  
  .sponsored-badge {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
  }
  
  .sponsored-badge img {
    max-width: 120px;
    margin-bottom: 5px;
  }
  
  .sponsored-badge p {
    font-size: 0.75rem;
    color: #888;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .sponsored-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 30px 0 -10px;
    flex-wrap: wrap;
  }
  
  .sponsored-inline span {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #888;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
  }
  
  .sponsored-inline img {
    height: 40px;
    width: auto;
  }
  
  .sponsored-logo-link {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 240px;
    z-index: 1;
  }
  
  .sponsored-logo-link img {
    max-width: 120px;
    height: auto;
    pointer-events: auto;
  }
  
  .footer-legal,
  .footer-nav {
    position: relative;
    z-index: 2;
  }
  
/* Social Media */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon img {
    width: 24px;
    height: 24px;
}

/* Newsletter Section */
.newsletter-section p {
    color: #ccc;
    font-size: 13px;
    margin-bottom: 10px;
}

.newsletter-form {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: 1px solid #c299a4;
    border-radius: 5px;
    background-color: #222;
    color: #fff;
}

.newsletter-form button {
    padding: 10px 20px;
    background-color: #c299a4;
    border: none;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background-color: #e85a98;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #333;
}


/* Footer Social Icons Fix */
.footer-section.follow-us {
    text-align: center;
    width: 100%;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-icon img {
    width: 30px; /* Adjust as needed */
    height: 30px;
    transition: transform 0.3s ease-in-out;
}

.social-icon img:hover {
    transform: scale(1.1);
}


/* Footer Links - Hover Pink */
.footer-section ul li a {
    color: #fff; /* Default white */
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-section ul li a:hover {
    color: #c299a4; /* Tattooed Betties pink */
}


/* Newsletter Form Button - Hover Effect */
.newsletter-form button {
    padding: 10px 20px;
    background-color: #c299a4;
    border: none;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, border 0.3s;
}

.newsletter-form button:hover {
    background-color: #111; /* Dark grey like footer */
    border: 2px solid #c299a4; /* Pink outline */
}

/* Mobile Menu Styles */
@media screen and (max-width: 768px) {
    .tab-menu {
        display: none; /* Hide the menu by default on mobile */
        flex-direction: column;
        background-color: #111;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }

    .tab-menu.active {
        display: flex; /* Show when active */
    }

    .tab-menu .tab {
        display: block;
        width: 80%;
        text-align: center;
        padding: 15px;
        background: #444; /* Default grey for inactive links */
        color: white;
        font-size: 18px;
        margin: 5px 0;
        transition: background 0.3s ease-in-out;
    }

    .tab-menu .tab.active {
        background: #c299a4; /* Pink background for active link */
        color: #111; /* Dark text for contrast */
    }

    /* Hamburger Menu Icon */
    .hamburger {
        display: block;
        position: absolute;
        top: 15px;
        left: 15px;
        cursor: pointer;
        z-index: 1100;
    }

    .hamburger div {
        width: 30px;
        height: 4px;
        background-color: white;
        margin: 6px 0;
        transition: all 0.3s ease;
    }

    /* Close Button for Mobile Menu */
    .close-menu {
        position: absolute;
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        background-color: #c299a4;
        color: white;
        font-size: 20px;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        border-radius: 5px;
    }
}
.video-thumbnail {
    position: relative;
    display: inline-block;
}

.video-thumbnail img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Play Button Styling - Similar to Attached Image */
.vjs-big-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; /* Adjust size as needed */
    height: 50px;
    background: rgba(0, 0, 0, 0.4); /* White background with transparency */
    color: rgb(255, 255, 255);
    font-size: 24px;
    font-weight: bold;
    border: 2px solid white; /* White border */
    border-radius: 10px; /* Rounded corners */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Play Icon Styling */
.vjs-big-play-button::before {
    content: '▶';
    font-size: 22px;
    color: rgb(255, 255, 255);
}

/* Hover Effect */
.vjs-big-play-button:hover {
    background: rgba(255, 255, 255, .15);
}


/* Mobile Menu - Fully Hidden Until Clicked */
@media screen and (max-width: 768px) {
    .tab-menu {
        display: none; /* Hidden by default */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.95); /* Dark background overlay */
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 1000;
    }

    .tab-menu.active {
        display: flex; /* Show when active */
    }

    .tab-menu .tab {
        display: block;
        width: 80%;
        text-align: center;
        padding: 15px;
        background: #444; /* Default grey for inactive links */
        color: white;
        font-size: 18px;
        margin: 10px 0;
        transition: background 0.3s ease-in-out;
        border-radius: 5px;
    }

    .tab-menu .tab.active {
        background: #c299a4; /* Pink background for active link */
        color: #111; /* Dark text for contrast */
    }

    /* Hide icons inside the mobile menu */
    .tab-menu .tab i {
        display: none;
    }

    /* Hamburger Menu Icon */
    .hamburger {
        display: block;
        position: fixed;
        top: 15px;
        left: 15px;
        cursor: pointer;
        z-index: 1100;
    }

    .hamburger div {
        width: 30px;
        height: 4px;
        background-color: white;
        margin: 6px 0;
        transition: all 0.3s ease;
    }

    /* Close Button (X) */
    .close-menu {
        position: absolute;
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        background-color: #c299a4;
        color: white;
        font-size: 20px;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        border-radius: 5px;
        z-index: 1200;
    }
}
.post-title,
.post-meta p,
.post-time {
    text-transform: uppercase;
    text-transform: uppercase;
}
/* Blog Post By Label */
.post-author-label {
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 13px;
    margin: 5px 0;
    letter-spacing: 0.5px;
  }
  
  .post-author {
    color: #c48b9f; /* Light pink */
    text-decoration: none;
    margin-left: 6px;
  }
  
  .post-author:hover {
    color: white;
    text-decoration: none;
  }

.post-author a:hover {
    color: white;
    text-decoration: none;
}


/* DATE & TITLE */
.post-date,
.photoset {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #aaaaaa; /* Softer gray */
    text-align: center;
}
.photographer-link {
    color: #c299a4;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
    margin-left: 4px;
}
/* PHOTOGRAPHER NAME */
.photographer-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
}
/* Style for "BY" */
.by-text {
    color: white;
}
/* Style for photographer link */
.photographer-link {
    color: #c48b9f; /* Muted pink */
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.photographer-link:hover {
    color: #c299a4; /* Lighter pink on hover */
    text-decoration: none;
}

.button.comment-count,
.button.like-count {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease-in-out;
}

.button.comment-count:hover,
.button.like-count:hover {
  color: inherit; /* keep same color on hover */
}
