/* ============================================
   CSS VARIABLES & RESET
   ============================================ */

:root {
    /* Theatre Color Palette */
    --burgundy: #8B1538;
    --burgundy-dark: #6B0F2A;
    --gold: #D4AF37;
    --gold-light: #E8C870;
    --charcoal: #2C2C2C;
    --cream: #F5F5DC;
    --cream-dark: #E8E4D0;
    --white: #FFFFFF;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Cormorant Garamond', serif;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--cream);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* ============================================
   CONTAINER
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(139, 21, 56, 0.98), rgba(139, 21, 56, 0.95));
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 4px 20px rgba(139, 21, 56, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
    list-style: none;
}

.nav-link {
    color: var(--cream);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 50%, var(--charcoal) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.curtain-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: repeating-linear-gradient(
        90deg,
        var(--gold) 0px,
        var(--gold) 20px,
        var(--burgundy-dark) 20px,
        var(--burgundy-dark) 40px
    );
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--spacing-md);
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
}

.title-line {
    display: block;
}

.title-line:first-child {
    color: var(--gold);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--cream-dark);
    margin-bottom: var(--spacing-lg);
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    cursor: pointer;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gold);
    color: var(--burgundy-dark);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--cream);
    border-color: var(--cream);
}

.btn-secondary:hover {
    background: var(--cream);
    color: var(--burgundy);
    transform: translateY(-3px);
}

/* ============================================
   SECTION STYLING
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-label {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--burgundy);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.2;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.about-content {
    padding-right: var(--spacing-md);
}

.lead-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--burgundy);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.about-content p {
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
}

.team-section {
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    padding: var(--spacing-md);
    border-left: 4px solid var(--gold);
    border-radius: 4px;
}

.team-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--burgundy);
    margin-bottom: var(--spacing-md);
}

.team-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.team-member {
    display: flex;
    flex-direction: column;
    padding: var(--spacing-sm);
    background: var(--white);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.team-member:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(139, 21, 56, 0.1);
}

.member-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--charcoal);
}

.member-role {
    font-size: 1rem;
    color: var(--burgundy);
    font-style: italic;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
    padding: var(--spacing-xl) 0;
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.service-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 8px;
    border-top: 4px solid var(--burgundy);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: var(--transition-smooth);
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 21, 56, 0.2);
    border-top-color: var(--gold);
}

.service-icon {
    color: var(--gold);
    margin-bottom: var(--spacing-sm);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--burgundy);
    margin-bottom: var(--spacing-sm);
}

.service-description {
    font-size: 1.05rem;
    color: var(--charcoal);
    line-height: 1.7;
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */

.portfolio {
    padding: var(--spacing-xl) 0;
    background: var(--charcoal);
    color: var(--cream);
}

.portfolio .section-label {
    color: var(--gold);
}

.portfolio .section-title {
    color: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(139, 21, 56, 0.95), transparent);
    padding: var(--spacing-md);
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

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

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

.gallery-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.gallery-overlay p {
    font-size: 1rem;
    color: var(--cream-dark);
}

/* ============================================
   OUR MOMENTS SECTION
   ============================================ */

.moments {
    padding: var(--spacing-xl) 0;
    background: var(--cream);
}

.moments-grid {
    columns: 3;
    column-gap: var(--spacing-sm);
}

.moment-item {
    break-inside: avoid;
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    border-radius: 6px;
    position: relative;
    cursor: pointer;
}

.moment-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: saturate(0.9);
}

.moment-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(107, 15, 42, 0.35) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 6px;
}

.moment-item:hover img {
    transform: scale(1.05);
    filter: saturate(1.1);
}

.moment-item:hover::after {
    opacity: 1;
}

.moments-empty {
    text-align: center;
    font-size: 1.2rem;
    color: var(--burgundy);
    font-style: italic;
    padding: var(--spacing-lg);
}

/* Lightbox */
.moments-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(20, 10, 10, 0.93);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.moments-lightbox.open {
    opacity: 1;
    pointer-events: all;
}

.moments-lightbox img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.7);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-smooth);
    font-family: var(--font-display);
}

.lightbox-close:hover {
    color: var(--cream);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .moments-grid {
        columns: 2;
    }
}

@media (max-width: 480px) {
    .moments-grid {
        columns: 1;
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    color: var(--cream);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: var(--spacing-md);
}

.contact-description {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.3rem;
}

.contact-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

.contact-item a {
    color: var(--cream);
    border-bottom: 2px solid transparent;
    transition: var(--transition-smooth);
}

.contact-item a:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.contact-visual {
    position: relative;
    height: 400px;
}

.spotlight-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: spotlight 4s ease-in-out infinite;
}

@keyframes spotlight {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--charcoal);
    color: var(--cream-dark);
    padding: var(--spacing-md) 0;
    text-align: center;
    border-top: 2px solid var(--gold);
}

.footer-content p {
    margin: 0.5rem 0;
}

.footer-tagline {
    font-style: italic;
    color: var(--gold);
}

/* ============================================
   PAGE HEADER (for Blog & Careers)
   ============================================ */

.page-header {
    padding: calc(80px + var(--spacing-lg)) 0 var(--spacing-lg) 0;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    color: var(--cream);
    text-align: center;
}

.page-header .section-label {
    color: var(--gold);
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--cream);
    margin-bottom: var(--spacing-sm);
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--cream-dark);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   BLOG SECTION
   ============================================ */

.blog-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.blog-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.blog-post {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--cream);
    border-left: 4px solid var(--burgundy);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.blog-post:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(139, 21, 56, 0.15);
    border-left-color: var(--gold);
}

.post-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--burgundy);
    color: var(--cream);
    border-radius: 8px;
    padding: var(--spacing-sm);
    height: fit-content;
}

.date-day {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    line-height: 1;
    color: var(--gold);
}

.date-month {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-content {
    display: flex;
    flex-direction: column;
}

.post-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--burgundy);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.post-excerpt {
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
}

.post-meta {
    display: flex;
    gap: var(--spacing-sm);
}

.post-category {
    display: inline-block;
    background: var(--gold);
    color: var(--burgundy-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ============================================
   CAREERS SECTION
   ============================================ */

.careers-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.careers-intro {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg) auto;
    text-align: center;
}

.careers-intro h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--burgundy);
    margin-bottom: var(--spacing-md);
}

.careers-intro p {
    font-size: 1.2rem;
    color: var(--charcoal);
    line-height: 1.7;
}

.openings-section {
    margin-bottom: var(--spacing-xl);
}

.section-heading {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--burgundy);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.job-listings {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.job-card {
    background: var(--cream);
    border-radius: 8px;
    padding: var(--spacing-md);
    border-left: 4px solid var(--burgundy);
    transition: var(--transition-smooth);
}

.job-card:hover {
    box-shadow: 0 10px 30px rgba(139, 21, 56, 0.15);
    transform: translateY(-5px);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.job-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--burgundy);
}

.job-type {
    display: inline-block;
    background: var(--gold);
    color: var(--burgundy-dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.job-location {
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: var(--spacing-sm);
}

.job-description {
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.job-requirements h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--burgundy);
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
}

.job-requirements ul {
    list-style: none;
    margin-bottom: var(--spacing-sm);
}

.job-requirements li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.job-requirements li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.job-photos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-sm);
    margin: var(--spacing-md) 0;
}

.job-photos img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.job-photos img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(139, 21, 56, 0.2);
}

@media (max-width: 768px) {
    .job-photos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .job-photos {
        grid-template-columns: 1fr;
    }
}

.apply-btn {
    display: inline-block;
    background: var(--burgundy);
    color: var(--cream);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: var(--spacing-sm);
    transition: var(--transition-smooth);
}

.apply-btn:hover {
    background: var(--burgundy-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 21, 56, 0.3);
}

.no-openings {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--cream);
    border-radius: 8px;
}

.no-openings h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--burgundy);
    margin-bottom: var(--spacing-sm);
}

.no-openings p {
    font-size: 1.1rem;
    color: var(--charcoal);
}

.no-openings a {
    color: var(--burgundy);
    font-weight: 600;
    border-bottom: 2px solid var(--gold);
}

.application-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: var(--spacing-md);
    background: var(--cream);
    border-radius: 8px;
}

.application-info h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--burgundy);
    margin-bottom: var(--spacing-sm);
}

.application-info p {
    font-size: 1.1rem;
    color: var(--charcoal);
    line-height: 1.7;
}

.application-info a {
    color: var(--burgundy);
    font-weight: 600;
    border-bottom: 2px solid var(--gold);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 968px) {
    .about-grid,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        padding-right: 0;
    }
    
    .contact-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(139, 21, 56, 0.98);
        width: 100%;
        padding: var(--spacing-md);
        gap: var(--spacing-sm);
        transition: var(--transition-smooth);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-post {
        grid-template-columns: 1fr;
    }
    
    .post-date {
        flex-direction: row;
        gap: var(--spacing-sm);
        width: fit-content;
    }
    
    .job-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

