/* ------------------------------------------- */
/* 1. ROOT VARIABLES & GLOBAL RESET */
/* ------------------------------------------- */
:root {
    /* ... your colors remain the same ... */
    --color-primary: #B70909;       
    --color-secondary: #FFC98A;     
    --color-background: #F4F0E8;    
    --color-mystical-aqua: #A8D4D6; 
    --color-text: #333333;          
    --color-pearl: #FFFFFF;         

    /* --- UPDATED FONT DEFINITIONS --- */
    --font-heading: 'Playfair Display', Georgia, serif; 
    --font-body: 'Lato', Helvetica, sans-serif;
}

/* Simple Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ------------------------------------------- */
/* 2. BODY & TYPOGRAPHY */
/* ------------------------------------------- */

/* Apply the parchment background and general text color */
body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-background);
    /* Optional: Add a subtle paper texture image here */
    /* background-image: url('images/paper_texture.png'); */
    line-height: 1.6;
    padding-top: 80px; /* Space for fixed header */
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-text);
    margin-bottom: 0.5em;
}

h1 { font-size: 2.5em; }
h2 { font-size: 2em; color: var(--color-primary); }
h3 { font-size: 1.5em; color: var(--color-mystical-aqua); }

/* Standard Section Padding */
section {
    padding: 40px 5% 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ------------------------------------------- */
/* 3. NAVIGATION (The "Spell Book" Spine) */
/* ------------------------------------------- */
header {
    background-color: var(--color-mystical-aqua);
    color: var(--color-text);
    padding: 15px 5%;
    position: fixed; /* Stays visible as they scroll */
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

nav h1 {
    font-size: 1.4em;
    color: var(--color-text); 
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li a {
    text-decoration: none;
    color: var(--color-text);
    padding: 0 15px;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--color-primary); /* Crab Red on hover */
}

/* ------------------------------------------- */
/* 4. BUTTONS & CTAs (Call-to-Action) */
/* ------------------------------------------- */
.cta-button {
    display: inline-block;
    padding: 10px 25px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    border: 2px solid var(--color-primary);
}

.primary {
    background-color: var(--color-primary);
    color: var(--color-pearl); /* White text on red */
}

.primary:hover {
    background-color: var(--color-secondary); /* Gold on hover */
    color: var(--color-text);
    border-color: var(--color-secondary);
}

.secondary {
    background-color: var(--color-pearl);
    color: var(--color-primary);
}

.secondary:hover {
    background-color: var(--color-secondary);
    color: var(--color-text);
}

/* ------------------------------------------- */
/* 5. SERVICES PAGE CARD/TABLE STYLING */
/* ------------------------------------------- */

/* Styling for the service cards on the Home page overview */
.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.service-cards .card {
    background-color: var(--color-pearl);
    padding: 20px;
    border: 1px solid var(--color-mystical-aqua); /* Subtle border */
    border-radius: 8px;
    width: 300px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.05); /* Soft, old-paper lift */
    text-align: center;
}

/* Pricing Table Styling (For Services Page) */
.pricing-table table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
    background-color: var(--color-pearl);
    border: 1px solid var(--color-mystical-aqua);
}

.pricing-table th, .pricing-table td {
    padding: 12px;.booking-intro {
    text-align: center;
    padding: 60px 20px 20px;
    background-color: var(--color-background);
}

.widget-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    min-height: 800px;
}

@media (max-width: 600px) {
    .widget-container {
        padding: 10px;
    }
}

    text-align: left;
    border-bottom: 1px dashed var(--color-mystical-aqua); /* Dotted line for spell book feel */
}

.pricing-table th {
    background-color: var(--color-mystical-aqua);
    color: var(--color-text);
    font-weight: bold;
}

/* ------------------------------------------- */
/* 6. FOOTER */
/* ------------------------------------------- */
footer {
    text-align: center;
    padding: 20px;
    background-color: var(--color-mystical-aqua);
    color: var(--color-text);
    font-size: 0.9em;
}
/* Navigation Layout */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: var(--color-background);
    border-bottom: 1px solid var(--color-mystical-aqua);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--color-mystical-aqua);
}

/* Make "Book Now" look like a special button in the menu */
.nav-book-btn {
    background-color: var(--color-primary);
    color: white !important; /* Forces text to stay white */
    padding: 8px 16px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-book-btn:hover {
    background-color: var(--color-mystical-aqua);
    transform: scale(1.05);
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
}

.social-links a {
    color: var(--color-primary); /* Your main brand color */
    font-size: 1.8rem;           /* Makes the icons a nice size */
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--color-mystical-aqua); /* Changes color when hovered */
    transform: translateY(-5px);       /* Subtle lift effect */
}
/* Ensure the main content starts below the header on mobile */
main {
    padding-top: 120px; /* Adjust this number until the 'Let's connect' text is fully visible */
}

@media (min-width: 768px) {
    main {
        padding-top: 80px; /* Less padding needed for desktop */
    }
}
/* Base Navigation Styles */
.main-nav {
    display: flex;
    flex-direction: column; /* Stacks logo over links on small screens */
    align-items: center;
    padding: 10px;
    background-color: var(--color-background);
    border-bottom: 1px solid var(--color-mystical-aqua);
    width: 100%;
}

.nav-links {
    display: flex;
    flex-wrap: wrap; /* Allows links to go to a second line if they run out of space */
    justify-content: center;
    list-style: none;
    gap: 10px;
    padding: 10px 0;
    margin: 0;
}

.nav-links a {
    font-size: 0.9rem; /* Slightly smaller text for mobile */
    white-space: nowrap; /* Prevents words like 'Book Now' from breaking into two lines */
}

/* Desktop Adjustment: Back to a single line */
@media (min-width: 768px) {
    .main-nav {
        flex-direction: row;
        justify-content: space-between;
        padding: 1rem 5%;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .nav-links a {
        font-size: 1.1rem;
    }
}
.logo a {
    color: var(--color-primary); /* Or your specific brand hex code */
    text-decoration: none;
}
