/*
    Web site by: Colin Dixon (https://oze.au)
    Design Standard: OzeGlass V1.5.4
    Generated: 01 May 2026 10:35 PM AEST
    Version: 26.05.001
    File: style.css
*/

:root {
    --light-text: #f0f0f0;
    --dark-text: #212529;
    --glass-bg-dark: rgba(10, 25, 41, 0.65);
    --glass-bg-light: rgba(255, 255, 255, 0.65);
    --glass-border-dark: rgba(255, 255, 255, 0.2);
    --glass-border-light: rgba(0, 0, 0, 0.2);
    --primary-accent: #0096c7;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
    background-image: url('../images/background.webp'); 
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    transition: color 0.4s ease, background-image 0.4s ease;
}
@media (min-width: 769px) {
    body { background-attachment: fixed; }
}

body.dark { 
    color: var(--light-text);
    background-image: url('../images/background2-3.webp');
}
body.light { 
    color: var(--dark-text);
    background-image: url('../images/background.webp');
}

.page-wrapper { max-width: 1024px; margin: 0 auto; padding: 20px; }

.glass-card {
    background-color: var(--glass-bg-dark);
    border: 1px solid var(--glass-border-dark);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: background-color 0.4s ease, border-color 0.4s ease;
}
@supports (backdrop-filter: blur(6px)) or (-webkit-backdrop-filter: blur(6px)) {
    .glass-card { backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
}
body.light .glass-card { background-color: var(--glass-bg-light); border: 1px solid var(--glass-border-light); }

/* --- Hero Section --- */
.hero-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-top: 5rem; /* Space for FABs */
}
@media (min-width: 820px) {
    .hero-section { grid-template-columns: 0.8fr 1fr; }
}
.hero-image-container { text-align: center; }
.hero-image {
    max-width: 320px;
    width: 100%;
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}
.hero-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
}
.hero-content {
    text-align: center;
}
@media (min-width: 820px) {
    .hero-content { text-align: left; }
}
.hero-content .logo { max-width: 250px; margin-bottom: 1.5rem; }
.hero-text-card {
    padding: 2rem;
}
.hero-text-card h1 { font-family: 'Poppins', sans-serif; font-size: clamp(2rem, 5vw, 2.8rem); line-height: 1.2; margin-bottom: 1rem; }
.hero-text-card p { font-size: 1.1rem; max-width: 500px; }

/* --- Content Sections --- */
.content-block { padding: 2.5rem; margin-bottom: 2.5rem; }
.section-title { font-family: 'Poppins', sans-serif; font-size: 1.8rem; text-align: center; margin-bottom: 2rem; }
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.link-card {
    display: block; text-decoration: none; padding: 1.5rem; border-radius: 12px;
    background-color: rgba(0,0,0,0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
}
body.dark .link-card { color: var(--light-text); }
body.light .link-card { color: var(--dark-text); background-color: rgba(255,255,255,0.2); }
.link-card:hover { transform: translateY(-5px); background-color: rgba(0,0,0,0.2); }
body.light .link-card:hover { background-color: rgba(255,255,255,0.4); }
.link-card h3 { font-family: 'Poppins', sans-serif; font-size: 1.2rem; color: var(--primary-accent); }
body.light .link-card h3 { color: #005f7e; }
.link-card p { font-size: 0.9rem; opacity: 0.9; }

/* --- Footer --- */
.site-footer .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.footer-section h3 { font-family: 'Poppins', sans-serif; font-size: 1.2rem; margin-bottom: 1rem; color: var(--primary-accent); }
body.light .footer-section h3 { color: #005f7e; }
.footer-section ul { list-style: none; padding: 0; }
.footer-section ul li a { color: inherit; text-decoration: none; opacity: 0.9; transition: opacity 0.2s ease; }
.footer-section ul li a:hover { opacity: 1; text-decoration: underline; }
.social-icons { display: flex; flex-wrap: wrap; gap: 1rem; }
.social-icons a { color: inherit; text-decoration: none; }
.social-icons svg { width: 28px; height: 28px; fill: currentColor; opacity: 0.8; transition: opacity 0.2s ease, transform 0.2s ease; }
.social-icons svg:hover { opacity: 1; transform: scale(1.1); }
.copyright { text-align: center; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--glass-border-dark); font-size: 0.9rem; opacity: 0.7; }
body.light .copyright { border-top-color: var(--glass-border-light); }

/* --- Components & Modals --- */
.fab {
    position: fixed; z-index: 1000;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem; font-weight: 600; text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}
.fab:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(0,0,0,0.4); }
body.dark .fab { color: var(--light-text); }
body.light .fab { color: var(--dark-text); }

.theme-toggle-fab { top: 1rem; right: 1rem; padding: 0.75rem; width: 50px; height: 50px; text-align: center; }
.booking-fab { top: 1rem; left: 1rem; }

.modal {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8);
    z-index: 2000; display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0s 0.3s;
}
.modal.active { opacity: 1; visibility: visible; transition: opacity 0.3s ease; }
.modal img { max-width: 90vw; max-height: 90vh; }
.modal .close-button { position: absolute; top: 2rem; right: 2rem; font-size: 2.5rem; color: #fff; cursor: pointer; background: none; border: none; }
