/* --- RESET & VARIABLES --- */
:root {
    --bg-color-light: #F0EFEA; /* Light beige */
    --bg-color-dark: #222; 
    --text-color-dark: #333;
    --text-color-light: #fff;
    --brand-color-grey: #4A4846; /* Matches Service Section Background */
    --font-serif: 'Times New Roman', serif;
    --font-sans: 'Arial', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* FIX: Prevent horizontal shifting on mobile load */
html, body {
    width: 100%;
    overflow-x: hidden; 
    margin: 0;
    padding: 0;
}

body { 
    font-family: var(--font-sans); 
    color: var(--text-color-dark);
    padding-top: 140px; 
}

/* --- SIDE LINK (Mann Made Creations) --- */
.side-link {
    position: fixed;
    bottom: 40px; 
    left: 0;
    z-index: 9999;
    
    /* Make text vertical naturally */
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    
    /* Background: Black with transparency */
    background-color: rgba(0, 0, 0, 0.2);
    
    color: #fff;
    padding: 20px 10px;
    text-decoration: none;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    
    /* Slight shadow */
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;

    /* Animation: Start off-screen (-60px) and slide to 0 */
    left: -60px; 
    animation: slideInSide 0.8s ease-out 1s forwards; 
}

@keyframes slideInSide {
    to { left: 0; }
}

/* --- FIXED HEADER (STABILIZED) --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-color-light);
    z-index: 1000;
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
    /* Ensure padding doesn't affect width calculation */
    box-sizing: border-box; 
}

/* FLEXBOX FIX: Forces logo to be mathematically centered */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    text-align: center; /* Backup centering */
    width: 100%;
    padding: 10px 0; 
    margin: 0;
}

.logo-container h3 {
    font-family: var(--font-serif);
    letter-spacing: 2px;
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--brand-color-grey);
}

.header-logo {
    max-width: 90px;
    display: block;
    margin: 0 auto; /* Force auto margins for image centering */
}

.sub-logo-text {
    font-family: var(--font-serif);
    margin-top: 5px;
    color: #555;
    font-style: italic;
    font-size: 0.9rem;
    text-align: center;
}

/* --- COLOR FILTER --- */
.color-filter {
    filter: invert(27%) sepia(8%) saturate(336%) hue-rotate(349deg) brightness(93%) contrast(89%);
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    width: 100%;
}

.hero-overlay {
    background-image: url('images/hero-bg.jpg'); 
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.hero-overlay > * { position: relative; z-index: 2; }

.hero-overlay h1 {
    font-size: 3.5rem;
    font-family: var(--font-serif);
    margin-bottom: 10px;
    font-weight: normal;
}

.tagline {
    font-style: italic;
    font-size: 1.3rem;
    margin-bottom: 40px;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.8;
}

.awards-container img {
    height: 90px;
    margin: 10px;
}

.btn-book {
    display: inline-block;
    margin-top: 40px;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 40px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}
.btn-book:hover { background: #fff; color: #000; }

/* --- BRANDS SECTION --- */
.brands-section {
    background-color: var(--brand-color-grey); 
    padding: 60px 0;
}

.brand-card {
    background: #fff;
    max-width: 1000px;
    margin: 30px auto;
    display: flex;
    align-items: center;
}

.brand-text {
    flex: 1;
    padding: 50px;
    text-align: center;
}
.brand-text h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 20px;
}

.brand-logo-area, .brand-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.brand-image img, .brand-logo-area img {
    max-width: 100%;
    height: auto;
}

/* --- HOURS SECTION --- */
.hours-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #fff;
}
.hours-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-bottom: 30px;
}
.hours-content h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.hours-content ul {
    list-style: none;
    font-size: 1.1rem;
    line-height: 2;
}

/* --- CONTACT SECTION --- */
.contact-section {
    background-color: #222;
    color: #fff;
    padding: 80px 0;
}
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}
.contact-form-area {
    flex: 1;
    padding: 0 40px;
}
.contact-form-area h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.contact-form-area a { color: #fff; text-decoration: underline; }

.spaced-text {
    margin-bottom: 20px;
    display: block;
}

.contact-socials {
    margin: 20px 0;
    font-size: 1.5rem;
}
.contact-socials a {
    color: #fff;
    margin-right: 20px;
    text-decoration: none;
}
.contact-socials a:hover { color: #ccc; }

.contact-image-area {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-image-area img {
    width: 90%;
    border: 3px solid #fff;
    padding: 5px;
}

/* Form Styles */
input, textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #777;
    padding: 10px 0;
    margin-bottom: 20px;
    color: #fff;
    font-family: inherit;
}
input:focus, textarea:focus { outline: none; border-bottom: 1px solid #fff; }
.form-row { display: flex; gap: 20px; }
.btn-send {
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 10px;
}

/* --- FOOTER --- */
.main-footer {
    background-color: var(--bg-color-light);
    text-align: center;
    padding-bottom: 40px;
}
.map-container {
    margin-bottom: 30px;
    filter: grayscale(100%);
}
.footer-info {
    padding-top: 20px;
    color: #333;
}
.footer-logo {
    max-width: 100px;
    margin: 20px 0;
}

/* --- LEGAL / COPYRIGHT SECTION --- */
.footer-copyright {
    margin-top: 30px;
}

/* Force small text for copyright */
.footer-copyright p {
    font-size: 11px !important; 
    color: #666 !important;
    margin-bottom: 5px !important;
    font-family: var(--font-sans);
}

/* Force small text and NO underline for links */
.footer-copyright a {
    font-size: 11px !important; 
    color: #666 !important;
    text-decoration: none !important;
    margin: 0 10px;
    display: inline-block;
    transition: 0.3s;
    border-bottom: none !important;
}

.footer-copyright a:hover {
    color: #000 !important;
}

/* --- ANIMATIONS --- */
.fade-in, .fade-in-up, .fade-in-left, .fade-in-right {
    opacity: 0;
    transition: all 1s ease-out;
}
.visible { opacity: 1; transform: none; }
.fade-in-up { transform: translateY(40px); }
.visible.fade-in-up { transform: translateY(0); }
.fade-in-left { transform: translateX(-40px); }
.visible.fade-in-left { transform: translateX(0); }
.fade-in-right { transform: translateX(40px); }
.visible.fade-in-right { transform: translateX(0); }

/* --- RESPONSIVE SECTION (Updated) --- */
@media (max-width: 768px) {
    body { padding-top: 160px; }
    
    /* Stack elements vertically */
    .brand-card, 
    .contact-container, 
    .form-row { 
        flex-direction: column; 
    }

    .hero-overlay h1 { font-size: 2rem; }
    .brand-card { flex-direction: column-reverse; }

    /* FIX: Add spacing below the form so the image doesn't overlap the Send button */
    .contact-form-area {
        margin-bottom: 60px; /* Pushes the image down */
        padding: 0 20px;     /* Keeps text away from screen edges */
    }

    /* Optional: Ensure image fits nicely */
    .contact-image-area {
        width: 100%;
        margin-bottom: 40px;
    }
}