/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Disable text selection and right-click for protection */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

img, video {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
    -webkit-touch-callout: none;
}

/* Disable right-click context menu */
* {
    -webkit-context-menu: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

ul {
    list-style: none;
}

/* ===== NAVIGATION ===== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    background: transparent;
}

.main-nav.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
}

.main-nav.white-bg {
    background: rgba(255, 255, 255, 0.95);
    color: #000000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 40px;
}

.logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 60px;
    align-items: center;
}

.nav-link {
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: currentColor;
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== HOMEPAGE SLIDER ===== */
.homepage-slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slider-container {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* ===== GALLERY STYLES ===== */
.page-container {
    min-height: 100vh;
    padding-top: 100px;
}

.page-header {
    text-align: center;
    padding: 60px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.page-description {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: #cccccc;
}

/* Masonry Gallery */
.masonry-gallery {
    columns: 4;
    column-gap: 30px;
    padding: 0 40px;
    margin-bottom: 100px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item video {
    width: 100%;
    height: auto;
}

/* Sub Navigation */
.sub-nav {
    background: transparent;
    padding: 20px 0;
    text-align: center;
    margin-bottom: 60px;
}

.sub-nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.sub-nav a {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 300;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    position: relative;
}

.sub-nav a:hover,
.sub-nav a.active {
    opacity: 1;
}

/* ===== MODAL STYLES ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: #000000;
    border: 1px solid #333333;
    padding: 60px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.modal-content h2 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.modal-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #cccccc;
}

.modal-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-confirm,
.btn-cancel {
    padding: 12px 30px;
    border: 1px solid #ffffff;
    background: transparent;
    color: #ffffff;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-confirm:hover {
    background: #ffffff;
    color: #000000;
}

.btn-cancel:hover {
    background: #333333;
}

/* ===== SHOP NOTICE ===== */
.shop-notice {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 20px 30px;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 100;
}

.shop-notice a {
    color: #ffffff;
    text-decoration: underline;
}

/* ===== VIDEO BACKGROUND ===== */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.video-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* ===== FOOTER ===== */
.main-footer {
    background: #000000;
    border-top: 1px solid #333333;
    padding: 40px 0;
    margin-top: auto;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-contact,
.footer-copyright {
    font-size: 0.8rem;
    color: #999999;
    letter-spacing: 0.5px;
}

.footer-contact a {
    color: #ffffff;
    transition: opacity 0.3s ease;
}

.footer-contact a:hover {
    opacity: 0.7;
}

/* ===== CONNECT PAGE STYLES ===== */
.connect-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 100px 40px 40px;
}

.connect-logo {
    margin-bottom: 60px;
}

.connect-logo img {
    height: 80px;
    width: auto;
}

.connect-info {
    max-width: 600px;
    line-height: 2;
}

.connect-info p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #cccccc;
    font-weight: 300;
}

.connect-info a {
    color: #ffffff;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.connect-info a:hover {
    opacity: 0.7;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .masonry-gallery {
        columns: 3;
        column-gap: 20px;
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 60px;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .masonry-gallery {
        columns: 2;
        column-gap: 15px;
        padding: 0 15px;
    }
    
    .page-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .page-header {
        padding: 40px 20px;
    }
    
    .sub-nav ul {
        gap: 20px;
        padding: 0 20px;
    }
    
    .shop-notice {
        bottom: 20px;
        right: 20px;
        left: 20px;
        font-size: 0.7rem;
        padding: 15px 20px;
    }
    
    .modal-content {
        margin: 20px;
        padding: 40px 20px;
    }
    
    .modal-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .connect-logo img {
        height: 60px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .masonry-gallery {
        columns: 1;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .nav-link {
        font-size: 16px;
        margin: 10px 0;
    }
}
