/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(135deg, var(--ancient-dark), #1a1a1a);
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(26, 26, 26, 0.7) 0%,
        rgba(26, 26, 26, 0.8) 50%,
        rgba(26, 26, 26, 0.9) 100%
    );
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    text-align: center;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    background: linear-gradient(45deg, #fff, #fff);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: #fff !important;
    border-color: #fff !important;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.3s forwards;
    color: #fff;
    color: #fff !important;
    border-color: #fff !important;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.6s forwards;
}

.hero-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 2;
}

.hero-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-nav-dot.active {
    background: var(--ancient-gold);
    transform: scale(1.2);
}

.hero-nav-dot:hover {
    background: var(--ancient-gold);
}

/* Welcome Section */
.welcome-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a1a1a, var(--ancient-dark));
    position: relative;
    overflow: hidden;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ancient-gold), transparent);
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.welcome-content {
    position: relative;
}

.welcome-content h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--ancient-gold), #ffd700);
    color: #fff !important;
    border-color: #fff !important;
}

.welcome-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #fff;
    color: #fff !important;
    border-color: #fff !important;
}

.welcome-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.welcome-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.welcome-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Features Section */
.features-section {
    padding: 8rem 0;
    background: linear-gradient(rgba(26, 26, 26, 0.95), rgba(26, 26, 26, 0.95)),
                url('/images/background-pattern.png');
    position: relative;
}

.features-header {
    text-align: center;
    margin-bottom: 5rem;
}

.features-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--ancient-gold), #ffd700);
    color: #fff !important;
    border-color: #fff !important;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-item {
    position: relative;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(40, 40, 40, 0.9));
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: var(--ancient-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.feature-item:hover::before {
    transform: translateX(100%);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--ancient-dark), var(--dark-gold));
    border: 2px solid var(--ancient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
}

.feature-icon i {
    color: var(--ancient-gold);
    font-size: 2.5rem;
}

.feature-content {
    text-align: center;
    color: #fff !important;
    border-color: #fff !important;
}

.feature-content h3 {
    color: var(--ancient-gold);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff !important;
    border-color: #fff !important;
}

.feature-content p {
    color: #fff;
    line-height: 1.6;
    margin: 0;
    color: #fff !important;
    border-color: #fff !important;
}

/* Updates Section */
.updates-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--ancient-dark), #1a1a1a);
    position: relative;
}

.updates-header {
    text-align: center;
    margin-bottom: 5rem;
}

.updates-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--ancient-gold), #ffd700);
    color: #fff !important;
    border-color: #fff !important;
}

.updates-timeline {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.updates-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--ancient-gold), transparent);
}

.update-item {
    position: relative;
    margin-bottom: 4rem;
    width: 50%;
    padding: 0 3rem;
}

.update-item:nth-child(odd) {
    left: 0;
}

.update-item:nth-child(even) {
    left: 50%;
}

.update-item::before {
    content: '';
    position: absolute;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--ancient-gold);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

.update-item:nth-child(odd)::before {
    right: -10px;
}

.update-item:nth-child(even)::before {
    left: -10px;
}

.update-content {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(40, 40, 40, 0.9));
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.update-content:hover {
    transform: translateY(-5px);
    border-color: var(--ancient-gold);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.1);
}

.update-date {
    color: var(--ancient-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff !important;
    border-color: #fff !important;
}

.update-title {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff !important;
    border-color: #fff !important;
}

.update-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.update-list li {
    color: #fff;
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.update-list li:last-child {
    border-bottom: none;
}

.update-list li i {
    color: var(--ancient-gold);
    margin-top: 0.25rem;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .welcome-grid {
        gap: 3rem;
    }
    
    .welcome-content h2 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        height: 80vh;
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .welcome-image {
        transform: none;
    }
    
    .welcome-image:hover {
        transform: translateY(-10px);
    }
    
    .updates-timeline::before {
        left: 30px;
    }
    
    .update-item {
        width: 100%;
        left: 0 !important;
        padding-left: 60px;
    }
    
    .update-item::before {
        left: 20px !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .welcome-content h2 {
        font-size: 2.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-item,
.update-item {
    animation: fadeInUp 0.6s ease-out forwards;
}

.feature-item:nth-child(2),
.update-item:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-item:nth-child(3),
.update-item:nth-child(3) {
    animation-delay: 0.4s;
}

.feature-item:nth-child(4),
.update-item:nth-child(4) {
    animation-delay: 0.6s;
}

/* Replace gold/yellow with white for all hero and home elements */
.hero-title, .hero-subtitle, .feature-content, .update-title, .lead, .update-list, .update-date, .ancient-btn, .ancient-title, .ancient-text {
    color: #fff !important;
    border-color: #fff !important;
}

.ancient-btn.btn-gold, .btn-primary {
    background: linear-gradient(135deg, #fff, #bbb) !important;
    color: #111 !important;
}

.ancient-btn.btn-gold:hover, .btn-primary:hover {
    background: linear-gradient(135deg, #bbb, #fff) !important;
    color: #111 !important;
} 