* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #121212;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
nav{
    position: fixed !important;
    width: 100%;
    z-index: 1000;
}

.navbar {
    background-color: #1c1c1c !important;
}

.navbar-brand {
    color: #d4af37 !important;
    font-weight: bold;
    font-size: 1.5rem;
    padding: 10px 15px;
}

.navbar-nav {
    margin: 0 auto;
}

.navbar-brand:hover {
    color: #cda34d !important;
    text-decoration: none;
    transform: scale(1.1);
}

.icon {
    color: #d4af37;
}

.nav-link {
    color: #ffffff !important;
    font-weight: 500;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #d4af37 !important;
    transform: scale3d(1.5, 1.5, 1.5);
}


.search-input::placeholder {
    color: #aaa;
}


.search-btn:hover {
    background-color: #cda34d;
    color: black;
    border: 2px solid #000;
}

.carousel-item {
    margin-top: 70px;
    position: relative;
}

.carousel-item img {
    height: auto;
    opacity: 0.7;
}

.search-input {
    border: 2px solid #d4af37;
    border-radius: 20px;
    padding: 5px 10px;
    background-color: transparent;
    color: #fff;
}


.search-input:focus {
    background-color: #1c1c1c;
    color: white;
    border-color: #FFD700;
    box-shadow: 0 0 5px #FFD700;
    outline: none;
}

.search-btn {
    background-color: #d4af37;
    border: none;
    border-radius: 20px;
    padding: 5px 15px;
    color: #1c1c1c;
    font-weight: bold;
    transition: all 0.3s ease;
}


.search-btn:hover,
.search-btn:focus {
    background-color: #FFD700;
    color: black;
    border: 2px solid black;
    box-shadow: 0 0 5px #FFD700;
    outline: none;
}

h1.display-4 {
    color: #d4af37;
    margin-top: 20px;
}

p.lead {
    color: #ffffff;
    margin-bottom: 20px;
}
.featured-section {
    background-color: #0a0a0a;
    padding: 80px 0;
}

.featured-card {
    background: linear-gradient(145deg, #1c1c1c, #2a2a2a);
    border: 2px solid #d4af37;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.featured-icon {
    font-size: 4rem;
    color: #d4af37;
    margin-bottom: 25px;
}

.featured-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.featured-description {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.6;
}

.choose-us{
    align-items: center;
    text-align: center;
}
.lux-about {
    background-color: transparent;
    color: #f5f5f5;
}
.lux-text{
    margin-top: 30px;
}

.lux-text {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

html {
    scroll-behavior: smooth;
}

.lux-footer {
    background-color: transparent;
    color: #f5f5f5;
}

.lux-footer .text-gold {
    color: #d4af37;
    text-decoration: none;
}

.lux-footer .text-gold:hover {
    color: #ffd700;
    text-decoration: underline;
}

.lux-footer .social-icons i {
    transition: color 0.3s ease;
}

.lux-footer .social-icons i:hover {
    color: #ffd700;
}

.celeb-swiper {
    background-color: #121212;
}

.celeb-thumb {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #d4af37;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.celeb-thumb:hover {
    transform: scale(1.1);
}

.celeb-name {
    color: #eee;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.contact-form-section {
    background-color: #000;
    padding: 80px 0;
}

.contact-form-section h2,
.contact-form-section p {
    color: #d4af37;
}

.contact-form-section .form-control {
    background-color: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
    padding: 15px;
    font-size: 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-form-section .form-control:focus {
    background-color: rgba(212, 175, 55, 0.05);
    border-color: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    outline: none;
    color: #d4af37;
}

.contact-form-section .form-control::placeholder {
    color: #d4af37;
    opacity: 0.6;
}

.contact-form-section .btn {
    background-color: #d4af37;
    color: black;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form-section .btn:hover {
    background-color: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}