/* Global Styles */
body {
    margin: 0;
    font-family: 'Libre Baskerville', serif;
    background-color: #F1EDEA;
    color: #333333;
    text-align: center;
}

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

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    z-index: 2;
    position: relative;
    max-width: 800px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    margin: 10px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: all 0.3s;
}

.primary {
    background-color: #C9A678;
    color: white;
}

.primary:hover {
    background-color: #B08A5D;
}

.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.secondary:hover {
    background-color: white;
    color: #1B263B;
}

/* Features Section */
.features-section {
    padding: 60px 20px;
    background-color: #F8F8F8;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.feature-item {
    width: 300px;
    text-align: center;
}

.feature-item img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.feature-item img:hover {
    transform: scale(1.05);
}

/* Why LuxeList */
.why-luxelist {
    padding: 60px 20px;
}

.trust-badges img {
    width: 150px;
    margin: 10px;
}

/* AI Personalization */
.ai-personalization {
    background: #1B263B;
    color: white;
    padding: 60px 20px;
}

.premium {
    background-color: #C9A678;
    color: white;
}

.premium:hover {
    background-color: #B08A5D;
}

/* Community Section */
.community {
    padding: 60px 20px;
}

.community p {
    font-style: italic;
}

/* Footer */
footer {
    background-color: #1B263B;
    color: white;
    padding: 20px;
}

.footer-links a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}
