/* Shared styles across all pages */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
}

.bg-concrete-texture {
    background-image: url('http://static.photos/abstract/1200x630/42');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-clock-texture {
    background-image: url('http://static.photos/minimal/1200x630/7');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hover\:shadow-glow:hover {
    box-shadow: 0 0 20px rgba(246, 189, 136, 0.5);
}

/* FAQ Animation */
.faq-item {
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #F6BD88;
}

.faq-question {
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-question:hover {
    color: #F6BD88;
}

.faq-icon.rotate-180 {
    transform: rotate(180deg);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #F6BD88 0%, #EFA869 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #EFA869 0%, #F6BD88 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .text-6xl {
        font-size: 2.5rem;
    }
    
    .text-4xl {
        font-size: 2rem;
    }
    
    .text-2xl {
        font-size: 1.25rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}

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

/* Gradient Text */
.gradient-text {
    background: linear-gradient(90deg, #F6BD88 0%, #EFA869 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}