/* Font Face Declarations */
@font-face {
    font-family: 'Glacial Indifference';
    src: url('fonts/GlacialIndifference-Regular.woff2') format('woff2'),
         url('fonts/GlacialIndifference-Regular.woff') format('woff'),
         url('fonts/GlacialIndifference-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Glacial Indifference';
    src: url('fonts/GlacialIndifference-Bold.woff2') format('woff2'),
         url('fonts/GlacialIndifference-Bold.woff') format('woff'),
         url('fonts/GlacialIndifference-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Glacial Indifference';
    src: url('fonts/GlacialIndifference-Italic.woff2') format('woff2'),
         url('fonts/GlacialIndifference-Italic.woff') format('woff'),
         url('fonts/GlacialIndifference-Italic.otf') format('opentype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

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

:root {
    --bg-black: #000000;
    --bg-dark: #0a0a0a;
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
    --border-light: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Glacial Indifference', sans-serif;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-black);
}

/* Landing Hero Section */
.landing-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

/* Fixed Instagram Button */
.fixed-instagram {
    position: fixed;
    top: 30px;
    left: calc(50% - 200px);
    z-index: 1000;
    animation: fadeIn 1.5s ease;
    display: flex;
    align-items: center;
    height: 120px;
}

.instagram-button {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
}

.instagram-button svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
}

.instagram-button:hover {
    transform: scale(1.1);
}

.instagram-button:hover svg {
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
}

/* Fixed About Button */
.fixed-about {
    position: fixed;
    top: 10px;
    left: 30px;
    z-index: 1000;
    animation: fadeIn 1.5s ease;
    display: flex;
    align-items: center;
    height: 120px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.fixed-about.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.about-button {
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.about-image {
    height: auto;
    width: auto;
    max-height: 110px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
}

.about-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
}

/* About Dropdown Overlay */
.about-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 20%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 0.4s ease;
    overflow-y: auto;
}

.about-overlay.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.about-dropdown {
    width: 100%;
    height: 100%;
    padding: 40px 40px 60px 40px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.about-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.about-close:hover {
    transform: scale(1.2);
    color: var(--text-muted);
}

.about-content {
    margin-top: 20px;
    max-width: 600px;
}

.about-title-container {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.about-title-image {
    max-width: 200px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.about-text {
    font-family: 'Glacial Indifference', sans-serif;
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.8;
    text-align: left;
    padding-left: 0;
    margin-left: 0;
}

.about-text p {
    margin: 0;
    margin-bottom: 1.5rem;
}

.about-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
    text-decoration: none;
    font-family: 'Glacial Indifference', sans-serif;
    font-size: 1.125rem;
    font-weight: 300;
    transition: all 0.3s ease;
    padding: 12px 0;
}

.about-link:hover {
    transform: translateX(10px);
    color: var(--text-muted);
}

.about-link svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
    flex-shrink: 0;
}

/* Fixed Logo */
.fixed-logo {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    animation: fadeIn 1.5s ease;
    display: flex;
    align-items: center;
    height: 120px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.fixed-logo.hidden {
    transform: translateX(-50%) translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.fixed-logo .logo-image {
    max-width: 120px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
}

.fixed-logo .logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.5));
}

/* Fixed Contact Button */
.fixed-contact {
    position: fixed;
    top: 10px;
    right: 30px;
    z-index: 1000;
    animation: fadeIn 1.5s ease;
    display: flex;
    align-items: center;
    height: 120px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.fixed-contact.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.contact-button {
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.contact-image {
    height: auto;
    width: auto;
    max-height: 110px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
}

.contact-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
}

/* Contact Dropdown Overlay */
.contact-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 20%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.4s ease;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
}

.contact-overlay.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.contact-dropdown {
    width: 100%;
    height: 100%;
    padding: 40px 40px 60px 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-sizing: border-box;
    overflow-x: hidden;
}

.contact-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.contact-close:hover {
    transform: scale(1.2);
    color: var(--text-muted);
}

.contact-content {
    margin-top: 20px;
    max-width: 600px;
    width: 100%;
    box-sizing: border-box;
}

.contact-title-container {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.contact-title-image {
    max-width: 200px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.form-row {
    display: flex;
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
}

.form-group label {
    font-family: 'Glacial Indifference', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.form-group .optional {
    font-weight: 300;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    font-family: 'Glacial Indifference', sans-serif;
    font-size: 1rem;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: var(--text-light);
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

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

.contact-submit {
    font-family: 'Glacial Indifference', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 14px 32px;
    background: var(--text-light);
    color: var(--bg-black);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    align-self: flex-start;
}

.contact-submit:hover {
    background: var(--text-muted);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

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

.contact-success-message {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.5);
    border-radius: 4px;
    color: #4caf50;
    font-family: 'Glacial Indifference', sans-serif;
    font-size: 1rem;
    margin-top: 1rem;
    animation: slideIn 0.3s ease;
}

.contact-success-message svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    stroke: #4caf50;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Fixed Sound Control */
.video-sound-control {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: fadeIn 1.5s ease;
}


.sound-icon {
    width: 30px;
    height: 30px;
    stroke: var(--text-light);
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.sound-icon:hover {
    transform: scale(1.1);
}


.sound-button {
    padding: 12px;
    background: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.sound-button:hover {
    transform: scale(1.1);
}

.sound-icon .sound-wave {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sound-icon .sound-slash {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Show two waves when unmuted */
.sound-button.volume-high .wave-1,
.sound-button.volume-high .wave-2 {
    opacity: 1;
}

/* Show slash when muted */
.sound-button.muted .sound-slash {
    opacity: 1;
}

.sound-button.muted .sound-wave {
    opacity: 0;
}

/* Future Project Section */
.future-project {
    min-height: 100vh;
    background: var(--bg-black);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.project-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    animation: fadeInUp 1s ease;
}

.coming-soon-image-container {
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coming-soon-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.poster-container {
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.poster-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.poster-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7);
}

/* Footer */
.site-footer {
    background: var(--bg-black);
    border-top: 1px solid var(--border-light);
    padding: 40px 20px;
    margin-top: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-text {
    font-family: 'Glacial Indifference', sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.footer-credits {
    font-family: 'Glacial Indifference', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.font-credit {
    margin: 0;
    line-height: 1.6;
}

.font-credit a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.font-credit a:hover {
    color: var(--text-muted);
    text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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


/* Responsive Design */
@media (max-width: 768px) {
    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }

    .fixed-about {
        top: 10px;
        left: 20px;
        height: 100px;
    }

    .about-button {
        padding: 0;
    }

    .about-image {
        max-height: 90px;
    }

    .about-overlay {
        width: 100%;
    }

    .about-dropdown {
        padding: 30px 30px 40px 30px;
    }

    .about-title-image {
        max-width: 150px;
    }

    .about-text {
        font-size: 1rem;
    }

    .fixed-logo {
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        height: 100px;
    }

    .fixed-logo .logo-image {
        max-width: 100px;
        max-height: 100px;
    }

    .fixed-contact {
        top: 10px;
        right: 20px;
        height: 100px;
    }

    .contact-button {
        padding: 0;
    }

    .contact-image {
        max-height: 90px;
    }

    .contact-overlay {
        width: 100%;
    }

    .contact-dropdown {
        padding: 30px 30px 40px 30px;
        box-sizing: border-box;
    }

    .contact-content {
        max-width: 100%;
        padding: 0;
        margin-top: 15px;
    }

    .contact-title-image {
        max-width: 150px;
    }

    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-form {
        gap: 1.25rem;
    }

    .video-sound-control {
        bottom: 20px;
        right: 20px;
    }


    .sound-button {
        width: 44px;
        height: 44px;
    }

    .sound-icon {
        width: 26px;
        height: 26px;
    }

    .coming-soon-image-container {
        max-width: 500px;
    }

    .project-container {
        gap: 2rem;
    }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }

    .fixed-about {
        top: 30px;
        left: 30px;
        height: 120px;
    }

    .about-image {
        max-height: 110px;
    }

    .fixed-logo {
        top: 30px;
        left: 50%;
        transform: translateX(-50%);
        height: 120px;
    }

    .fixed-logo .logo-image {
        max-width: 120px;
        max-height: 120px;
    }

    .fixed-contact {
        top: 30px;
        right: 30px;
        height: 120px;
    }

    .contact-image {
        max-height: 110px;
    }
}

/* Extra small devices and very tall screens */
@media (max-height: 600px) {
    .hero-video {
        object-fit: contain;
        object-position: center;
    }
}

@media (max-width: 480px) {
    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }

    .fixed-about {
        top: 15px;
        left: 15px;
        height: 80px;
        align-items: center;
    }

    .about-button {
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center;
    }

    .about-image {
        max-height: 70px;
    }

    .about-overlay {
        width: 100%;
    }

    .about-dropdown {
        padding: 25px 20px 30px 20px;
    }

    .about-close {
        top: 20px;
        right: 20px;
        font-size: 2.5rem;
    }

    .about-title-image {
        max-width: 120px;
    }

    .about-text {
        font-size: 0.95rem;
    }

    .fixed-instagram {
        top: 15px;
        left: calc(50% - 120px);
        height: 80px;
    }

    .instagram-button {
        width: 32px;
        height: 32px;
    }

    .instagram-button svg {
        width: 20px;
        height: 20px;
    }

    .fixed-logo {
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
        height: 80px;
        align-items: center;
    }

    .fixed-logo .logo-image {
        max-width: 80px;
        max-height: 70px;
    }

    .fixed-contact {
        top: 15px;
        right: 15px;
        height: 80px;
        align-items: center;
    }

    .contact-button {
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center;
    }

    .contact-image {
        max-height: 70px;
    }

    .contact-overlay {
        width: 100%;
    }

    .contact-dropdown {
        padding: 25px 20px 30px 20px;
        box-sizing: border-box;
    }

    .contact-content {
        max-width: 100%;
        padding: 0;
        margin-top: 15px;
    }

    .contact-form {
        width: 100%;
        max-width: 100%;
    }

    .contact-close {
        top: 20px;
        right: 20px;
        font-size: 2.5rem;
    }

    .contact-title-image {
        max-width: 120px;
    }

    .form-row {
        flex-direction: column;
        gap: 1.25rem;
    }

    .contact-form {
        gap: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 0.95rem;
    }

    .contact-submit {
        width: 100%;
        padding: 12px 24px;
        box-sizing: border-box;
        max-width: 100%;
    }

    .video-sound-control {
        bottom: 15px;
        right: 15px;
    }


    .sound-button {
        width: 40px;
        height: 40px;
    }

    .sound-icon {
        width: 24px;
        height: 24px;
    }

    .coming-soon-image-container {
        max-width: 400px;
    }

    .future-project {
        padding: 60px 20px;
    }

    .site-footer {
        padding: 30px 15px;
    }

    .footer-text {
        font-size: 0.85rem;
    }

    .footer-credits {
        font-size: 0.8rem;
    }
}
.instagram-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
}

.instagram-link:hover {
    text-decoration: underline;
}
