body.dark-theme {
    background-color: #121212;
    color: #e0e0e0;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.glassy-nav {
    background: rgba(0, 0, 0, 0.5) !important;
    box-shadow: none;
    backdrop-filter: blur(10px);
}

.brand-logo {
    padding-left: 20px;
    font-size: 1.8rem;
}

.parallax-container {
    height: 500px;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    padding: 20px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeIn 2s ease-in;
}

.hero-buttons a {
    margin: 0 10px;
    transition: background-color 0.3s ease;
}

.hero-buttons a:hover {
    opacity: 0.9;
}

.section-title {
    margin-bottom: 40px;
    font-weight: 300;
}

.menu-img {
    transition: transform 0.3s ease;
}

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

.flip-card {
    background-color: transparent;
    width: 100%;
    height: 300px;
    perspective: 1000px;
    margin-bottom: 30px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 8px;
    overflow: hidden;
}

.flip-card-front svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flip-card-front .deal-content,
.flip-card-back .deal-content {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    color: #fff;
}

.flip-card-back {
    background-color: #333;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-card {
    background-color: #1e1e1e;
    border: none;
    box-shadow: none;
}

.testimonial-profile {
    margin-bottom: 10px;
}

.testimonial-img {
    margin-right: 10px;
}

.testimonial-name {
    font-weight: 500;
    margin-right: 10px;
}

.modal .modal-content {
    background-color: #212121;
    color: #e0e0e0;
}

.modal .input-field input:focus + label {
    color: #f44336 !important;
}

.modal .input-field input:focus {
    border-bottom: 1px solid #f44336 !important;
    box-shadow: 0 1px 0 0 #f44336 !important;
}

.page-footer {
    background-color: #1e1e1e;
}

.page-footer ul li a:hover {
    color: #f44336;
}

.countdown {
    font-weight: bold;
}

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

@media only screen and (max-width: 600px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-buttons a {
        margin: 10px 0;
        display: block;
    }
    .card .card-content {
        padding: 10px;
    }
    .section {
        padding: 40px 0;
    }
    .parallax-container {
        height: 300px;
    }
}
