/* style.css */
/* Additional custom styles beyond Tailwind */

/* Timeline step circles hover effect */
.timeline-step:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease-in-out;
}

/* Custom animations or transitions can be added here */
.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (min-width: 768px) {
    /* Add any specific tablet/desktop styles here */
    .main-content {
        max-width: 768px;
        margin: 0 auto;
    }
}

/* Add these styles after your existing CSS */

.hero-section {
    background-image: url('images/cover.png');
    background-size: cover;
    background-position: center;
    height: 24rem;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 0rem;
    z-index: 10;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    margin-top: 18rem;
}

.header-section {
    background-color: #20469B;
    width: 100%;
}

/* Add these styles after your existing hero-section styles */

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.store-button {
    height: 3rem; /* equivalent to h-12 in Tailwind */
    border-radius: 0.5rem; /* equivalent to rounded-lg in Tailwind */
}

.store-button:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease-in-out;
}

.store-buttons a {
    display: inline-block;
    text-decoration: none;
}

.store-buttons a:hover {
    opacity: 0.9;
}

/* Add these styles for the timeline steps */
.timeline-step {
    width: 2.5rem;  /* slightly larger than before */
    height: 2.5rem; /* make it perfectly square */
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 9999px;
    font-size: 1rem;
    position: relative;
    z-index: 10;
    margin-top: 0rem; /* to center with the text */

}

/* Adjust the timeline line positioning */
.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 1.25rem; /* centers the line with the circle (2.5rem/2) */
    width: 2px;
    background-color: #E5E7EB;
    z-index: 5;
}

/* Add these styles for the gameplay images */
.gameplay-image {
    margin-top: 0.5rem;  /* mt-2 */
    border-radius: 0.5rem;  /* rounded-lg */
    border-width: 2px;  /* border-2 */
    border-color: #E5E7EB;  /* border-gray-200 */
    width: 16rem;  /* w-64 */
}

/* Feature Carousel Styles */
.feature-carousel {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

.feature-cards {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.feature-card {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-card.active {
    opacity: 1;
}

.feature-image {
    height: auto;
    max-height: 300px;
    object-fit: contain;
    border-radius: 0.5rem;
    border: 5px solid rgba(0, 0, 0, 0.1);
}

.feature-description {
    font-size: 1rem;
    color: #4B5563;
    flex: 1;
    text-align: left;
}

/* Navigation Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.2s ease;
}

.left-nav {
    left: -10px;
}

.right-nav {
    right: -10px;
}

/* Indicator Dots */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.indicator-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4B5563;
    font-size: 0.875rem;
}

.indicator-dot.active {
    background-color: rgba(239, 68, 68, 0.2);
}

/* Add these styles for the language dropdown */
#languageDropdown {
    z-index: 50;  /* Higher z-index to appear above other elements */
}