@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@900&family=Bebas+Neue&family=Oswald:wght@700&family=Montserrat:wght@900&family=Raleway:wght@900&family=Poppins:wght@900&family=Space+Grotesk:wght@700&family=Inter:wght@900&display=swap');

/* Homepage Container */
.homepage-container {
    display: none;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 50%, #e8e8e8 100%);
    position: relative;
}

.homepage-container.show {
    display: block;
}

/* Homepage Image Wrapper */
.homepage-image-wrapper {
    width: 100%;
    height: 100vh;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 50%, #e8e8e8 100%);
    margin: 0;
    padding: 0;
}

/* Homepage Image */
#homepageImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
}

/* Vertical center line */
.vertical-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #000;
    transform: translateX(-50%);
    z-index: 5;
}

.vertical-line-top {
    top: 0;
    height: calc(50% - 150px);
}

.vertical-line-bottom {
    top: calc(50% + 150px);
    height: calc(50% - 150px);
}

/* Homepage year text */
.homepage-year {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: #000;
    font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
    font-size: 1rem;
    font-weight: normal;
    z-index: 100;
}

/* Hide top vertical line on homepage */
.homepage-image-wrapper .vertical-line-top {
    display: none;
}

/* Adjust bottom stroke position on homepage */
.homepage-image-wrapper .vertical-line-bottom {
    top: calc(50% + 120px);
    height: calc(50% - 220px);
}

/* Invisible buttons on homepage */
.homepage-buttons {
    position: absolute;
    top: 21%;  /* DECREASE this value to move UP (e.g., 24%, 22%, 20%) */
    left: 58%;  /* INCREASE this value to move RIGHT (e.g., 56%, 58%, 60%) */
    transform: translateX(-50%);
    display: none;
    z-index: 100;
    width: 404px;
    height: 60px;
}

.homepage-buttons.show {
    display: block;
}

.homepage-btn {
    height: 60px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
}

.homepage-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

/* Onstage button */
#onstageBtn {
    left: 74px;
    width: 110px;
}

/* About button */
#aboutBtn {
    left: 190px;
    width: 90px;
}

/* Contact button */
#contactBtn {
    left: 275px;
    width: 90px;
}

/* Navigation Menu */
.nav-menu {
    position: absolute;
    bottom: 45.5%;
    left: 50%;
    transform: translateX(-66%);
    z-index: 100;
    display: none;
    gap: 117px;
    align-items: flex-end;
}

.nav-menu.show {
    display: flex;
}

.nav-item {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-label {
    display: none;
}

.nav-circle {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.nav-item:hover .nav-circle {
    border-color: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

/* FAQ Section */
.faq-section {
    background: #1a1a1a;
    padding: 80px 120px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-section h2 {
    font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    fill: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-top: 16px;
}

/* Footer */
.footer {
    position: static;
    width: 100%;
    background: #000;
    z-index: 101;
    padding: 60px 80px 40px 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.footer-left h2 {
    font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 20px 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.footer-left a.footer-email {
    display: block;
    font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
    line-height: 1.5;
}

.footer-left a.footer-email:hover {
    color: #fff;
}

.footer-nav {
    display: flex;
    gap: 60px;
    padding-top: 8px;
}

.footer-nav-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-nav-column a {
    font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.footer-nav-column a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-address {
    font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #fff;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.social-icons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-icon {
    width: 18px;
    height: 18px;
    opacity: 0.5;
    transition: all 0.3s ease;
    cursor: pointer;
    fill: #fff;
}

.social-icon:hover {
    opacity: 1;
    transform: scale(1.1);
}

.footer-copyright {
    font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Hide old home button */
.home-btn {
    display: none;
}

/* Scroll to top button - processor knob style matching view-toggle */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 36px;
    height: 36px;
    background: linear-gradient(145deg, #c4c4c4, #a8a8a8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.6),
        inset 0 -2px 4px rgba(0, 0, 0, 0.15),
        0 4px 8px rgba(0, 0, 0, 0.25),
        0 8px 20px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: linear-gradient(145deg, #d0d0d0, #b4b4b4);
    transform: scale(1.05) translateY(-2px);
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.7),
        inset 0 -2px 4px rgba(0, 0, 0, 0.15),
        0 6px 12px rgba(0, 0, 0, 0.3),
        0 12px 28px rgba(0, 0, 0, 0.25);
}

/* Circular progress indicator */
.scroll-progress {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
}

.scroll-progress circle {
    fill: none;
    stroke: rgba(0, 0, 0, 0.6);
    stroke-width: 2;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: center;
    transition: stroke-dashoffset 0.1s linear;
}

/* Arrow icon */
.scroll-arrow {
    width: 14px;
    height: 14px;
    color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Fixed Home Button - Bottom Left - processor knob style */
.fixed-home-btn {
    position: fixed;
    bottom: 30px;
    left: 50px;
    background: linear-gradient(145deg, #c4c4c4, #a8a8a8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 25px;
    width: 50px;
    height: 50px;
    color: rgba(0, 0, 0, 0.7);
    font-size: 1.8rem;
    font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.6),
        inset 0 -2px 4px rgba(0, 0, 0, 0.15),
        0 4px 8px rgba(0, 0, 0, 0.25),
        0 8px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding-top: 2px;
}

.fixed-home-btn.visible {
    opacity: 1;
    visibility: visible;
}

.fixed-home-btn:hover {
    background: linear-gradient(145deg, #d0d0d0, #b4b4b4);
    transform: scale(1.05) translateY(-2px);
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.7),
        inset 0 -2px 4px rgba(0, 0, 0, 0.15),
        0 6px 12px rgba(0, 0, 0, 0.3),
        0 12px 28px rgba(0, 0, 0, 0.25);
}

/* Fixed Social Icons - Bottom Right - processor knob style */
.social-icons#fixedSocialIcons {
    position: fixed;
    bottom: 35px;
    right: 110px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 12px 20px;
    background: linear-gradient(145deg, #c4c4c4, #a8a8a8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 40px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.6),
        inset 0 -2px 4px rgba(0, 0, 0, 0.15),
        0 4px 8px rgba(0, 0, 0, 0.25),
        0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-icons#fixedSocialIcons.visible {
    opacity: 1;
    visibility: visible;
}

.social-icons#fixedSocialIcons:hover {
    background: linear-gradient(145deg, #d0d0d0, #b4b4b4);
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.7),
        inset 0 -2px 4px rgba(0, 0, 0, 0.15),
        0 6px 12px rgba(0, 0, 0, 0.3),
        0 12px 28px rgba(0, 0, 0, 0.25);
}

.social-icons#fixedSocialIcons .social-icon {
    fill: rgba(0, 0, 0, 0.6);
}

.social-icons#fixedSocialIcons .social-icon:hover {
    fill: rgba(0, 0, 0, 0.9);
}

/* Contact overlay */
.contact-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.contact-content {
    background: white;
    padding: 60px 80px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    max-width: 600px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.contact-overlay.active .contact-content {
    animation: scaleIn 0.3s ease forwards;
}

@keyframes scaleIn {
    to {
        transform: scale(1);
    }
}

.contact-header {
    font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-phone {
    font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
    font-size: 1.2rem;
    font-weight: normal;
    color: #000;
    margin: 20px 0;
}

.contact-email {
    font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 30px;
}

.contact-socials {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.contact-social-icon {
    width: 32px;
    height: 32px;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.contact-social-icon:hover {
    opacity: 1;
    transform: scale(1.2);
}

/* Close button - processor knob style (inverted like toggle-slider) */
.close-contact {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 28px;
    height: 28px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 2px 6px rgba(0, 0, 0, 0.2),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2),
        inset 0 2px 3px rgba(255, 255, 255, 0.1);
}

.close-contact:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.05);
}

/* Close button for In The Works overlay - same style */
.close-inworks {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 28px;
    height: 28px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 2px 6px rgba(0, 0, 0, 0.2),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2),
        inset 0 2px 3px rgba(255, 255, 255, 0.1);
}

.close-inworks:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.05);
}
