/* Global Styles */
:root {
    --dark-bg: #1a1a1a;
    --darker-bg: #0f0f0f;
    --gold: #ffd700;
    --gold-hover: #ffed4a;
    --text-light: #ffffff;
    --text-gray: #cccccc;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Dark Theme */
.dark-theme {
    background-color: var(--dark-bg);
    color: var(--text-light);
}

.dark {
    background-color: var(--darker-bg);
}

.gold-text {
    color: var(--gold);
}

/* Header */
header {
    background-color: var(--darker-bg);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--gold);
}

/* Hero Section */
#hero {
    padding: 150px 0 100px;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://www.panadahookah.com/wp-content/uploads/2024/07/tasli3-1-600x900.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

#hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

#hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Buttons */
.gold-button {
    background-color: var(--gold);
    color: var(--darker-bg);
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.gold-button:hover {
    background-color: var(--gold-hover);
}

.outline-button {
    background-color: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 10px 28px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.outline-button:hover {
    background-color: var(--gold);
    color: var(--darker-bg);
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.product-card {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    padding: 1rem;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
}

.product-card h3 {
    margin: 1rem 0;
    font-size: 1.5rem;
}

.rating {
    color: var(--gold);
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 1rem 0;
}

.description {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Video Gallery */
.video-slider {
    padding: 2rem 0;
}

.video-card {
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail {
    position: relative;
}

.video-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.video-card:hover .play-button {
    opacity: 1;
}

/* Image Gallery */
.gallery-card {
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-card:hover .gallery-overlay {
    transform: translateY(0);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--gold) !important;
}

.swiper-pagination-bullet {
    background: var(--gold) !important;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    padding: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-answer {
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1rem;
    max-height: 500px;
}

.faq-item.active .fa-chevron-down {
    transform: rotate(180deg);
}

/* Contact Section */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.contact-info i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.social-links {
    text-align: center;
}

/* Footer */
footer {
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 60px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--gold);
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-icons a {
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--gold-hover);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Modal Styles */
.video-modal,
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: -40px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 0.5rem;
    }

    #hero {
        padding: 120px 0 80px;
    }

    #hero h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .outline-button {
        margin-left: 0;
    }

    .close-modal {
        right: 0;
    }
}

/* Section Padding */
section {
    padding: 4rem 0;
}

/* Section Titles */
section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
} 