/* ============================================
   PCS Events - Main Stylesheet
============================================ */

/* CSS Variables */
:root {
    --primary: #000;
    --accent: #c9a961;
    --accent-hover: #b8954d;
    --light: #111;
    --dark: #000;
    --text: #f0f0f0;
    --text-light: #aaa;
    --white: #fff;
    --bg: #000;
    --bg-alt: #0a0a0a;
    --bg-card: #111;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.3);
    --shadow-md: 0 5px 30px rgba(0,0,0,0.4);
    --shadow-lg: 0 15px 40px rgba(0,0,0,0.5);
    --transition: 0.3s ease;
    --radius-sm: 8px;
    --radius-md: 15px;
    --radius-lg: 30px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--text);
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.3px;
    overflow-x: hidden;
    background-color: var(--bg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.3;
    color: var(--white);
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

/* ============================================
   NAVIGATION
============================================ */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,0.95);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    padding: 12px 0;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    height: 45px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color var(--transition);
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-phone {
    background: var(--accent);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: transform var(--transition), background var(--transition);
    white-space: nowrap;
    font-size: 0.9rem;
}

.nav-phone:hover {
    transform: scale(1.05);
    background: var(--accent-hover);
}

/* Mobile Menu Toggle */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    margin: -10px;
    z-index: 1001;
    background: none;
    border: none;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}

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

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

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

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 69px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.98);
    padding: 20px;
    z-index: 999;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-nav.active {
    display: block;
    transform: translateX(0);
}

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

.mobile-nav li {
    border-bottom: 1px solid #222;
}

.mobile-nav li:last-child {
    border-bottom: none;
}

.mobile-nav a {
    display: block;
    padding: 15px 0;
    color: var(--text);
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a:active {
    color: var(--accent);
}

.nav-phone-mobile {
    display: block;
    text-align: center;
    background: var(--accent);
    color: white;
    padding: 15px;
    border-radius: var(--radius-lg);
    margin-top: 15px;
    font-weight: 600;
}

/* HERO MOBILE */
.hero {
    margin-top: 60px;
    justify-content: center;
    text-align: center;
    /* Desktop/tablet: make hero fill viewport minus fixed nav */
    position: relative;
    height: calc(100vh - 60px);
    min-height: 520px;
    width: 100vw;
    max-width: 100%;
    overflow: hidden;
}

.hero-content {
    position: absolute;
    max-width: 90%;
    padding: 20px;
    right: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.hero-divider {
    margin: 0 auto 25px;
}

.hero-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.hero-tagline {
    font-size: 0.75rem;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.1rem;
}

.hero-desc {
    font-size: 0.95rem;
}

.hero-scroll {
    display: none;
}
/* ============================================
   BUTTONS
============================================ */
.btn {
    display: inline-block;
    padding: 14px 35px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
}

.btn-outline:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.btn-primary-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-primary-outline:hover {
    background: var(--accent);
    color: white;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.75rem;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.btn-small:hover {
    background: rgba(255,255,255,0.25);
}

/* ============================================
   SECTIONS
============================================ */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: var(--text);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}

.divider {
    width: 80px;
    height: 3px;
    background: var(--accent);
    margin: 20px auto;
}

/* ============================================
   SERVICES GRID
============================================ */
.services {
    background: var(--light);
}

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

.service-card {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
    transition: background var(--transition);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.1);
    z-index: 1;
}

.service-card:hover .service-card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.25) 100%);
}

.service-card-content {
    position: relative;
    z-index: 2;
    padding: 25px;
    width: 100%;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.service-card p {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-card .learn-more {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.service-card-static {
    cursor: default;
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card-static:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.service-card-static .learn-more {
    display: none;
}

.service-card-static:hover .service-card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.25) 100%);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent);
}

/* Entertainment page: remove icons the client dislikes */
.page-entertainment .service-icon { display: none !important; }
.page-entertainment .social-icons { display: none !important; }

.service-card.bordered {
    border-left: 4px solid var(--accent);
    text-align: left;
    padding: 40px 30px;
    aspect-ratio: auto;
    min-height: 280px;
    background: var(--bg-card);
}

.service-card.bordered::before {
    display: none;
}

.service-card.bordered .service-icon,
.service-card.bordered h3,
.service-card.bordered p {
    position: relative;
    z-index: 1;
    color: var(--text);
    text-shadow: none;
}

.service-card.bordered h3 {
    color: var(--white);
}

.service-card.bordered p {
    color: var(--text-light);
}

/* ============================================
   ABOUT SECTION
============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.owner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.owner-photo {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
    border: 6px solid var(--accent);
}

.owner-info {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.owner-info strong {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 5px;
}

.owner-info span {
    font-size: 1rem;
    color: var(--text-light);
}

.about-content h2 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    color: var(--text);
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 18px;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 30px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    font-family: 'Cormorant Garamond', serif;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   EVENTS GRID
============================================ */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
}

.event-tag {
    background: var(--light);
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 500;
    color: var(--text);
    transition: all var(--transition);
    font-size: 0.9rem;
}

.event-tag:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}

.event-tag.shadowed {
    background: var(--bg-card);
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--accent);
    padding: 18px 20px;
}

/* ============================================
   VENUES SECTION
============================================ */
.venues {
    background: var(--primary);
    color: white;
    overflow: hidden;
    padding: 50px 0;
}

.venues .section-header {
    margin-bottom: 20px;
}

.venues .section-header h2 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.venues-scroller,
.clients-scroller {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 15px 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) rgba(255,255,255,0.1);
}

.venues-scroller::-webkit-scrollbar,
.clients-scroller::-webkit-scrollbar {
    height: 6px;
}

.venues-scroller::-webkit-scrollbar-track,
.clients-scroller::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.venues-scroller::-webkit-scrollbar-thumb,
.clients-scroller::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}

.venue-card {
    flex: 0 0 200px;
    scroll-snap-align: start;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: transform var(--transition), background var(--transition);
    cursor: pointer;
}

.venue-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.venue-card-image {
    width: 100%;
    height: 100px;
    object-fit: cover;
    background: rgba(255,255,255,0.05);
}

.venue-card-content {
    padding: 10px 12px;
}

.venue-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.venue-card p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.4;
}

/* Venue highlights (catering page) */
.venue-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.venue-highlights .venue-card {
    flex: none;
    background: #111;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

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

.venue-highlights .venue-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.venue-highlights .venue-card-content {
    padding: 25px;
}

.venue-highlights .venue-card h3 {
    color: #f0f0f0;
    margin-bottom: 10px;
}

.venue-highlights .venue-card p {
    color: var(--text);
    font-size: 0.95rem;
}

/* Locations grid (catering page) */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.location-card {
    text-align: center;
    padding: 30px;
    background: #111;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.location-card h3 {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.location-card p {
    color: var(--text);
    line-height: 1.8;
}

/* ============================================
   CLIENTS SECTION
============================================ */
.clients {
    background: var(--primary);
    color: white;
    overflow: hidden;
    padding: 60px 0;
}

.clients .section-header h2 {
    color: white;
}

.client-card {
    flex: 0 0 180px;
    scroll-snap-align: start;
    text-align: center;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition);
    cursor: pointer;
}

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

.client-card-image {
    width: 100%;
    height: 140px;
    object-fit: cover;
    object-position: top;
}

.client-card-content {
    padding: 12px;
}

.client-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 4px;
}

.client-card p {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* ============================================
   GALLERY SECTION
============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

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

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

.gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-cta {
    text-align: center;
    margin-top: 40px;
}

.gallery-cta p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1rem;
}

/* Artist gallery (entertainment page) */
.artist-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.artist-gallery .gallery-item {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 8px;
}

.artist-gallery .gallery-item:first-child {
    grid-column: span 1;
    grid-row: span 1;
}

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

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

/* Video gallery (entertainment page) */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.video-item {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.video-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-caption {
    text-align: center;
    margin-top: 15px;
    font-family: 'Raleway', sans-serif;
    color: var(--text-light);
    font-size: 0.9rem;
}

.video-wrapper {
    margin-bottom: 20px;
}

/* ============================================
   INSTAGRAM SECTION
============================================ */
.instagram-section {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid #ddd;
}

.instagram-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.instagram-header h3 {
    font-size: 1.3rem;
    color: var(--text);
}

.instagram-follow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 25px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform var(--transition), box-shadow var(--transition);
}

.instagram-follow:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(225, 48, 108, 0.4);
}

.instagram-feed-widget {
    min-height: 350px;
}

.instagram-feed-widget iframe {
    min-height: 350px;
}

.instagram-note {
    text-align: center;
    margin-top: 15px;
    color: var(--text-light);
}

.instagram-note a {
    color: var(--accent);
}

/* ============================================
   CONTACT SECTION
============================================ */
.contact {
    background: var(--light);
}

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

.contact-info h3 {
    font-size: 1.6rem;
    color: var(--text);
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
}

.contact-item .icon {
    font-size: 1.5rem;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1rem;
}

.contact-item p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px;
    border: 1px solid #333;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition);
    background: var(--bg-card);
    color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--accent);
}

.contact-form textarea {
    height: 130px;
    resize: vertical;
}

.contact-form button {
    width: 100%;
    padding: 15px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background var(--transition);
}

.contact-form button:hover {
    background: var(--accent-hover);
}

/* ============================================
   SOCIAL ICONS
============================================ */
.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    text-decoration: none;
    transition: all var(--transition);
    border: 2px solid #444;
}

.social-icons a:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: translateY(-3px);
}

/* ============================================
   INTRO SECTION (Subpages)
============================================ */
.intro {
    background: var(--light);
}

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

.intro-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 22px;
}

.intro-content p:first-of-type {
    font-size: 1.2rem;
    color: var(--text);
    font-weight: 500;
}

/* ============================================
   CTA SECTION
============================================ */
.cta-section {
    background: var(--primary);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 25px;
    font-size: 1.05rem;
    opacity: 0.9;
    line-height: 1.8;
}

.cta-section .btn {
    background: var(--accent);
    color: white;
}

.cta-section .btn:hover {
    background: var(--accent-hover);
    color: white;
}

.cta-section.light {
    background: var(--light);
    color: var(--text);
}

.cta-section.light h2 {
    color: var(--text);
}

.cta-section.light p {
    color: var(--text-light);
}

/* ============================================
   FOOTER
============================================ */
footer {
    background: var(--dark);
    color: white;
    padding: 50px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 35px;
}

.footer-logo {
    height: 55px;
    width: auto;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background var(--transition);
}

.social-links a:hover {
    background: var(--accent);
}

.footer-links h4 {
    margin-bottom: 18px;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.footer-bottom p {
    margin-bottom: 8px;
}

/* ============================================
   MODAL LIGHTBOX
============================================ */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.modal-image {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.modal-info {
    text-align: center;
    color: white;
    margin-top: 20px;
    max-width: 600px;
}

.modal-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 8px;
}

.modal-info p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: color var(--transition), transform var(--transition);
    line-height: 1;
    padding: 10px;
}

.modal-close:hover {
    color: var(--accent);
    transform: scale(1.1);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), transform var(--transition);
}

.modal-nav:hover {
    background: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

.modal-nav.prev {
    left: 20px;
}

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

.modal-counter {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-top: 15px;
}

/* ============================================
   VIDEO LOGO INLINE WITH HEADING
============================================ */
.about-header-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.video-logo-col {
    display: flex;
    justify-content: center;
}

.video-logo-inline {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.about-header-row h2 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    color: var(--text);
    margin: 0;
}

/* ============================================
   RESPONSIVE - TABLET
============================================ */
@media (max-width: 992px) {
    section {
        padding: 60px 0;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .owner-photo {
        max-width: 300px;
    }

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

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

    .venue-card {
        flex: 0 0 180px;
    }

    .client-card {
        flex: 0 0 160px;
    }

    .about-header-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
        margin-bottom: 30px;
    }

    .video-logo-inline {
        max-width: 350px;
    }

    .venue-highlights,
    .locations-grid {
        grid-template-columns: 1fr;
    }

    .venue-highlights .venue-card img {
        height: 200px;
    }

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

/* ============================================
   RESPONSIVE - MOBILE
============================================ */
@media (max-width: 768px) {
    .nav-links,
    .nav-phone {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .logo-img {
        height: 40px;
    }

    nav {
        padding: 10px 0;
    }

    /* HERO MOBILE - WIDTH-LOCKED, NO HEIGHT CROP */
    .hero {
        height: auto !important;        /* let media define height */
        min-height: 0 !important;
        margin-top: 60px;
        justify-content: center;
        text-align: center;
        position: relative;
        width: 100%;               /* avoid 100vw gaps */
        max-width: 100%;
        overflow: hidden;          /* prevent stray whitespace */
        padding: 0 !important;     /* remove extra section padding */
        margin-bottom: 0 !important;
    }

    /* Subpages: also remove fixed height to avoid cropping */
    .hero.hero-subpage {
        height: auto !important;
        min-height: 0 !important;
    }

    .hero.hero-subpage {
        height: calc(60vh - 60px);
        height: calc(60svh - 60px);
        min-height: 300px;
    }

    .hero-overlay {
        background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    }

    /* Move hero text/buttons below media on mobile */
    .hero-overlay { display: none !important; }

    .hero-content {
        position: static !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 16px 16px !important;
        margin: 0 auto !important;
        text-align: center !important;
        z-index: auto !important;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 480px;
        margin: 10px auto 0;
        gap: 10px;
    }

    .hero-divider {
        margin: 0 auto 25px;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .hero-tagline {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-desc {
        font-size: 0.95rem;
    }

    .hero-scroll {
        display: none;
    }

.hero {
    max-width: 100vw;
    overflow: hidden;
}

/* Desktop default stays absolute; mobile overrides below */

.hero-content {
    max-width: 90%;
    width: 90%;
    padding: 20px;
    margin: 0 auto;
}

    .btn {
        padding: 12px 28px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 280px;
    }

    /* Tighter hero buttons on mobile */
    .hero-buttons {
        gap: 8px;
        margin-top: 12px;
        align-items: center;
    }
    .hero .btn {
        width: auto;              /* don't stretch full width */
        max-width: 240px;         /* smaller, cleaner buttons */
        padding: 10px 16px;       /* reduce padding */
        font-size: 0.8rem;        /* slightly smaller text */
        border-radius: 10px;      /* a bit tighter radius */
    }

    section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 35px;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .service-card {
        min-height: 180px;
    }

    .service-card-content {
        padding: 15px;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.75rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .service-card .learn-more {
        font-size: 0.7rem;
    }

    .owner-photo {
        max-width: 250px;
    }

    .stats {
        justify-content: center;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .event-tag {
        padding: 12px 15px;
        font-size: 0.85rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-item:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }

    .venues {
        padding: 40px 0;
    }

    .venues-scroller,
    .clients-scroller {
        padding: 10px 15px;
        gap: 12px;
    }

    .venue-card {
        flex: 0 0 160px;
    }

    .venue-card-image {
        height: 80px;
    }

    .client-card {
        flex: 0 0 150px;
    }

    .client-card-image {
        height: 120px;
    }

    .contact-grid {
        gap: 30px;
    }

    .contact-info h3 {
        font-size: 1.4rem;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        padding: 12px;
        font-size: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 20px;
    }

    .footer-links li {
        margin-bottom: 0;
    }

    .instagram-header {
        flex-direction: column;
        text-align: center;
    }

    .instagram-follow {
        font-size: 0.85rem;
        padding: 10px 20px;
    }

    .modal-content {
        padding: 10px;
    }

    .modal-nav {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }

    .modal-nav.prev {
        left: 10px;
    }

    .modal-nav.next {
        right: 10px;
    }

    .modal-close {
        top: -35px;
        font-size: 2rem;
    }

    .modal-info h3 {
        font-size: 1.2rem;
    }

    .intro-content p {
        font-size: 1rem;
    }

    .intro-content p:first-of-type {
        font-size: 1.05rem;
    }

    .social-icons {
        gap: 12px;
    }

    .social-icons a {
        width: 42px;
        height: 42px;
    }

    .about-header-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
        margin-bottom: 30px;
    }

    .video-logo-inline {
        max-width: 250px;
    }

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

    .video-gallery {
        grid-template-columns: 1fr;
    }

    /* Entertainment page: square cards that fill, readable overlay */
    .page-entertainment .service-card { aspect-ratio: 1 / 1; }
    .page-entertainment .service-card.has-bg-image {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        min-height: unset;
    }
    .page-entertainment #services .services-grid { gap: 12px; }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE
============================================ */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        letter-spacing: 1px;
    }

    .services-grid {
        gap: 12px;
    }

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

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

    .gallery-item:first-child {
        grid-column: span 1;
    }

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

    .owner-photo {
        max-width: 200px;
    }

    .venue-card {
        flex: 0 0 140px;
    }

    .client-card {
        flex: 0 0 130px;
    }

    .client-card-image {
        height: 100px;
    }
}

/* ============================================
   UTILITY CLASSES
============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

.hidden { display: none !important; }
.visible { display: block !important; }

@media (max-width: 768px) {
    .hide-mobile { display: none !important; }
}

@media (min-width: 769px) {
    .hide-desktop { display: none !important; }
}

/* HERO FIX - FORCE FIT TO SCREEN WIDTH */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

.hero,
.hero-slideshow,
.hero-slideshow .slide,
.hero-slideshow .slide video,
.hero-slideshow .slide img {
    max-width: 100% !important;
    width: 100% !important;
    overflow: hidden !important;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
}

.hero-slideshow .slide {
    position: absolute;
    inset: 0;
    display: none;
}

.hero-slideshow .slide.active {
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.6));
}

.hero-content { z-index: 2; }

.hero-slideshow .slide video,
.hero-slideshow .slide img {
    /* Ensure media fully fills the hero area */
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    /* Align media so any cropping happens on the right */
    object-position: left center !important;
}

/* Prefer width-locked on mobile: full-width media, allow top/bottom gap */
@media (max-width: 768px) {
    .hero-slideshow { position: relative !important; inset: auto !important; height: auto !important; width: 100% !important; }
    .hero-slideshow .slide { position: relative !important; inset: auto !important; display: none; }
    .hero-slideshow .slide.active { display: block !important; }

    .hero-slideshow .slide video,
    .hero-slideshow .slide img {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        display: block !important;
        width: 100% !important;      /* edge-to-edge width */
        height: auto !important;     /* preserve aspect, allow top/bottom gap */
        object-fit: initial !important; /* rely on width/height */
        margin: 0 !important;
    }
}

/* Subpage hero height for desktop */
.hero.hero-subpage {
    height: 70vh;
    min-height: 420px;
}