/*
    CSS Colors derived from the logo:
    - Charcoal Text: #454545
    - Soft Sage Green: #93b397
    - Lighter Green Hover: #a8c4ac
*/

:root {
    --color-charcoal: #454545;
    --color-sage-green: #93b397;
    --color-light-green: #a8c4ac;
    --color-white: #ffffff;
    --color-background: #fdfdfd; /* Off-white for a softer look */
}

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif; /* Clean, modern font */
    background-color: var(--color-background);
    color: var(--color-charcoal);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Full viewport height */
    text-align: center;
}

/* Container for all elements */
.container {
    padding: 40px 20px;
    max-width: 500px;
    width: 100%;
}

/* Logo Styling */
.logo {
    max-width: 100%;
    height: auto;
    display: block; /* Ensures it is centered correctly */
    margin: 0 auto 30px; /* Center with space below */
}

/* Tagline/Description Text */
.tagline {
    font-size: 1.25em; /* Slightly larger text */
    font-weight: 300; /* Light weight for elegance */
    margin-bottom: 40px;
    line-height: 1.6;
    color: var(--color-charcoal);
}

/* Booking Button (Call-to-Action) */
.booking-button {
    display: inline-block;
    background-color: var(--color-sage-green);
    color: var(--color-white);
    text-decoration: none; /* Remove underline */
    font-size: 1.2em;
    font-weight: 500;
    padding: 15px 30px;
    border: 2px solid var(--color-sage-green); /* Border for definition */
    border-radius: 8px; /* Slightly rounded corners */
    transition: background-color 0.3s ease, transform 0.1s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    margin-bottom: 60px; /* Added space below the main button */
}

/* Button Hover Effect */
.booking-button:hover {
    background-color: var(--color-light-green); /* Lighter green on hover */
    border-color: var(--color-light-green);
    transform: translateY(-2px); /* Slight lift for visual feedback */
}

/* Button Active/Press Effect */
.booking-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* NEW: Contact Info Styling */
.contact-info {
    font-size: 0.95em;
    line-height: 1.6;
    color: #6a6a6a; /* A lighter gray for secondary information */
    padding-top: 20px;
    border-top: 1px solid #eee; /* Very subtle separator line */
}

.contact-info p {
    margin: 5px 0; /* Tighten up spacing between address and phone */
}

.contact-info a {
    color: var(--color-charcoal); /* Keep phone number text readable */
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    color: var(--color-sage-green); /* Subtle green hint on hover */
}