/* Responsive Navbar */
.navbar-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.navbar-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
}
.navbar-links li {
    margin: 0 1.2em;
}
.navbar-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.3em;
    padding: 0.75em 0.5em;
    transition: all 0.2s ease;
    display: inline-block;
}
.navbar-links a:hover {
    color: #fff; text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    transform: translateY(-2px);
}

/* Tablet breakpoint */
@media (max-width: 1024px) {
    .navbar-links li {
        margin: 0 0.8em;
    }
    .navbar-links a {
        font-size: 1.2em;
        padding: 0.6em 0.4em;
    }
}

/* Mobile breakpoint */
@media (max-width: 768px) {
    .navbar {
        display: none;
    }
}

/* Small mobile breakpoint */
@media (max-width: 480px) {
    .navbar-links a {
        font-size: 1.3em;
    }
}
/* Contact Us Two-Column Layout */
.contact-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}
.contact-left {
    flex: 1 1 340px;
    max-width: 520px;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.contact-right {
    flex: 2 1 600px;
    max-width: 700px;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.contact-left h2 {
    font-size: 2.2em;
    margin-top: 0;
}
.contact-left p {
    font-size: 1.2em;
    line-height: 1.6;
}
@media (max-width: 1100px) {
    .contact-layout {
        flex-direction: column;
        gap: 24px;
    }
    .contact-left, .contact-right {
        max-width: 100%;
    }
}
/* Studio Design Two-Column Layout */
.studio-design-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}
.studio-gallery {
    flex: 1 1 340px;
    max-width: 520px;
}
.studio-design-text {
    flex: 1 1 340px;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.studio-design-text h2 {
    font-size: 2.5em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
}
.studio-design-text p {
    font-size: 1.3em;
    line-height: 1.8;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5em;
}
.studio-design-text ul {
    font-size: 1.3em;
    line-height: 1.8;
    list-style: none;
    padding-left: 0;
}

.studio-design-text ul li {
    padding: 4px 0;
    padding-left: 30px;
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.studio-design-text ul li.visible {
    opacity: 1;
    transform: translateX(0);
}

.studio-design-text ul li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #00bcd4;
    font-weight: bold;
    font-size: 1.2em;
}
@media (max-width: 1100px) {
    .studio-design-layout {
        flex-direction: column-reverse;
        gap: 24px;
    }
    .studio-gallery, .studio-design-text {
        max-width: 100%;
    }
}
/* Studio Design Image Gallery */
.studio-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 40px 0 0 0;
    justify-items: center;
    align-items: center;
}
.studio-gallery img {
    width: 100%;
    max-width: 320px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.25);
    transition: transform 0.2s, box-shadow 0.2s;
}
.studio-gallery img:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

/* Force 2 columns on mobile for studio gallery */
@media (max-width: 768px) {
    .studio-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .studio-gallery img {
        max-width: 100%;
        height: 150px;
    }
}
.video-production-text h2 {
    font-size: 2.5em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
}
.video-production-text p {
    font-size: 1.4em;
    line-height: 1.8;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5em;
}
.video-production-text ul {
    font-size: 1.4em;
    line-height: 1.8;
    list-style: none;
    padding-left: 0;
}

.video-production-text ul li {
    padding: 4px 0;
    padding-left: 30px;
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.video-production-text ul li.visible {
    opacity: 1;
    transform: translateX(0);
}

.video-production-text ul li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #00bcd4;
    font-weight: bold;
    font-size: 1.2em;
}
/* Video row for side-by-side YouTube embeds */
.video-row {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    align-items: center;
}

.video-row iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-width: 560px;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
    height: auto;
    background: #000;
    display: block;
}

/* Video Production Section Layout */
.video-production-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
}
.video-production-text {
    flex: 1 1 350px;
    min-width: 300px;
    max-width: 600px;
}
.video-production-video {
    flex: 1 1 350px;
    min-width: 300px;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-production-video iframe {
    width: 100%;
    max-width: 560px;
    height: 315px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
@media (max-width: 900px) {
    .video-production-layout {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    .video-production-video {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .video-production-video iframe {
        max-width: 100%;
        height: 220px;
    }
    .video-row {
        width: 100%;
        align-items: center;
    }
}
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Saira Condensed', Arial, sans-serif;
    font-weight: normal;
    scroll-behavior: smooth;
    background: #111;
    color: #fff;
    -webkit-tap-highlight-color: rgba(0, 188, 212, 0.3);
    touch-action: manipulation;
}

/* Keep headings bold */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Saira Condensed', 'Arial Black', Arial, sans-serif;
    font-weight: bold;
}

/* Floating Left Navigation */
.floating-nav {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 12px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.floating-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #fff;
    padding: 12px 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.floating-nav .nav-item:hover {
    background: rgba(0, 188, 212, 0.2);
    transform: translateX(5px);
}

.floating-nav .nav-icon {
    font-size: 24px;
    margin-bottom: 4px;
}

.floating-nav .nav-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hide on mobile */
@media (max-width: 768px) {
    .floating-nav {
        display: none;
    }
}
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(20, 20, 20, 0.92);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
    transition: background 0.3s ease;
}
.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}
.navbar li {
    margin: 0 2em;
}
.navbar a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.5em;
    padding: 0.75em 0.5em;
    transition: color 0.2s;
}
.navbar a:hover {
    color: #fff; text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}
.parallax {
    background-image: url('Images/SHStudio1.jpg');
    min-height: 100vh;
    background-attachment: scroll;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

/* Enable fixed background for desktop only */
@media (min-width: 769px) {
    .parallax {
        background-attachment: fixed;
    }
}
.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 1;
    pointer-events: none;
}
.parallax-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    transition: opacity 0.1s ease-out;
}

/* Fade-in animation for welcome section */
.parallax-content img,
.parallax-content p {
    opacity: 0;
    animation: fadeInUp 1.2s ease forwards;
}

.parallax-content img {
    animation-delay: 0.2s;
}

.parallax-content p {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.parallax h1 {
    font-size: 4em;
    margin-bottom: 0.5em;
    text-shadow: 0 4px 24px #000;
}
.parallax p {
    font-size: 2em;
    max-width: 600px;
    margin: 0 auto 2em auto;
    text-shadow: 0 2px 12px #000;
}
section {
    padding: 80px 20px;
    min-height: 60vh;
    background: #222;
    box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}
section:nth-of-type(even) {
    background: #181818;
}

/* Video Production section with texture */
#video {
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255,255,255,0.02) 10px,
            rgba(255,255,255,0.02) 20px
        ),
        radial-gradient(circle at 20% 50%, rgba(0, 188, 212, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 188, 212, 0.03) 0%, transparent 50%),
        #222;
    background-blend-mode: overlay;
}

/* Awards Section */
.awards-section {
    margin-top: 80px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.award-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.award-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
}

.award-item img {
    width: 100%;
    max-width: 180px;
    height: auto;
    object-fit: contain;
    filter: brightness(1);
    transition: filter 0.3s ease;
}

.award-item:hover img {
    filter: brightness(1.1);
}

@media (max-width: 768px) {
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .award-item img {
        max-width: 120px;
    }
}

/* Studio Design section with texture */
.awards-section {
    margin-top: 80px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.award-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.award-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
}

.award-item img {
    width: 100%;
    max-width: 180px;
    height: auto;
    object-fit: contain;
    filter: brightness(1);
    transition: filter 0.3s ease;
}

.award-item:hover img {
    filter: brightness(1.1);
}

@media (max-width: 768px) {
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .award-item img {
        max-width: 120px;
    }
}

/* Studio Design section with texture */
#studio {
    background: 
        repeating-linear-gradient(
            135deg,
            transparent,
            transparent 10px,
            rgba(255,255,255,0.04) 10px,
            rgba(255,255,255,0.04) 20px
        ),
        radial-gradient(circle at 80% 20%, rgba(0, 188, 212, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 70%, rgba(0, 188, 212, 0.05) 0%, transparent 50%),
        #181818;
    background-blend-mode: overlay;
}
h2 {
    font-size: 2.2em;
    margin-bottom: 0.5em;
    color: #fff; text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}
.contact-form {
    width: 100%;
    max-width: none;
    margin: 120px 0 0 0;
    display: flex;
    flex-direction: column;
    font-size: 1.2em;
}
.contact-form input, .contact-form textarea {
    font-size: 1.4em;
    padding: 1.3em 1em;
    min-height: 3em;
    width: 100%;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin-bottom: 1em;
    border: none;
    border-radius: 4px;
}
.contact-form textarea {
    resize: vertical;
    font-family: inherit;
}
.contact-form button {
    font-size: 1.2em;
    padding: 1em;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #00bcd4;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
    font-weight: 600;
}
.contact-form button:hover:not(:disabled) {
    background: #0097a7;
}
.contact-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Mobile-specific form improvements */
@media (max-width: 768px) {
    .contact-form {
        margin: 40px 0 0 0;
    }
    .contact-form input, .contact-form textarea {
        font-size: 16px;
        padding: 1em 0.8em;
        touch-action: manipulation;
    }
    .contact-form button {
        font-size: 18px;
        padding: 1.2em;
        min-height: 56px;
        touch-action: manipulation;
    }
    a, button, input, textarea {
        touch-action: manipulation;
    }
    
    /* Ensure all interactive elements are clickable on mobile */
    .navbar-links a,
    .studio-gallery img,
    .contact-info a {
        -webkit-tap-highlight-color: rgba(0, 188, 212, 0.3);
        touch-action: manipulation;
    }
}
.contact-form input, .contact-form textarea {
    margin-bottom: 1em;
    padding: 0.8em;
    border: none;
    border-radius: 4px;
    font-size: 1em;
}
.contact-form button {
    padding: 0.8em;
    background: #00bcd4;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background 0.2s;
}
.contact-form button:hover {
    background: #0097a7;
}
@media (max-width: 700px) {
    .parallax h1 {
        font-size: 2em;
    }
    .parallax p {
        font-size: 1.2em;
        max-width: 90%;
    }
    h2 {
        font-size: 1.4em;
    }
    section {
        padding: 40px 10px;
    }
}

/* Fullscreen Image Modal */
.fullscreen-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fullscreen-content {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.8);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeInQuick {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: none;
    color: #fff;
    font-size: 40px;
    padding: 20px 24px;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-weight: 300;
    line-height: 1;
    user-select: none;
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 50px;
    color: #fff;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.2s;
    font-weight: 300;
    line-height: 1;
    user-select: none;
}

.close-btn:hover {
    color: #fff; text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .close-btn {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }
    
    .fullscreen-content {
        max-width: 98%;
        max-height: 98%;
    }
    
    .nav-arrow {
        font-size: 30px;
        padding: 15px 18px;
    }
    
    .prev-arrow {
        left: 10px;
    }
    
    .next-arrow {
        right: 10px;
    }
}
