/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styles for dark mode */
body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #C0C0C0;
    line-height: 1.6;
}

/* Link styles */
a {
    text-decoration: none;
    color: #C0C0C0;
    transition: color 0.3s ease;
}

a:hover {
    color: #b0b0b0;
}


.logo {
    margin: 0; /* Remove any unnecessary margin */
}


/* Navigation Bar */
nav {
    display: flex;
    justify-content:space-between;
    align-items: center;
    padding: 10px 5%;
    background-color: #1f1f1f;
    position: fixed;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav .logo h1 {
    font-size: 32px;
    color: #ffffff;
    text-transform: uppercase;
}

.nav-links {
    list-style: none;
    display: flex;
    right: 0;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    font-size: 18px;
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #A97F00;
}

/* Hide dropdown menus by default */
.nav-links .dropdown {
    display: none;
    list-style: none;
    padding-left: 20px;
}

/* Show dropdown when active */
.nav-links .dropdown.dropdown-active {
    display: block;
}
    /* Dropdown menu */
    .dropdown {
        display: none;
        position: absolute;
        background-color: #1e1e1e;
        padding: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .has-dropdown:hover > .dropdown {
        display: block;
    }

    .dropdown li {
        padding: 5px 0;
    }

    .dropdown li a {
        color: #ffffff;
        padding: 5px 10px;
        display: block;
        white-space: nowrap; /* Prevent wrapping of text */
    }

    .dropdown li a:hover {
        background-color: #333333;
    }

    .burger {
        display: none;
        flex-direction: column;
        cursor: pointer;
    }
    
    .burger div {
        width: 25px;
        height: 3px;
        background-color: #e0e0e0; /* Light color for burger lines */
        margin: 4px;
    }

/* Hero Fade-In Animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
#hero {
    height: 100vh;
    background-image: url('images/Background6.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: white;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    animation: fadeIn 2s ease-out forwards;
}

/* Hero logo image */
.hero-logo {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

/* Call-to-action button */
.cta-button {
    background-color: #A97F00; /* Gold color */
    color: #ffffff;
    padding: 10px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.button-container {
    text-align: center;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #b0b0b0;
    transform: translateY(-5px);
}

/* Services Section */
#services {
    padding: 80px 5%;
    background-color: #1e1e1e;
    text-align: center;
}

#services h2 {
    font-size: 36px;
    color: #A97F00;
    margin-bottom: 40px;
}

.service-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service-item {
    width: 30%;
    background-color: #2a2a2a;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.service-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.service-item h3 {
    margin: 20px 0 10px;
    color: #ffffff;
}

.service-item p {
    color: #e0e0e0;
}

/* About Section */
#about {
    padding: 80px 5%;
    background-color: #121212;
    text-align: center;
}

#about h2 {
    font-size: 36px;
    color: #A97F00;
    margin-bottom: 20px;
}

#about p {
    font-size: 18px;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Section */
#contact {
    padding: 80px 5%;
    background-color: #1e1e1e;
    text-align: center;
}

#contact h2 {
    font-size: 36px;
    color: #A97F00;
    margin-bottom: 20px;
}

#contact p {
    font-size: 18px;
    color: #e0e0e0;
}

/* Email link styling */
.email-link {
    color: #C0C0C0;
    font-weight: bold;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #A97F00;
}

.phone-link {
    color: #C0C0C0;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #A97F00;
}

.phone-link:active,
.email-link:active,
.social-icon:active {
    color: #A97F00;
    transform: scale(0.95);
    background-color: rgba(169, 127, 0, 0.2);
    border-radius: 5px;
}

/* Footer */
footer {
    background-color: #1f1f1f;
    color: #e0e0e0;
    padding: 20px;
    text-align: center;
}

footer h2 {
    font-size: 36px;
    color: #A97F00;
    margin-bottom: 20px;
}

.copyright-text {
    font-size: 12px;
    color: #C0C0C0;
}

/* Social media links */
.social-media {
    margin-top: 20px;
    text-align: center;
}

.social-icon {
    margin: 0 15px;
    color: #C0C0C0;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #8A6700;
}



/* Ensure the contact dropdown is hidden by default */
.contact-dropdown {
    display: none;
    position: absolute;
    background-color: #1f1f1f;
    border-radius: 5px;
    padding: 10px;
    z-index: 1000;
    top: 100%; /* Ensure it appears directly below the contact link */
    left: 0;
}

/* Ensure the dropdown appears directly under the contact button */
.contact-button {
    position: relative;
}

/* Show dropdown when the parent link is active */
.contact-dropdown.show {
    display: block;
}

/* Dropdown item styling */
.contact-dropdown li {
    margin: 5px 0;
    list-style-type: none;
}

.contact-dropdown li a {
    color: #ffffff;
    text-decoration: none;
}

.contact-dropdown li a:hover {
    color: #A97F00; /* Hover color */
}

/* About Me Section */
#about-me {
    padding-top: 120px;
}

#about-me h1 {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    margin-bottom: 20px;
    color: #C0C0C0;
    font-weight: 400;
    text-align: center;
    font-style: italic;
}


/* Container for centering and limiting the width */
.about-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Profile Photo Container */
.profile-photo-container {
    text-align: center;
}

.profile-photo {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    margin-right: 40px;
    margin-bottom: 20px;
}

/* Hero Image Above Text */
.hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-bottom: 0px;
    border-radius: 10px;
}

/* Bio Text */
.bio-text {
    flex: 1;
    max-width: 800px;
    color: #e0e0e0;
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    padding: 0 20px;
    margin: 0 auto;
}

/* Blockquote Styling */
blockquote {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 32px;
    font-style: italic;
    color: #A97F00;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 10px 20px;
    border-left: 4px solid #A97F00;
    background-color: #1f1f1f;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
}

/* Key message container with background and border */
.key-message-box {
    background-color: #1f1f1f;
    border: 2px solid #A97F00;
    padding: 20px;
    border-radius: 10px;
    max-width: 1000px;
    margin: 20px auto;
}

/* Styling for "My mission" heading */
.key-message {
    font-size: 24px;
    color: #C0C0C0;
    text-align: center;
    margin-bottom: 10px;
}

/* Styling for the mission statement text */
.mission-text {
    font-size: 18px;
    color: #e0e0e0;
    text-align: center;
    font-style: italic;
    line-height: 1.8;
}

/* Additional Text Section */
.additional-text {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Generic Service Section: Configurable layout for service pages */

.service-section {
    padding-top: 100px;
   
}

.service-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px;

}

.service-photo {
    margin-top: 30px;
    width: 80%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    margin-right: 40px;
    margin-bottom: 20px;}


.service-text {
    flex: 1;
    max-width: 100%;
    color: #e0e0e0;
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    margin: 0 auto;
}

.service-text h2 {
    font-size: 36px;
    color: #A97F00;
    margin-bottom: 20px;
}

.service-text h3 {
    font-size: 28px;
    color: #A97F00;
    margin-bottom: 20px;
}

.service-text ul {
    padding-left: 40px;
    list-style-type: disc;
    margin-bottom: 20px;
}

.service-text ul li {
    margin-bottom: 10px;
}
.service-text-additional {
    flex: 1;
    max-width: 80%;
    color: #e0e0e0;
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    padding: 0 10px;
    margin: 0 auto;
}

.service-text-additional h3 {
    font-size: 28px;
    color: #A97F00;
    margin-bottom: 20px;
}

.service-text-additional ul {
    padding-left: 40px;
    list-style-type: disc;
    margin-bottom: 20px;
}

.service-text-additional ul li {
    margin-bottom: 10px;
}

blockquote {
    font-style: italic;
    color: #A97F00;
    margin: 20px 0;
    padding-left: 20px;
    border-left: 4px solid #A97F00;
}



#packages {
    padding:70px 5%;
    background-color:  #121212;
    text-align: center;
    
}


#packages h2 {
    font-size: 36px;
    color: #A97F00;
    margin-bottom: 40px;
}

.packages-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
    
}

.packages-item {
    background-color: #2a2a2a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    text-align: center;
}
    

.packages-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.packages-item h3 {
    font-size: 18px;
    color: #A97F00;
    margin-bottom: 10px;
    text-transform: uppercase;
    min-height: 80px; /* Ensures consistent height for headings */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.packages-item p {
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
    height: 120px; /* Ensures consistent height for descriptions */
    overflow: hidden; /* Prevents overflow if text exceeds height */
    text-overflow: ellipsis; 
}

/* Package Links Section */
.package-links {
    text-align: center;
    padding: 40px 5%;
    background-color: #121212;
    margin-top: 40px;
}

.package-links h3 {
    font-size: 28px;
    color: #A97F00;
    margin-bottom: 20px;
}

.package-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.package-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #ffffff;
    background-color: #A97F00;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.package-button:hover {
    background-color: #8A6700;
}

/* Simplified and Consolidated Responsive Design for Mobile */
@media screen and (max-width: 768px) {
        
       /* General Styles */
.service-section {
        padding-top: 10px;
       
    }  
.service-container {
            justify-content: left;
    }  

.service-photo {
    max-width: 0;
    height: auto;
    }


.service-text {
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
    padding: 0 10px;
    margin:inherit;
    }

.service-text h2 {
    font-size: 25px;
    }

.service-text h3 {
    font-size: 23px;
    }

.service-text ul {
    padding-left: 40px;
    list-style-type: disc;
    margin-bottom: 20px;
}

.service-text ul li {
    margin-bottom: 10px;
}
.service-text-additional {
    flex: 1;
    max-width: 100%;
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
    padding: 0 10px;
    margin:inherit;
}

.service-text-additional h3 {
    font-size: 28px;
    color: #A97F00;
    margin-bottom: 20px;
}

.service-text-additional ul {
    padding-left: 40px;
    list-style-type: disc;
    margin-bottom: 20px;
}

.service-text-additional ul li {
    margin-bottom: 10px;
}
    
       .service-container {
        flex-direction: column;
        text-align: center;
    }

    .service-list {
        flex-direction: column;
        gap: 10px;
    }
    
    .service-item {
        width: 100%;}
        
    .service-text {
        width: 100%;
    }

    .service-photo {
        margin-bottom: 20px;
    }

    .packages-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .packages-item {
        width: 100%;
        gap: 20px;
         }

    /* Navigation Styles */
    .nav-links {
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #1f1f1f;
        padding: 10px;
        border-radius: 8px;
        display: none;
        flex-direction: column;
        gap: 10px;
        z-index: 1000;
    }

    nav .logo h1 {
        font-size: 25px;
        color: #ffffff;
        text-transform: uppercase;
    }
    .nav-links.nav-active {
        display:flex;
    }

    .nav-links li {
        margin: 10px 0;
    }
    
    
    .burger {
        display:flex;
        flex-direction:column;
        cursor:pointer;
    }

    .burger div {
        width: 25px;
        height: 3px;
        background-color: #ffffff;
        margin: 4px;
    }

    .burger:hover + .nav-links {
        display: flex;
        flex-direction: column;
    }
    .gap-after {
        margin-bottom: 30px; /* Adjust the size as per your preference */
    }

    /* About Me Section */
    #about-me h1 {
        font-size: 40px; /* Smaller size for mobile */
    }

    .profile-photo {
        margin-left: 40px;
        margin-right: 0;
    }

}