/* ============================================
   36NORTH - Motion Graphics Studio
   Replica Stylesheet
   ============================================ */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Mulish', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #595959;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    color: #111111;
    line-height: 1.3;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 16px; }

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

img {
    max-width: 100%;
    height: auto;
}

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

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 14px 35px;
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-family: 'Hind', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #ffffff;
    color: #111111;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 2px solid #e0e0e0;
    border-top-color: #111111;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.preloader-logo {
    width: 280px;
    height: auto;
    max-width: 80vw;
}

.preloader-progress {
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    color: #333333;
    letter-spacing: 1px;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background-color: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
}

.preloader-bar-fill {
    width: 0%;
    height: 100%;
    background-color: #111111;
    transition: width 0.3s ease;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

#header.scrolled {
    background-color: rgba(17, 17, 17, 0.95);
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 3px;
}

.main-nav {
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu li a {
    font-family: 'Hind', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    position: relative;
    padding: 5px 0;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: #111111;
    z-index: 999;
    padding: 80px 40px;
    transition: right 0.3s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav {
    list-style: none;
}

.mobile-nav li {
    margin-bottom: 20px;
}

.mobile-nav li a {
    font-family: 'Hind', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    padding: 20px;
}

.slide-content h1 {
    color: #ffffff;
    font-size: 56px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.slide-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.slide-content .btn-primary {
    animation: fadeInUp 0.8s ease 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 20;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: #ffffff;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header.light h2 {
    color: #ffffff;
}

.underline {
    width: 60px;
    height: 2px;
    background-color: #111111;
    margin: 0 auto;
}

.section-header.light .underline {
    background-color: #ffffff;
}

/* About Section */
.about-section {
    padding: 120px 0;
    background-color: #ffffff;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content .lead {
    font-size: 20px;
    color: #333333;
    margin-bottom: 25px;
}

.about-content p {
    margin-bottom: 20px;
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background-color: #111111;
}

.services-section .section-header h2 {
    color: #ffffff;
}

.services-section .underline {
    background-color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    text-align: center;
    padding: 40px 25px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    color: #ffffff;
}

.service-card h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 15px;
}

.service-card p {
    color: #b8b8b8;
    font-size: 14px;
    line-height: 1.8;
}

/* Portfolio Section */
.portfolio-section {
    padding: 120px 0;
    background-color: #ffffff;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 25px;
    background-color: transparent;
    border: 1px solid #ededed;
    font-family: 'Hind', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #595959;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #111111;
    border-color: #111111;
    color: #ffffff;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.portfolio-item {
    overflow: hidden;
    transition: all 0.5s ease;
}

.portfolio-item.hidden {
    display: none;
}

.portfolio-image {
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
    cursor: pointer;
}

.placeholder-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.portfolio-image:hover .placeholder-img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-image:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 5px;
}

.portfolio-overlay span {
    color: #b8b8b8;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    background-color: #f9f9f9;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 200px;
}

.testimonial {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.testimonial.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
}

.testimonial-content {
    text-align: center;
}

.testimonial-content p {
    font-size: 20px;
    font-style: italic;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    justify-content: center;
    align-items: center;
}

.author-info h5 {
    color: #111111;
    margin-bottom: 5px;
}

.author-info span {
    color: #b8b8b8;
    font-size: 13px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background-color: #111111;
}

/* Clients Section */
.clients-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.clients-carousel {
    overflow: hidden;
    position: relative;
}

.clients-track {
    display: flex;
    gap: 60px;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.client-logo {
    flex-shrink: 0;
    width: 150px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-placeholder {
    font-family: 'Hind', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #b8b8b8;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.client-logo:hover .logo-placeholder {
    opacity: 1;
}

/* Venues Section - Horizontal Carousel */
.venues-section {
    padding: 0;
    background-color: #ffffff;
    overflow: hidden;
}

.venues-carousel {
    width: 100%;
    overflow: hidden;
}

.venues-track {
    display: flex;
    animation: venuesScroll 12s ease-in-out infinite alternate;
}

.venues-track:hover {
    animation-play-state: paused;
}

.venue-slide {
    flex: 0 0 33.333%;
    min-width: 33.333%;
}

.venue-slide img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    display: block;
    background-color: #1a1a1a;
}

@keyframes venuesScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-66.666%);
    }
}

/* Venues Lightbox */
.venue-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
}

.venue-lightbox.active {
    display: flex;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(50, 50, 50, 0.85);
}

.lightbox-content {
    position: relative;
    z-index: 2;
    max-width: 70%;
    max-height: 85vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 20px;
    transition: opacity 0.3s ease;
}

.lightbox-arrow:hover {
    opacity: 0.7;
}

.lightbox-arrow svg {
    width: 40px;
    height: 40px;
    fill: #ffffff;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-info {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 3;
}

.lightbox-title {
    color: #ffffff;
    font-family: 'Hind', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
}

.lightbox-counter {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Hind', sans-serif;
    font-size: 14px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 40px;
    cursor: pointer;
    z-index: 3;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.lightbox-close:hover {
    opacity: 1;
}

.venue-slide {
    cursor: pointer;
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background-color: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    padding-top: 20px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.info-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    fill: #111111;
}

.info-item h5 {
    margin-bottom: 8px;
}

.info-item p {
    color: #595959;
    font-size: 14px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ededed;
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    color: #333333;
    transition: border-color 0.3s ease;
    background-color: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #111111;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    background-color: #111111;
    border-color: #111111;
    color: #ffffff;
    align-self: flex-start;
}

.contact-form .btn-primary:hover {
    background-color: transparent;
    color: #111111;
}

/* Footer */
.footer {
    background-color: #111111;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo .logo-text {
    margin-bottom: 10px;
    display: block;
}

.footer-logo p {
    color: #b8b8b8;
    font-size: 13px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #ffffff;
    border-color: #ffffff;
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: #ffffff;
    transition: fill 0.3s ease;
}

.footer-social a:hover svg {
    fill: #111111;
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #666666;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .venue-slide {
        flex: 0 0 33.333%;
        min-width: 33.333%;
    }

    .venue-slide img {
        height: 550px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 36px; }
    h2 { font-size: 28px; }

    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .slide-content h1 {
        font-size: 36px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .venue-slide {
        flex: 0 0 50%;
        min-width: 50%;
    }

    .venue-slide img {
        height: 250px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 40px;
    }

    .about-section,
    .services-section,
    .portfolio-section,
    .testimonials-section,
    .venues-section,
    .contact-section {
        padding: 80px 0;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-filters {
        gap: 5px;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 11px;
    }

    .slider-controls {
        padding: 0 15px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }
}

/* Fade In Animation on Scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Logo Image */
.logo-img {
    height: 30px;
    width: auto;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 15px;
}

.footer-credits {
    font-size: 11px;
    color: #666666;
    margin-top: 5px;
}

/* Hero Video */
.slide-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: opacity 0.5s ease;
}

.slide.video-loaded .slide-poster {
    opacity: 0;
}

.video-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 15;
    transition: opacity 0.3s ease;
}

.slide.video-loaded .video-loader {
    opacity: 0;
    pointer-events: none;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.slide-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.video-loaded .slide-video {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 5;
}

.slide-content {
    max-width: 800px;
}

/* Service Icon Images */
.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Portfolio Images */
.portfolio-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    background-color: #2a2a2a;
}

.portfolio-image:hover img {
    transform: scale(1.1);
}

/* Venue Images */
.venue-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.venue-image:hover img {
    transform: scale(1.1);
}

/* Testimonials with Photos */
.testimonial-author {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.company-logo {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

/* Clients Section - Dark Background */
.clients-section {
    background-color: #111111;
}

.clients-section .section-header h2 {
    color: #ffffff;
}

.clients-section .underline {
    background-color: #ffffff;
}

.client-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Press Section */
.press-section {
    padding: 120px 0;
    background-color: #f9f9f9;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 60px;
}

.press-card {
    background-color: transparent;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.press-card:hover {
    transform: translateY(-5px);
}

.press-image {
    position: relative;
    padding-bottom: 140%;
    overflow: hidden;
}

.press-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    background-color: #2a2a2a;
}

.press-card:hover .press-image img {
    transform: scale(1.05);
}

.press-content {
    padding: 20px 0;
    display: none;
}

.press-date {
    font-size: 12px;
    color: #b8b8b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.press-content h4 {
    font-size: 16px;
    line-height: 1.5;
    color: #111111;
}

/* Venues Grid - always 3 columns on large screens */
@media (min-width: 1200px) {
    .venues-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Responsive Press */
@media (max-width: 1024px) {
    .press-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .press-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-author {
        flex-direction: column;
        gap: 15px;
    }

    .company-logo {
        max-width: 100px;
    }
}

@media (max-width: 480px) {
    .press-section {
        padding: 80px 0;
    }
}
