/* styles.css */

:root {
    --primary-color: #d4af37;
    --secondary-color: #333333;
    --text-color: #333333;
    --background-color: #ffffff;
    --accent-color: #f8f8f8;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.main-content-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: var(--font-secondary);
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Header Styles */
header {
    background-color: var(--background-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 50px;
    transition: filter 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

@media (max-width: 768px) {
    .nav-links a::after {
        display: none;
    }
}

.book-button {
    background-color: var(--primary-color);
    color: var(--background-color) !important;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    height: 40px;
    text-decoration: none;
}

.book-button:hover {
    background-color: transparent;
    color: var(--primary-color) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.nav-controls {
    display: flex;
    align-items: center;
}

#language-selector {
    margin-right: 1rem;
    padding: 0.3rem;
    border: 1px solid var(--secondary-color);
    border-radius: 5px;
    background-color: var(--background-color);
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

#dark-mode-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.mobile-menu-toggle {
    display: none;
}

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

.hero-content {
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    max-width: 600px;
    transition: background-color 0.3s ease;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    min-width: 150px;
    min-height: 50px;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Section Styles */
.full-width-background {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: 5rem 0;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Services Section */
.services {
    background-color: var(--accent-color);
    transition: background-color 0.3s ease;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-item {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-item h3 {
    margin-bottom: 1rem;
}

/* About Us Section */
.about-us {
    background-color: var(--background-color);
    transition: background-color 0.3s ease;
    padding: 4rem 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-image {
    flex: 1;
    max-width: 500px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    transition: filter 0.3s ease;
}

.about-text {
    flex: 1;
    max-width: 600px;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.learn-more-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    color: var(--background-color);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
    min-width: 150px;
    min-height: 45px;
}

.learn-more-button:hover {
    background-color: transparent;
    color: var(--secondary-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive design for About section */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-image,
    .about-text {
        max-width: 100%;
    }

    .about-text h2 {
        text-align: center;
    }

    .learn-more-button {
        margin: 1rem auto 0;
        display: block;
        max-width: 200px;
    }
}

/* Dark mode styles for About section */
body.dark-mode .about-us {
    background-color: var(--accent-color);
}

body.dark-mode .about-text h2,
body.dark-mode .about-text p {
    color: var(--text-color);
}

body.dark-mode .learn-more-button {
    background-color: var(--primary-color);
    color: var(--background-color);
    border-color: var(--primary-color);
}

body.dark-mode .learn-more-button:hover {
    background-color: transparent;
    color: var(--primary-color);
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
}

/* Payment Methods Section */
.payment-methods {
    background-color: var(--accent-color);
    transition: background-color 0.3s ease;
}

.payment-options {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.payment-option {
    flex: 1;
    min-width: 250px;
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.payment-option:hover {
    transform: translateY(-5px);
}

.payment-option i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

/* Contact Section */
.contact {
    background-color: var(--background-color);
    transition: background-color 0.3s ease;
}

.contact-content {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.contact-info {
    text-align: center;
}

.contact-info p {
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.contact-info a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Booking Section */
.booking {
    background-color: var(--accent-color);
    transition: background-color 0.3s ease;
}

.booking-options {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.booking-option {
    flex: 1;
    min-width: 250px;
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.booking-option:hover {
    transform: translateY(-5px);
}

.email-button,
.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    transition: all 0.3s ease;
    border: 2px solid;
    min-width: 150px;
    min-height: 45px;
}

.email-button {
    background-color: var(--secondary-color);
    color: var(--background-color);
    border-color: var(--secondary-color);
}

.whatsapp-button {
    background-color: #25D366;
    color: var(--background-color);
    border-color: #25D366;
}

.email-button:hover,
.whatsapp-button:hover {
    background-color: transparent;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.email-button:hover {
    color: var(--secondary-color);
}

.whatsapp-button:hover {
    color: #25D366;
}

.booking-option img {
    max-width: 200px;
    margin-top: 1rem;
    transition: filter 0.3s ease;
}

/* Footer Styles */
footer {
    background-color: var(--secondary-color);
    color: var(--background-color);
    padding: 3rem 0 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-logo img {
    height: 50px;
    transition: filter 0.3s ease;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--background-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease;
}

/* Floating WhatsApp Button */
.floating-whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

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

.fade-in {
    animation: fadeIn 1s ease-in;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--background-color);
        flex-direction: column;
        align-items: center;
        padding: 1rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transition: background-color 0.3s ease, box-shadow 0.3s ease;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 0.5rem 0;
    }

    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        width: 30px;
        height: 20px;
        position: relative;
    }

    .mobile-menu-toggle span {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
        background: var(--secondary-color);
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle span:nth-child(1) { top: 0; }
    .mobile-menu-toggle span:nth-child(2) { top: 9px; }
    .mobile-menu-toggle span:nth-child(3) { bottom: 0; }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 9px;
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg);
        bottom: 9px;
    }

    .hero {
        flex-direction: column;
        height: auto;
        padding-top: 80px;
    }

    .hero-content {
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .hero-slider {
        position: relative;
        height: 300px;
    }

    .about-content,
    .contact-content {
        flex-direction: column;
    }

    .hide-on-mobile {
        display: none;
    }

    .section-content {
        padding: 0 1rem;
    }
}

/* Dark Mode Styles */
body.dark-mode {
    --text-color: #ffffff;
    --background-color: #121212;
    --accent-color: #1e1e1e;
    --primary-color: #ffd700;
    --secondary-color: #e0e0e0;
}

body.dark-mode header,
body.dark-mode .service-item,
body.dark-mode .payment-option,
body.dark-mode .booking-option {
    background-color: var(--accent-color);
    color: var(--text-color);
}

body.dark-mode .services,
body.dark-mode .payment-methods,
body.dark-mode .booking {
    background-color: var(--background-color);
}

body.dark-mode .about-us,
body.dark-mode .contact {
    background-color: var(--accent-color);
}

body.dark-mode .hero-content {
    background-color: rgba(0, 0, 0, 0.8);
}

body.dark-mode .service-item,
body.dark-mode .payment-option,
body.dark-mode .booking-option {
    background-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

body.dark-mode .nav-links a,
body.dark-mode #dark-mode-toggle,
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode p {
    color: var(--text-color);
}

body.dark-mode .book-button,
body.dark-mode .cta-button,
body.dark-mode .learn-more-button {
    background-color: var(--primary-color);
    color: var(--background-color);
    border-color: var(--primary-color);
}

body.dark-mode .book-button:hover,
body.dark-mode .cta-button:hover,
body.dark-mode .learn-more-button:hover {
    background-color: transparent;
    color: var(--primary-color);
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
}

body.dark-mode .email-button {
    background-color: var(--secondary-color);
    color: var(--background-color);
    border-color: var(--secondary-color);
}

body.dark-mode .email-button:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

body.dark-mode footer {
    background-color: #0a0a0a;
    color: var(--text-color);
}

body.dark-mode .footer-links a {
    color: var(--text-color);
}

body.dark-mode .footer-links a:hover {
    color: var(--primary-color);
}

body.dark-mode .footer-bottom {
    border-top: 1px solid #2a2a2a;
}

body.dark-mode #language-selector {
    background-color: var(--accent-color);
    color: var(--text-color);
    border: 1px solid var(--secondary-color);
}

body.dark-mode .mobile-menu-toggle span {
    background: var(--text-color);
}

body.dark-mode .floating-whatsapp-button {
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
}

body.dark-mode .floating-whatsapp-button:hover {
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

body.dark-mode .contact {
    background-color: var(--accent-color);
}

body.dark-mode .contact-info p,
body.dark-mode .contact-info a {
    color: var(--text-color);
}

body.dark-mode .contact-info a:hover {
    color: var(--primary-color);
}

/* Accessibility Improvements */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Print Styles */
@media print {
    .no-print {
        display: none;
    }

    body {
        font-size: 12pt;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }
}

.email-button,
.whatsapp-button,
.floating-whatsapp-button {
    cursor: pointer;
}

.email-button[href="#"]:hover,
.whatsapp-button[href="#"]:hover,
.floating-whatsapp-button[href="#"]:hover {
    text-decoration: none;
}
