/* Dark Theme Styles */
:root {
    --bg-color: #121212;
    --text-color: #dfb066;
    --primary-color: #bb86fc;
    --secondary-color: #03dac6;
    --surface-color: #2a2825;
    --accent-color: #8ed69c;
    --error-color: #cf6679;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Navigation */
header {
    background-color: var(--surface-color);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 2rem;
    padding: 0 20px;
}

nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border-radius: 5px;
    font-size: 1.1rem;
}

nav ul li a:hover {
    background-color: var(--primary-color);
    color: var(--bg-color);
}

/* Sections */
.section {
    padding: 4rem 2rem;
    min-height: 100vh;
}

.section h2  {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--accent-color);
    font-size: 2.5rem;
    font-weight: 700;
}
.section h3  {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--accent-color);
    font-size: 2.0rem;
    font-weight: 600;
}
/* Home Section - Slider */
.slider-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.slider {
    position: relative;
    width: 100%;
}

.slider img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: none;
}

.slider img:first-child {
    display: block;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background-color: var(--primary-color);
}

.prev-btn {
    left: 2rem;
}

.next-btn {
    right: 2rem;
}

/* About Us Section */
.about-container {
    display: flex;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    gap: 4rem;
    align-items: center;
}

.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #d0d0d0;
    text-align: center;
    padding: 0 1rem;
}

.text-box {
    background-color: var(--surface-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-left: 4px solid var(--accent-color);
}

.text-box h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.text-box p {
    color: #d0d0d0;
    line-height: 1.7;
}

.safari-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--bg-color);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    align-self: center;
    margin-top: 1rem;
    font-size: 1.1rem;
    box-shadow: 0 4px 8px rgba(230, 126, 34, 0.3);
}

.safari-btn:hover {
    background-color: #0ee1f8;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(1, 75, 78, 0.4);
}

.safari-btn i {
    margin-left: 10px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Contact Us Section */
.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s;
    width: 220px;
}

.instagram {
    background-color: #E1306C;
}

.whatsapp {
    background-color: #25D366;
}

.facebook {
    background-color: #3b5998;
}

.map {
    background-color: #c0d13b;
}

.contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    background-color: var(--surface-color);
    color: var(--text-color);
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .about-image img {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 1.5rem;
    }
    
    .slider img {
        height: 400px;
    }
    
    .slider-btn {
        width: 50px;
        height: 50px;
        padding: 1rem;
        font-size: 1.2rem;
    }
    
    .contact-buttons {
        gap: 1.5rem;
    }
    
    .contact-btn {
        width: 180px;
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    nav ul {
        gap: 1rem;
    }
    
    .slider img {
        height: 300px;
    }
    
    .about-image img {
        height: 400px;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn {
        width: 100%;
        max-width: 250px;
    }
}