/* Michael Wolfe - Creative Editor Portfolio */
/* Bold Cinematic Design */

:root {
    --primary-gold: #d4af37;
    --accent-red: #c41e3a;
    --dark-bg: #0a0a0a;
    --light-text: #f5f5f5;
    --mid-gray: #2a2a2a;
    --border-gold: rgba(212, 175, 55, 0.3);
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', Helvetica, Verdana, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background: var(--dark-bg);
    color: var(--light-text);
    overflow-x: hidden;
}

/* Cinematic grain overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,.03) 2px, rgba(255,255,255,.03) 4px);
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

a {
    color: var(--primary-gold) !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--light-text) !important;
    text-shadow: 0 0 20px var(--primary-gold);
}

hr {
    border: 0;
    height: 2px;
    background: linear-gradient(to right, 
        transparent, 
        var(--primary-gold) 20%, 
        var(--primary-gold) 80%, 
        transparent);
    margin: 10px auto;
    max-width: 80%;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* HEADER - Cinematic Title Card */
.header {
    width: 100%;
    background: linear-gradient(180deg, #000000 0%, var(--dark-bg) 100%);
    padding: 25px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-gold);
    box-shadow: 0 10px 50px rgba(0,0,0,0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.headline {
    font-size: 48pt;
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    text-align: left;
    margin: 0 0 15px 50px;
    float: left;
    max-width: 500px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: titleReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    position: relative;
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(-50px);
        letter-spacing: 20px;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 2px;
    }
}

.logo {
    height: 120px;
    vertical-align: middle;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.6));
    transition: all 0.4s ease;
}

.logo:hover {
    filter: drop-shadow(0 0 50px rgba(212, 175, 55, 0.9));
    transform: scale(1.05);
}

.bar {
    font-weight: 300;
    font-size: 48pt;
    margin: 0px 15px;
    color: var(--primary-gold);
    text-shadow: 0 0 30px var(--primary-gold);
}

.word1 {
    color: var(--light-text);
    text-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.word2 {
    color: var(--primary-gold);
    text-shadow: 0 0 30px var(--primary-gold);
}

.tagline {
    text-align: left;
    font-size: 20pt;
    font-weight: 300;
    margin-top: 5px;
    margin-left: 4px;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #999;
    border-left: 3px solid var(--primary-gold);
    padding-left: 15px;
}

.clear {
    clear: both;
}

/* NAVIGATION - Film Strip Style */
.nav {
    float: right;
    margin: 40px 50px;
    animation: navSlide 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

@keyframes navSlide {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

span.navTab {
    font-size: 18pt;
    font-weight: 600;
    color: #666;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    margin: 0 20px;
    cursor: pointer;
    position: relative;
    display: inline-block;
    padding: 10px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navTab::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 15px var(--primary-gold);
}

.navTab::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent);
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    border-radius: 50%;
}

.navTab:hover {
    color: var(--primary-gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    transform: translateY(-3px);
}

.navTab:hover::before {
    width: 100%;
}

.navTab:hover::after {
    width: 120%;
    height: 120%;
}

.navSelected {
    color: var(--primary-gold) !important;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
}

.navSelected::before {
    width: 100%;
}

.contact {
    font-size: 18pt;
    font-weight: 600;
    color: #666;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    margin: 0 20px;
    cursor: pointer;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid transparent;
}

.contact:hover {
    border: 2px solid var(--primary-gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    transform: translateY(-3px);
}

.contactCopy {
    transition: all 0.3s ease;
}

.contactCopy:hover {
    color: var(--light-text) !important;
}

/* CONTENT SECTIONS */
.navBox {
    display: none;
    padding: 80px 20px;
    min-height: 60vh;
    animation: sectionFade 0.8s ease-out;
}

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

/* GALLERY - Cinematic Grid */
.gallery {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.galleryItem {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 445px;
    position: relative;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    animation: itemReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes itemReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.galleryItem:nth-child(1) { animation-delay: 0.1s; }
.galleryItem:nth-child(2) { animation-delay: 0.2s; }
.galleryItem:nth-child(3) { animation-delay: 0.3s; }
.galleryItem:nth-child(4) { animation-delay: 0.4s; }
.galleryItem:nth-child(5) { animation-delay: 0.5s; }
.galleryItem:nth-child(6) { animation-delay: 0.6s; }
.galleryItem:nth-child(7) { animation-delay: 0.7s; }
.galleryItem:nth-child(8) { animation-delay: 0.8s; }
.galleryItem:nth-child(9) { animation-delay: 0.9s; }
.galleryItem:nth-child(10) { animation-delay: 1.0s; }
.galleryItem:nth-child(11) { animation-delay: 1.1s; }
.galleryItem:nth-child(12) { animation-delay: 1.2s; }

.imageContainer {
    display: block;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--border-gold);
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--mid-gray);
}

.imageContainer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 175, 55, 0.3), 
        transparent);
    transition: left 0.6s ease;
    z-index: 10;
}

.imageContainer:hover::before {
    left: 100%;
}

.imageContainer:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-gold);
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.9),
        0 0 40px rgba(212, 175, 55, 0.4);
}

.galleryImage {
    position: relative;
    z-index: 5;
    cursor: pointer;
    width: 100%;
    max-width: 445px;
    display: block;
    filter: grayscale(85%) contrast(1.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.galleryImage:hover {
    filter: grayscale(0%) contrast(1.2) brightness(1.1);
}

.imageLabel {
    font-family: 'Raleway', sans-serif;
    position: absolute;
    z-index: 999;
    color: var(--light-text);
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(0, 0, 0, 0.7) 70%,
        transparent 100%);
    transform: translateY(0);
    transition: all 0.4s ease;
    pointer-events: none;
}

.imageContainer:hover .imageLabel {
    background: linear-gradient(to top, 
        rgba(212, 175, 55, 0.95) 0%, 
        rgba(196, 30, 58, 0.8) 70%,
        transparent 100%);
}

.bold {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 16pt;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

/* LONG GALLERY ITEMS - Feature Films */
.longGalleryItem {
    list-style-type: none;
    padding: 40px 20px;
    margin: 0 auto;
    display: block;
    width: 90%;
    max-width: 1200px;
    min-height: 400px;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    position: relative;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.longGalleryItem:nth-child(even) {
    transform: translateX(50px);
    animation-name: slideInRight;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.longGalleryItem:nth-child(1) { animation-delay: 0.2s; }
.longGalleryItem:nth-child(2) { animation-delay: 0.4s; }
.longGalleryItem:nth-child(3) { animation-delay: 0.6s; }
.longGalleryItem:nth-child(4) { animation-delay: 0.8s; }
.longGalleryItem:nth-child(5) { animation-delay: 1.0s; }

.longImage {
    margin-left: 20px;
    margin-right: 40px;
    float: left;
    position: relative;
    border: 3px solid var(--border-gold);
    box-shadow: 0 15px 50px rgba(0,0,0,0.8);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.longImage::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.1) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.longImage:hover::after {
    opacity: 1;
}

.longImage:hover {
    transform: scale(1.05);
    border-color: var(--primary-gold);
    box-shadow: 
        0 20px 70px rgba(0,0,0,0.9),
        0 0 50px rgba(212, 175, 55, 0.5);
}

.longImage .imageLabel {
    display: none;
}

.play {
    display: none;
    font-size: 80pt;
    color: var(--primary-gold);
    opacity: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 50;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.8);
    transition: all 0.3s ease;
    pointer-events: none;
}

.longImage:hover + .play {
    display: block;
    opacity: 0.9;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.longGalleryImage {
    position: relative;
    z-index: 5;
    cursor: pointer;
    max-height: 340px;
    display: block;
    filter: grayscale(85%) contrast(1.15);
    transition: all 0.5s ease;
}

.longGalleryImage:hover {
    filter: grayscale(0%) contrast(1.25) brightness(1.1);
}

.longImageDescription {
    display: table-cell;
    vertical-align: top;
    text-align: left;
    padding: 20px;
    line-height: 1.8;
}

.longImageDescription .bold {
    font-size: 28pt;
    color: var(--primary-gold);
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.longImageDescription div {
    font-size: 14pt;
    color: #ccc;
    margin: 8px 0;
}

.longImageText {
    margin-top: 25px;
    font-size: 13pt;
    line-height: 1.9;
    color: #bbb;
    border-left: 3px solid var(--primary-gold);
    padding-left: 20px;
}

.longImageText p {
    margin: 15px 0;
}

.longImageText .bold {
    display: inline;
    font-size: inherit;
    color: var(--light-text);
    text-shadow: none;
}

/* ABOUT SECTION */
.aboutBox {
    width: 70%;
    max-width: 900px;
    margin: auto;
    padding: 40px;
    background: linear-gradient(135deg, var(--mid-gray) 0%, #1a1a1a 100%);
    border: 2px solid var(--border-gold);
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    animation: fadeInUp 1s ease-out;
    line-height: 2;
}

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

.aboutBox img {
    width: 90%;
    border: 3px solid var(--primary-gold);
    box-shadow: 0 15px 50px rgba(0,0,0,0.8);
    transition: all 0.5s ease;
    filter: grayscale(30%) contrast(1.1);
}

.aboutBox img:hover {
    transform: scale(1.03);
    filter: grayscale(0%) contrast(1.2);
    box-shadow: 0 20px 70px rgba(212, 175, 55, 0.4);
}

.aboutBox p {
    margin: 25px 0;
    font-size: 14pt;
    color: #ccc;
}

.aboutBox strong {
    color: var(--primary-gold);
    font-weight: 800;
    font-size: 16pt;
    letter-spacing: 1px;
}

.aboutBox a {
    font-weight: 700;
    display: inline-block;
    padding: 5px 10px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.aboutBox a:hover {
    border-bottom: 2px solid var(--primary-gold);
    transform: translateX(10px);
}

/* FOOTER */
.footer {
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-size: 11pt;
    font-weight: 600;
    padding: 40px 0;
    margin-top: 100px;
    background: linear-gradient(180deg, transparent 0%, #000000 50%);
    border-top: 1px solid var(--border-gold);
    color: #666;
    letter-spacing: 2px;
}

/* RESPONSIVE DESIGN */
@media screen and (max-width: 1024px) {
    .longImage {
        float: none;
        margin: 0 auto 30px;
        display: block;
    }
    
    .longImageDescription {
        display: block;
    }
    
    .longGalleryItem {
        height: auto;
    }
}

@media screen and (max-width: 768px) {
    .headline {
        font-size: 32pt;
        margin: 0 0 10px 20px;
    }
    
    .logo {
        height: 80px;
    }
    
    .nav {
        float: none;
        clear: both;
        margin: 20px;
        text-align: center;
    }
    
    span.navTab, .contact {
        font-size: 14pt;
        margin: 10px;
        display: inline-block;
    }
    
    .header {
        padding: 20px 0;
    }
    
    .aboutBox {
        width: 90%;
        padding: 20px;
    }
    
    .galleryItem {
        width: 100%;
        max-width: 400px;
    }
}

@media screen and (max-width: 600px) {
    .longGalleryImage {
        max-height: 250px;
    }
    
    .galleryImage {
        max-width: 100%;
    }
    
    .tagline {
        font-size: 14pt;
        letter-spacing: 4px;
    }
    
    .longImageDescription .bold {
        font-size: 20pt;
    }
}

/* COMING SOON BADGE */
.comingSoon {
    font-size: 12pt;
    font-weight: bold;
    background: var(--accent-red);
    color: #fff;
    border-radius: 20px;
    border: 2px solid var(--primary-gold);
    padding: 8px 15px;
    margin-left: -10px;
    box-shadow: 0 0 20px rgba(196, 30, 58, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* HOME SPLASH SCREEN */
.home-splash {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 20px;
    position: relative;
}

.home-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.home-tagline {
    font-family: 'Raleway', sans-serif;
    font-size: 48pt;
    font-weight: 800;
    letter-spacing: 8px;
    line-height: 1.3;
    text-align: center;
    color: var(--light-text);
    text-transform: uppercase;
    margin: 0;
    padding: 0 30px;
    position: relative;
    animation: taglineReveal 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes taglineReveal {
    0% {
        opacity: 0;
        transform: translateY(50px);
        letter-spacing: 20px;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 8px;
    }
}

.home-tagline::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    box-shadow: 0 0 20px var(--primary-gold);
    animation: lineExpand 1.2s ease-out 0.5s both;
}

@keyframes lineExpand {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100px;
        opacity: 1;
    }
}

.home-tagline::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    box-shadow: 0 0 20px var(--primary-gold);
    animation: lineExpand 1.2s ease-out 0.5s both;
}

/* Cinematic text glow effect */
.home-tagline {
    text-shadow: 
        0 0 40px rgba(212, 175, 55, 0.3),
        0 0 80px rgba(212, 175, 55, 0.2),
        0 5px 20px rgba(0, 0, 0, 0.8);
}

/* LOGO STRIP */
.logo-strip {
    width: 100%;
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.logo-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--border-gold), 
        transparent);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Fade edges */
.logo-strip::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
        var(--dark-bg) 0%,
        transparent 10%,
        transparent 90%,
        var(--dark-bg) 100%);
    pointer-events: none;
    z-index: 2;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: scrollLogos 40s linear infinite;
    width: max-content;
}

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

/* Pause animation on hover */
.logo-strip:hover .logo-container {
    animation-play-state: paused;
}

.brand-logo {
    height: 60px;
    width: auto;
    min-width: 120px;
    max-width: 180px;
    filter: grayscale(100%) brightness(0.6);
    opacity: 0.7;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    flex-shrink: 0;
}

.brand-logo:hover {
    filter: grayscale(0%) brightness(1.2);
    opacity: 1;
    transform: scale(1.15) translateY(-5px);
    filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.4));
}

/* Responsive Home Splash */
@media screen and (max-width: 1024px) {
    .home-tagline {
        font-size: 42pt;
        letter-spacing: 6px;
    }
    
    .brand-logo {
        height: 50px;
        min-width: 100px;
        max-width: 150px;
    }
}

@media screen and (max-width: 768px) {
    .home-splash {
        min-height: 60vh;
        padding: 60px 20px;
    }
    
    .home-tagline {
        font-size: 32pt;
        letter-spacing: 4px;
        padding: 0 20px;
    }
    
    .home-tagline::before,
    .home-tagline::after {
        width: 60px;
    }
    
    .brand-logo {
        height: 45px;
        min-width: 90px;
        max-width: 130px;
    }
    
    .logo-container {
        gap: 60px;
    }
}

@media screen and (max-width: 600px) {
    .home-tagline {
        font-size: 24pt;
        letter-spacing: 3px;
        line-height: 1.4;
    }
    
    .logo-strip {
        padding: 40px 0 30px;
    }
    
    .brand-logo {
        height: 40px;
        min-width: 80px;
        max-width: 110px;
    }
    
    .logo-container {
        gap: 50px;
    }
}

@media screen and (max-width: 480px) {
    .home-tagline {
        font-size: 20pt;
        letter-spacing: 2px;
    }
    
    .brand-logo {
        height: 35px;
        min-width: 70px;
        max-width: 100px;
    }
    
    .logo-container {
        gap: 40px;
    }
}

/* CONTACT FORM MODAL */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    backdrop-filter: blur(10px);
    animation: modalFadeIn 0.4s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.contact-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--mid-gray) 0%, #1a1a1a 100%);
    border: 2px solid var(--border-gold);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.9), 0 0 60px rgba(212, 175, 55, 0.3);
    padding: 50px;
    width: 90%;
    max-width: 600px;
    animation: modalSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.contact-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 36pt;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.contact-modal-close:hover {
    color: var(--primary-gold);
    text-shadow: 0 0 20px var(--primary-gold);
    transform: rotate(90deg);
}

.contact-modal-title {
    font-family: 'Raleway', sans-serif;
    font-size: 32pt;
    font-weight: 800;
    color: var(--primary-gold);
    text-align: center;
    margin: 0 0 40px 0;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--border-gold);
    color: var(--light-text);
    font-family: 'Raleway', sans-serif;
    font-size: 14pt;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    background: rgba(0, 0, 0, 0.7);
}

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

.contact-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #b8941f 100%);
    border: 2px solid var(--primary-gold);
    color: var(--dark-bg);
    font-family: 'Raleway', sans-serif;
    font-size: 16pt;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #e6c24a 0%, var(--primary-gold) 100%);
}

.contact-submit:active {
    transform: translateY(0);
}

.contact-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.contact-response {
    margin-top: 20px;
    padding: 15px;
    text-align: center;
    font-size: 14pt;
    font-weight: 600;
    border-radius: 4px;
    display: none;
}

.contact-response.success {
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid #4caf50;
    color: #4caf50;
    display: block;
}

.contact-response.error {
    background: rgba(244, 67, 54, 0.2);
    border: 2px solid #f44336;
    color: #f44336;
    display: block;
}

/* Responsive Contact Modal */
@media screen and (max-width: 768px) {
    .contact-modal-content {
        padding: 40px 30px;
        width: 95%;
    }
    
    .contact-modal-title {
        font-size: 24pt;
        margin-bottom: 30px;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 12pt;
        padding: 12px 15px;
    }
    
    .contact-submit {
        font-size: 14pt;
        padding: 15px;
    }
}

@media screen and (max-width: 480px) {
    .contact-modal-content {
        padding: 30px 20px;
    }
    
    .contact-modal-title {
        font-size: 20pt;
        letter-spacing: 2px;
    }
}

/* CREATIVE DIRECTION SECTION */
.creative-section {
    margin: 60px 0;
    padding: 40px 20px;
}

.section-title {
    font-family: 'Raleway', sans-serif;
    font-size: 28pt;
    font-weight: 800;
    color: var(--primary-gold);
    text-align: center;
    margin: 0 0 50px 0;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    position: relative;
}

.section-title i {
    margin-right: 15px;
    font-size: 24pt;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    box-shadow: 0 0 15px var(--primary-gold);
}

/* Video Thumbnails */
.video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    cursor: pointer;
}

.video-thumbnail::-webkit-media-controls {
    display: none !important;
}

.video-thumbnail::-webkit-media-controls-enclosure {
    display: none !important;
}

/* Photography Grid */
.photo-gallery {
    gap: 20px;
}

.photo-container {
    cursor: pointer;
}

.photo-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Photo Lightbox Modal */
.photo-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    backdrop-filter: blur(10px);
    animation: modalFadeIn 0.4s ease-out;
}

.photo-lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    width: 90vw;
    height: auto;
    animation: modalSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    width: 100%;
    height: auto;
    object-fit: contain;
    border: 3px solid var(--primary-gold);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.9), 0 0 60px rgba(212, 175, 55, 0.3);
}

.photo-lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 48pt;
    color: var(--primary-gold);
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    z-index: 10001;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

.photo-lightbox-close:hover {
    transform: rotate(90deg) scale(1.2);
    text-shadow: 0 0 40px var(--primary-gold);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .section-title {
        font-size: 20pt;
        letter-spacing: 2px;
    }
    
    .section-title i {
        font-size: 18pt;
        margin-right: 10px;
    }
    
    .photo-image {
        height: 200px;
    }
    
    .creative-section {
        margin: 40px 0;
        padding: 20px 10px;
    }
    
    .photo-lightbox-content {
        width: 95vw;
        max-width: 95%;
    }
    
    .photo-lightbox-close {
        font-size: 36pt;
        top: 10px;
        right: 15px;
    }
}

@media screen and (max-width: 480px) {
    .section-title {
        font-size: 16pt;
    }
    
    .photo-image {
        height: 150px;
    }
    
    .photo-lightbox-content {
        width: 98vw;
        max-width: 98%;
    }
    
    .photo-lightbox-content img {
        border: 2px solid var(--primary-gold);
    }
}
