body{
    background-color: rgb(60, 194, 169);
}


/* Remove default spacing and bullets */
/* navigation*/
.nav-logo {
    height: 50px;       /* Set a standard height */
    width: auto;         /* Maintain aspect ratio */
    display: block;
    margin: 5% auto;   /* Center it if needed */
    
}
nav {
    position: sticky;
    top: 0;
    z-index: 1000; /* Ensures the nav stays on top of other elements */
    display: flex;
    justify-content: space-between; /* Pushes logo left and links right */
    align-items: center;
    padding: 5px 5%; /* Adds nice breathing room on the sides */
    background-color: #f8f9fa;
      /* Optional: Add a subtle shadow when scrolling */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa; /* Light wellness-themed background */
    display: flex;             /* The magic line for horizontal layout */
    justify-content: center;   /* Centers the links horizontally */
    gap: 20px; /* Space between your menu items */
}

/* Style individual list items */
nav li {
      /* 3. Reduce vertical padding on links to match the new slim look */
    padding: 8px 20px; 
    display: block;
    text-decoration: none;
}

/* Style the links themselves */
nav li a {
    display: block;
    color: #333;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;    /* Removes the underline */
    font-family: Arial, sans-serif;
    transition: background-color 0.3s; /* Smooth color change */
}

/* Hover effect for interactivity */
nav li a:hover {
    background-color: #e2e6ea;
    color: #000;
}

/* container*/
.content-container {
    margin-top: 40px; /* Adjust this number to add more or less space */
    padding: 0 20px;  /* Adds space to the left and right sides too */
}
.content-container {
    margin-top: 40px;
    padding: 40px; /* Internal spacing so text doesn't touch the edges */
    border-radius: 15px; /* Rounded corners for a softer look */
    
    /* Option 1: Solid Pale Opal (Soft Mint/Blue) */
    background-color: #125e3d; 

    /* Option 2: Subtle Opal Gradient (Highly Recommended) */
    background: linear-gradient(135deg, #d1ebef 0%, #fcfaf9 100%);
    
    /* Optional: Add a very soft shadow to make it pop */
    box-shadow: 0 4px 15px rgba(57, 49, 49, 0.05);
}



/*    font.  */

/* Apply a clean, modern font to the whole site */
body {
    font-family: 'Raleway', sans-serif;
    color: #2c3e50; /* A soft dark grey for better readability */
    line-height: 1.6;
}

/* Use the elegant serif for all headings */
h1, h2, h3, h4 {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #34495e;
}

/* Specific styling for your content container text */
.content-container p {
    font-size: 1.1rem;
    font-weight: 300; /* Light weight for an 'airy' opal feel */
}



/*.  appointment button */
.btn-book {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background-color: transparent;
    color: #34495e;
    border: 2px solid #34495e; /* Elegant dark border */
    border-radius: 50px;       /* Pill shape for a softer feel */
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease; /* Makes the hover effect smooth */
}

/* Hover Effect */
.btn-book:hover {
    background-color: #34495e;
    color: #f0f7f4;             /* Matches your Opal background */
    box-shadow: 0 4px 15px rgba(52, 73, 94, 0.3);
    transform: translateY(-2px); /* Subtle lift effect */
}

/*------------------------*/
/* Mobile Styles (Screens smaller than 768px) */
@media (max-width: 768px) {
    nav {
        flex-direction: column; /* Stacks logo on top of links */
        padding: 10px;
    }

    nav ul {
        flex-direction: row;    /* Keeps links side-by-side */
        flex-wrap: wrap;        /* Allows them to wrap if they're too long */
        justify-content: center;
        gap: 10px;
        margin-top: 10px;
    }

    nav li a {
        padding: 8px 12px;      /* Smaller padding for smaller screens */
        font-size: 0.9rem;      /* Slightly smaller text */
    }

    .nav-logo {
        height: 35px;           /* Slightly smaller logo on mobile */
    }
}

/* pablos about page*/

.image-container {
    display: flex;         /* Activates flexbox */
    align-items: center;   /* Vertically centers text with image */
    gap: 20px;             /* Adds space between image and text */
}

.image-container img {
    max-width: 300px;      /* Limits image width */
    height: auto;
}

/* Base style for computers/tablets */
.image-container {
    display: flex;
    flex-direction: row; /* Side-by-side */
    align-items: center;
    gap: 20px;
}

/* Responsive style for mobile phones */
@media (max-width: 600px) {
    .image-container {
        flex-direction: column; /* Stacks vertically */
        text-align: center;      /* Centers text for better look */
    }

    .image-container img {
        width: 100%;            /* Image fills the screen width */
        max-width: 400px;       /* But doesn't get too huge */
    }
}
