/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* Base Body Styling */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    color: #444;
    line-height: 1.6;
    background-color: #fbf9f5;
    scroll-behavior: smooth;
}

/* Navigation Bar */
nav {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: #fbf9f5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #a27d3c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #007BFF;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 400;
    font-size: 1rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

.nav-links a:hover {
    color: #007BFF;
    border-bottom: 2px solid #007BFF;
}

/* Header / Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('hourglass.gif') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn {
    background-color: #dcc69f;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background-color: #e6d7bc;
    transform: translateY(-3px);
}

/* General Section Styling */
section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #bc9349;
    margin-bottom: 3rem;
    position: relative;
}

section h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: #007BFF;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* About Me Section */
.about-me-content {
    text-align: justify;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.about-me-content p {
    margin-bottom: 1.5rem;
}

/* Features Section */
.feature-list {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1 1 200px;
    min-width: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.feature-item h3 {
    color: #b08841;
    margin-top: 0;
    font-size: 1.5rem;
}

/* Services Section */
.service-list {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1 1 250px;
    min-width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.service-item h3 {
    color: #b08841;
    font-size: 1.5rem;
    margin-top: 0;
}

/* New Landing Page Introduction Section */
.landing-page-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.landing-page-left-column {
    text-align: justify;
    font-size: 1.1rem;
}

.landing-page-right-column h3 {
    color: #e6d7bc;
    font-size: 1.5rem;
    margin-top: 0;
    border-bottom: 2px solid #ddd;
    padding-bottom: 0.5rem;
}

.landing-page-right-column ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.landing-page-right-column li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.landing-page-right-column svg {
    color: #007BFF;
    min-width: 20px;
}

@media (max-width: 768px) {
    .landing-page-main-content {
        grid-template-columns: 1fr;
    }
}

/* Pricing Section */
.pricing {
    background-color: #f6f1e7;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.pricing-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1 1 300px;
    min-width: 300px;
    position: relative;
}

.pricing-card.featured {
    border: 3px solid #007BFF;
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.pricing-card h3 {
    color: #e6d7bc;
    font-size: 2rem;
    margin-top: 0;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 1rem 0;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-card li {
    text-align: left;
    margin-bottom: 1rem;
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.pricing-card li svg {
    color: #007BFF;
    min-width: 20px;
}

.pricing-btn {
    display: block;
    width: 100%;
    margin-top: auto;
}

.coming-soon {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff5722; /* A vibrant orange color */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    display: block;
    margin-top: 0.5rem;
}

/* Contact Section */
.contact {
    text-align: center;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.contact-button {
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    padding: 1.5rem 3rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.whatsapp-button {
    background-color: #25D366;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: translateY(-5px);
}

.email-button {
    background-color: #ebdfca;
}

.email-button:hover {
    background-color: #c19b58;
    transform: translateY(-5px);
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1.5rem 0;
}

@media (max-width: 768px) {
    .nav-links {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .feature-list, .service-list, .pricing-cards, .contact-buttons {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-button {
        width: 100%;
        justify-content: center;
    }
}
