:root {
    --background-color: #fff;
    --text-color: #333;
    --card-bg-color: #f8f9fa;
    --header-bg-color: #f0f0f0;
    --shadow-color: rgba(0,0,0,0.1);
    --primary-color: #007bff;
    --secondary-color: #0056b3;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.dark-mode {
    --background-color: #121212;
    --text-color: #f0f0f0;
    --card-bg-color: #1e1e1e;
    --header-bg-color: #1a1a1a;
    --shadow-color: rgba(0,0,0,0.5);
    --primary-color: #4da3ff;
    --secondary-color: #75b6ff;
}

.header-hero-container {
    background: url('media/hero.png') no-repeat center center;
    background-size: cover;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

header {
    background: none; /* Remove background from header */
    padding: 15px 20px;
    box-shadow: 0 2px 5px var(--shadow-color);
    transition: background-color 0.3s ease;
    
}

.theme-toggle {
    display: flex;
    align-items: center;
    margin-left: 15px;
}

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

#dark-mode-toggle:hover {
    color: var(--primary-color);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    
}

.logo img {
    max-height: 150px;
    vertical-align: middle; 
}

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

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

nav li {
    display: inline-block;
    margin: 0 10px;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary-color);
}


.hero {
    background: none; /* Remove background from hero */
    padding: 80px 20px;
    text-align: center;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: var(--text-color);
}

.hero p {
    font-size: 1.2em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--text-color);
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--secondary-color);
}
/* Features Section */
.features {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.features h2 {
    font-size: 2.2em;
    margin-bottom: 40px;
    color: var(--text-color);
}

.feature-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {

    background-color: var(--card-bg-color);
    border-radius: 8px;
    padding: 5px;
    width: 200px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, color 0.3s ease;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--text-color);
}

/* Testimonials Section */
.testimonials {
    background-color: #f5f5f5;
    padding: 60px 20px;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.2em;
    margin-bottom: 40px;
    color: var(--text-color);
}

.testimonial-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background-color: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    width: 300px;
    color: var(--text-color);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: bold;
    color: var(--text-color);
}

/* Newsletter Section */
.newsletter {
    padding: 60px 20px;
    background-color: #e9ecef;
    text-align: center;
}

.newsletter h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: var(--text-color);
}

.newsletter p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-color);
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    font-size: 1em;
    color: var(--text-color);
}

.newsletter-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 1em;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-direction: column;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.social-icons {
    margin-bottom: 20px;
}

.social-icons a {
    color: white;
    font-size: 20px;
    margin: 0 10px;
    text-decoration: none;
}

/* Services Section */
.services {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.services h2 {
    font-size: 2.2em;
    margin-bottom: 40px;
    color: var(--text-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--card-bg-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, color 0.3s ease;
    color: var(--text-color);
}

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

.service-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
    cursor: pointer;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

@media (max-width: 480px) {
    .service-image-container {
        height: 180px;
    }

    .preview-image {
        max-width: 95%;
        max-height: 80%;
    }
}

.service-image-container:hover .service-image {
    transform: scale(1.05);
}

.service-card h3 {
    padding: 15px 20px 5px;
    margin: 0;
    font-size: 1.4em;
    color: var(--text-color);
}

.service-price {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2em;
    padding: 0 20px 10px;
}

.service-description-container {
    padding: 0 20px 20px;
    text-align: left;
}

.service-description {
    margin: 0;
    max-height: 80px;
    overflow: hidden;
    transition: max-height 0.5s ease;
    color: var(--text-color);
}

.service-description.expanded {
    max-height: 500px;
}

/* Service Call to Action */
.service-button {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 50px;
    border: none;
   border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.read-more-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    margin-top: 10px;
    padding: 0;
    text-align: left;
    font-weight: 500;
}

/* Image preview overlay */
.image-preview-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.image-preview-overlay.active {
    opacity: 1;
    visibility: visible;
}

.preview-image {
    max-width: 90%;
    max-height: 90%;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.close-preview {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

/* Portfolio Section */
.portfolio {
    padding: 60px 20px;
    background-color: var(--card-bg-color);
    text-align: center;
}

.portfolio h2 {
    font-size: 2.2em;
    margin-bottom: 30px;
    color: var(--text-color);
}

.portfolio-filter {
    margin-bottom: 30px;
}

.filter-btn {
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 15px;
    margin: 0 5px 10px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-item {
    position: relative;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    color: var(--text-color);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    margin: 0 0 5px;
    font-size: 1.2em;
}

.portfolio-overlay p {
    margin: 0;
    font-size: 0.9em;
    opacity: 0.9;
}

/* Team Section */
.team {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.team h2 {
    font-size: 2.2em;
    margin-bottom: 40px;
    color: var(--text-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background-color: var(--card-bg-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, color 0.3s ease;
    color: var(--text-color);
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-photo {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 123, 255, 0.8);
    display: flex;
    justify-content: center;
    padding: 10px 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.team-photo:hover .team-social {
    transform: translateY(0);
}

.team-social a {
    color: white;
    margin: 0 10px;
    font-size: 1.2em;
}

.team-member h3 {
    margin: 15px 0 5px;
    color: var(--text-color);
}

.team-position {
    color: var(--primary-color);
    font-weight: 500;
    margin: 0 0 10px;
}

.team-bio {
    padding: 0 15px 20px;
    margin: 0;
    font-size: 0.9em;
    color: var(--text-color);
}

/* FAQ Section */
.faq {
    padding: 60px 20px;
    background-color: var(--card-bg-color);
}

.faq h2 {
    font-size: 2.2em;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-color);
}

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

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background-color: white;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background-color: white;
    transition: background-color 0.3s ease;
    color: var(--text-color);
}

.faq-question:hover {
    background-color: #f5f5f5;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1em;
}

.faq-toggle {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-color);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 400px;
}

/* Hamburger Menu Overlay */
.hamburger-menu-overlay {
    position: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.hamburger-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hamburger-menu {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.hamburger-menu a {
    display: block;
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.5em;
    margin: 10px 0;
}

.hamburger-menu a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .header-container, .feature-grid, .services-grid, .testimonial-container, 
    .portfolio-grid, .team-grid, .faq-container {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 992px) {
    .services-grid, .portfolio-grid, .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2em;
    }

    .hero p {
        font-size: 1em;
        padding: 0 20px;
    }

    .feature-grid, .testimonial-container {
        flex-direction: column;
        align-items: center;
    }

    .feature-card, .testimonial {
        width: 100%;
        max-width: 400px;
        margin-bottom: 20px;
    }

    .newsletter-form {
        flex-direction: column;
        width: 90%;
        max-width: 500px;
    }

    .newsletter-input, .newsletter-button {
        width: 100%;
        border-radius: 5px;
        margin-bottom: 10px;
        resize: none;
    }

    .services-grid, .portfolio-grid, .team-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-filter {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .faq-question h3 {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8em;
    }

    .cta-button {
        padding: 12px 20px;
        font-size: 1em;
    }

    section {
        padding: 40px 15px;
    }

    .section h2 {
        font-size: 1.8em;
        margin-bottom: 25px;
    }

    .portfolio-item, .team-member {
        height: auto;
    }

    .team-photo {
        height: 200px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .social-icons {
        margin-top: 15px;
    }
}

.booking-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h1 {
    text-align: center;
    color: #333;
}

.booking-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 15px;
}

label {
    margin-bottom: 5px;
    color: #555;
}

input, select, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

input:focus, select:focus, textarea:focus {
    border-color: #007bff;
    outline: none;
}

.submit-button {
    background-color: #007bff;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #0056b3;
}
