/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Hero Section */
.about-hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slider-item.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 60px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    z-index: 2;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-dot.active {
    background: #d4af37;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 15px 30px;
    background: #d4af37;
    color: #fff;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    background: #b8972e;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.6);
}

.btn.secondary {
    background: #2d2d2d;
}

.btn.secondary:hover {
    background: #1a1a1a;
}

/* Our Story Section */
.our-story {
    padding: 80px 20px;
    text-align: center;
    background: #f9f9f9; /* Fallback background color */
    position: relative;
    overflow: hidden;
}

.our-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: rgba(255, 255, 255, 0.4);*/
    z-index: 0;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.story-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #2d2d2d;
}

.story-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Our Values Section */
.our-values {
    padding: 80px 20px;
    text-align: center;
}

.our-values h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #2d2d2d;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.value-card i {
    font-size: 40px;
    color: #d4af37;
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2d2d2d;
}

.value-card p {
    font-size: 16px;
    color: #666;
}

/* CTA Section */
.cta {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #d4af37, #b8972e);
    color: #fff;
}

.cta h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta .btn {
    background: #fff;
    color: #2d2d2d;
}

.cta .btn:hover {
    background: #f0f0f0;
    color: #d4af37;
}

/* Animations */
.animate-section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.animate-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.animate-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-reveal[data-delay] {
    transition-delay: var(--delay);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 48px;
    }
    .hero-content p {
        font-size: 20px;
    }
    .btn {
        padding: 12px 25px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 90vh;
    }
    .hero-content h1 {
        font-size: 36px;
    }
    .hero-content p {
        font-size: 18px;
    }
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .about-hero {
        height: 90vh;
    }
    .hero-content h1 {
        font-size: 28px;
    }
    .hero-content p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    .slider-dot {
        width: 8px;
        height: 8px;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
}