/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background: #000000;
    min-height: 100vh;
    color: #2d1f1a;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, 
        #000000 0%, 
        #000000 15%, 
        #ffffff 15%, 
        #ffffff 85%, 
        #000000 85%, 
        #000000 100%);
    z-index: -1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
    padding-top: 1rem;
}

.logo img {
    max-width: 350px;
    width: 100%;
    height: auto;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
    background: transparent;
    padding: 1rem;
}

.logo img:hover {
    transform: scale(1.05);
    opacity: 1;
}

/* Main content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 2rem 0;
    align-items: center;
}

.bottom-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    align-items: center;
}

/* Construction message */
.construction-message {
    animation: fadeIn 1.5s ease-out 0.5s both;
    text-align: center;
    margin-bottom: 2rem;
}

.construction-message h2 {
    font-family: 'Gotham Black', 'Gotham Bold', 'Gotham', 'Source Sans Pro', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #2d1f1a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.coming-soon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #fae257;
    font-style: italic;
    text-shadow: 
        -1px -1px 0 #2d1f1a,
        1px -1px 0 #2d1f1a,
        -1px 1px 0 #2d1f1a,
        1px 1px 0 #2d1f1a;
}

/* Established info */
.established-info {
    animation: fadeIn 1.5s ease-out 1s both;
}

.established {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fae257;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-shadow: 
        -1px -1px 0 #2d1f1a,
        1px -1px 0 #2d1f1a,
        -1px 1px 0 #2d1f1a,
        1px 1px 0 #2d1f1a;
}

.divider {
    width: 80px;
    height: 2px;
    background: #fae257;
    margin: 1.5rem auto;
    box-shadow: 0 0 0 1px #2d1f1a;
}

.tagline {
    font-size: 1.125rem;
    font-weight: 300;
    color: #2d1f1a;
    font-style: italic;
}

/* Contact info */
.contact-info {
    animation: fadeIn 1.5s ease-out 1.5s both;
}

.contact-info p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #2d1f1a;
}

.email {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fae257;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    text-shadow: 
        -1px -1px 0 #2d1f1a,
        1px -1px 0 #2d1f1a,
        -1px 1px 0 #2d1f1a,
        1px 1px 0 #2d1f1a;
}

.email:hover {
    color: #2d1f1a;
    border-bottom-color: #fae257;
    font-weight: 700;
    text-shadow: none;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 0;
    animation: fadeInUp 1s ease-out 2s both;
}

.footer p {
    font-size: 0.875rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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


/* Carousel */
.carousel-container {
    width: 100%;
    max-width: 600px;
    margin: 2rem auto;
    animation: fadeIn 1.5s ease-out 1s both;
}

.carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-track {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-image {
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.carousel-image.active {
    opacity: 1;
    position: relative;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(250, 226, 87, 0.9);
    color: #2d1f1a;
    border: 2px solid #2d1f1a;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.carousel-btn:hover {
    background: #fae257;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: -25px;
}

.carousel-btn.next {
    right: -25px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(45, 31, 26, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #2d1f1a;
}

.dot:hover {
    background: rgba(250, 226, 87, 0.5);
}

.dot.active {
    background: #fae257;
    transform: scale(1.2);
}

/* Responsive design */

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .logo img {
        max-width: 250px;
    }
    
    .construction-message h2 {
        font-size: 2.5rem;
    }
    
    .coming-soon {
        font-size: 1.25rem;
    }
    
    .established {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .carousel-track {
        max-width: 300px;
        height: 400px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .carousel-btn.prev {
        left: -20px;
    }
    
    .carousel-btn.next {
        right: -20px;
    }
}

@media (max-width: 480px) {
    body::before {
        background: linear-gradient(to right, 
            #000000 0%, 
            #000000 5%, 
            #ffffff 5%, 
            #ffffff 95%, 
            #000000 95%, 
            #000000 100%);
    }
    
    .logo img {
        max-width: 200px;
    }
    
    .construction-message h2 {
        font-size: 2rem;
    }
    
    .coming-soon {
        font-size: 1.125rem;
    }
    
    .established {
        font-size: 0.875rem;
        letter-spacing: 1px;
    }
    
    .tagline {
        font-size: 0.875rem;
    }
    
    .email {
        font-size: 1rem;
    }
    
    .carousel-track {
        max-width: 250px;
        height: 350px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1.25rem;
    }
    
    .carousel-btn.prev {
        left: -15px;
    }
    
    .carousel-btn.next {
        right: -15px;
    }
}
