/* Custom Fonts */
@font-face {
    font-family: 'Shango';
    src: url('/fonts/Shango.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geometr321';
    src: url('/fonts/Geometr321.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Page Load Animations */
@keyframes fadeInFromTop {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Geometr321', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.2;
    font-size: 26px;
}

/* Apply Shango font to all headings and logo */
h1, h2, h3, h4, h5, h6,
.nav-center h1,
.nav-center h1 a {
    font-family: 'Shango', 'Geometr321', sans-serif;
}

/* Navigation */
nav {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 1.5rem 2rem;
    z-index: 1000;
    animation: fadeInFromTop 0.8s ease-out;
}

/* Mobile social icons in nav - hidden on desktop */
.nav-social-mobile {
    display: none;
}

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

.nav-left,
.nav-right {
    display: flex;
    gap: 2rem;
    flex: 1;
}

.nav-right {
    justify-content: flex-end;
}

.nav-center {
    flex: 0 0 auto;
}

.nav-center h1 {
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
}

.nav-center a {
    color: #fff;
    text-decoration: none;
    font-size: 3rem;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

nav a:hover {
    color: #888;
}

/* Footer */
footer {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    animation: fadeInFromBottom 0.8s ease-out;
}

.copyright {
    font-size: 0.8rem;
    order: 2;
    text-transform:uppercase;
}

.copyright a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: #888;
}

.social-links {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
    order: 1;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: #888;
    transform: translateY(-2px);
}

/* Social Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.modal.active {
    display: block;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    background-color: #000000;
    border: 2px solid #333;
    border-radius: 8px;
    padding: 3rem 2rem 2rem;
    max-width: 600px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, transform 0.3s ease;
}

.modal-close:hover {
    color: #888;
    transform: rotate(90deg);
}

.modal-content h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.modal-social-links {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: .5rem;
}

.modal-social-links a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: .5rem;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.modal-social-links a:hover {
    transform: translateY(-4px);
}

.modal-social-links a i {
    font-size: 1.5rem;
}

.modal-social-links a span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align:center;
}

/* Responsive modal */
@media (max-width: 768px) {
    .modal-social-links {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 1rem;
    }
    
    .modal-social-links a {
        padding: 1rem 0.5rem;
    }
    
    .modal-social-links a i {
        font-size: 2rem;
    }
    
    .modal-social-links a span {
        font-size: 0.8rem;
    }
}

/* Video Gallery Styles */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.video-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    background-color: #000;
    border: 2px solid #333;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.video-item:hover .video-thumbnail img {
    opacity: 0.7;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    transition: all 0.3s ease;
    pointer-events: none;
}

.play-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent #000;
}

.video-item:hover .play-button {
    background-color: rgba(255, 255, 255, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-title {
    margin-top: 1rem;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

/* Video Modal Styles */
.video-modal .modal-content {
    max-width: 1200px;
    width: 95%;
    padding: 0;
    background-color: #000;
    border: 2px solid #333;
}

.video-modal .modal-close {
    position: absolute;
    top: -3rem;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #fff;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0.5rem 1rem;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.video-modal .modal-close:hover {
    background-color: #fff;
    color: #000;
    transform: none;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Album Grid Styles */
.album-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 2rem;
}

.album-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.album-item:hover {
    transform: translateY(-5px);
}

.album-cover {
    width: 100%;
    margin-bottom: 1.5rem;
    overflow: hidden;
    background-color: #000;
    border: 2px solid #333;
}

.album-cover img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.album-item:hover .album-cover img {
    opacity: 0.8;
}

.album-title {
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    min-height: 3rem;
}

.album-item .btn {
    display: inline-block;
    width: auto;
    min-width: 120px;
    font-size: 0.8rem;
    padding: 0.7rem 1rem;
}

/* Signup Page Styles */
.signup-page {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.signup-subtitle {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

#mc_embed_signup {
    background: transparent;
    width: 100%;
}

.signup-form {
    width: 100%;
}

#mc_embed_signup_scroll {
    width: 100%;
}

.mc-field-group {
    margin-bottom: 2rem;
    text-align: left;
}

.mc-field-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}

.mc-field-group .asterisk {
    color: #fff;
}

.mc-field-group input[type="email"] {
    width: 100%;
    padding: 1rem;
    background-color: #000;
    border: 2px solid #fff;
    color: #fff;
    font-size: 1rem;
    font-family: 'Geometr321', sans-serif;
    transition: all 0.3s ease;
}

.mc-field-group input[type="email"]:focus {
    outline: none;
    border-color: #888;
    background-color: #111;
}

.signup-btn {
    width: 100%;
    margin-top: 1rem;
    cursor: pointer;
}

#mce-responses {
    margin-top: 1rem;
}

#mce-responses .response {
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid #fff;
}

#mce-error-response {
    background-color: #330000;
    color: #ff6666;
}

#mce-success-response {
    background-color: #003300;
    color: #66ff66;
}

/* Homepage Layout */
.home-container {
    min-height: calc(100vh - 230px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.three-column {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    width: 100%;
    align-items: center;
}

.column {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Staggered fade-in animations for homepage columns */
.home-container .column:nth-child(1) {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.home-container .column:nth-child(2) {
    animation: fadeIn 1.2s ease-out 0.5s both;
}

.home-container .column:nth-child(3) {
    animation: fadeInUp 1s ease-out 0.7s both;
}

.column h2 {
    font-size: 3rem;

    text-transform: uppercase;
    letter-spacing: 2px;
}

.column .small-heading {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.column .sub-text {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: #ccc;
}

.column img {
    max-width: 100%;
    height: auto;
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #fff;
    text-align: center;
}

.btn:hover {
    background-color: #000;
    color: #fff;
}

.btn-secondary {
    background-color: #000;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #000;
}

/* Inner Pages */
.page-container {
    min-height: 100vh;
    padding: 4rem 2rem 4rem 2rem;
}

.page-content {
    max-width: 1200px;
    margin: 0 auto;
}

.page-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.page-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    /* Show mobile social icons at top */
    .nav-social-mobile {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 1rem;
    }
    
    .nav-social-mobile a {
        color: #fff;
        font-size: 1.3rem;
        transition: color 0.3s ease, transform 0.3s ease;
    }
    
    .nav-social-mobile a:hover {
        color: #888;
        transform: translateY(-2px);
    }
    
    nav {
        display: flex;
        flex-direction: column;
        padding: 1rem 0.5rem;
    }
    
    /* Logo at top, menu items in row below */
    .nav-container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0;
        justify-content: center;
        align-items: center;
    }
    
    /* Logo takes full width and appears first */
    .nav-center {
        width: 100%;
        order: 1;
        text-align: center;
        margin-bottom: 0.75rem;
    }
    
    .nav-center h1 {
        font-size: 1.1rem;
    }
    
    .nav-center a {
        font-size: 2rem;
    }
    
    /* Both nav sections sit side by side on same row */
    .nav-left,
    .nav-right {
        order: 2;
        flex: 0 0 auto;
    }
    
    .nav-left {
        justify-content: flex-end;
    }
    
    .nav-right {
        justify-content: flex-start;
    }
    
    nav ul {
        gap: 0.2rem;
        flex-wrap: nowrap;
        margin: 0;
        padding: 0;
    }
    
    nav a {
        font-size: 1rem;
        letter-spacing: 0px;
        padding: 0.3rem 0.4rem;
        white-space: nowrap;
    }
    
    /* Push content below the taller mobile navigation */
    .home-container {
        height: auto;
        min-height: 100vh;
    }
    
    .page-container {
        padding-top: 4rem;
    }
    
    /* Reorder homepage columns on mobile: Image, Left, Right */
    .three-column {
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }
    
    .three-column .column:nth-child(1) {
        order: 2;
    }
    
    .three-column .column:nth-child(2) {
        order: 1;
    }
    
    .three-column .column:nth-child(3) {
        order: 3;
    }
    
    footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        position: relative;
    }
    
    .page-content h1 {
        font-size: 2rem;
    }
    
    /* Video grid mobile responsive */
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-modal .modal-close {
        top: -2.5rem;
        font-size: 1.5rem;
        padding: 0.3rem 0.7rem;
    }
    
    /* Album grid mobile responsive */
    .album-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}
