/* Home page styles */
@font-face {
    font-family: 'cakefont';
    src: url('../font/cakedingbats-webfont.eot');
    src: url('../font/cakedingbats-webfont.eot?#iefix') format('embedded-opentype'),
    url('../font/cakedingbats-webfont.woff2') format('woff2'),
    url('../font/cakedingbats-webfont.woff') format('woff'),
    url('../font/cakedingbats-webfont.ttf') format('truetype'),
    url('../font/cakedingbats-webfont.svg#cake_dingbatsregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
body {
    padding: 10px 0;
}
header {
    margin-bottom: 60px;
}
img {
    margin-bottom: 30px;
}
h1 {
    font-weight: bold;
}
ul {
    list-style-type: none;
    margin: 0 0 30px 0;
    padding-left: 25px;
}
a {
    color: #0071BC;
    text-decoration: underline;
}
hr {
    border-bottom: 1px solid #e7e7e7;
    border-top: 0;
    margin-bottom: 35px;
}

.text-center {
    text-align: center;
}
.links a {
    margin-right: 10px;
}
.release-name {
    color: #D33C43;
    font-weight: 400;
    font-style: italic;
}
.bullet:before {
    font-family: 'cakefont', sans-serif;
    font-size: 18px;
    display: inline-block;
    margin-left: -1.3em;
    width: 1.2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    vertical-align: -1px;
}
/*.success:before {*/
/*    color: #88c671;*/
/*    content: "\0056";*/
/*}*/
.problem:before {
    color: #d33d44;
    content: "\0057";
}
.cake-error {
    padding: 10px;
    margin: 10px 0;
}
#url-rewriting-warning {
    display: none;
}

/* Navbar Formatting */
nav.main-nav {
    background-color: #007BFF;
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display:flex;
    justify-content: space-between;
    align-items: center;
}

nav.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

nav.main-nav ul li {
    display: inline;
}

nav.main-nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    padding: 10px 15px;
    transition: color 0.3s ease-in-out; /* Colour changes when user hovers over it */
}

nav.main-nav ul li a:hover,
nav.main-nav ul li a:focus {
    color: #ffdd57;
}

/* Logo Formatting */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px; /* Space between logo and heading */
}

.logo {
    max-height: 60px;
    width: auto;
}

/* Book Button Formatting */
.nav-buttons {
    margin-left: auto;
}

.book-now-btn {
    background-color: #88c671;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.book-now-btn:hover {
    background-color: #ffdd57 /* Colour changes when user hovers over it */
}

/* Mobile Layout Adjustments */
@media (max-width: 768px) {
    nav.main-nav {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    nav.main-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .logo-container {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .nav-buttons {
        margin-left: 0;
        text-align: center;
        margin-top: 10px;
    }

    .book-now-btn {
        display: inline-block;
        text-align: center;
    }

    .logo {
        max-height: 55px;
        width: auto;
    }

    h1.company-name {
        font-size: 1.6em;
        margin: 0;
    }
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../img/hero-background.jpg') center/cover;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.hero-action {
    background-color: #ffdd57;
    color: #333;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.hero-action:hover {
    background-color: #f0c63a;
}

.services {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.service-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.service-card img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.action-booking {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../img/hero-background.jpg') center/cover;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.book-now-main {
    background-color: #ffdd57;
    color: #333;
    padding: 15px 30px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    display: inline-block;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.faq {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
}

.faq h2 {
    margin-bottom: 40px;
    color: #333;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

/* Questions in the FAQ section */
.faq-list h3 {
    font-size: 1.58rem;
    color: #007bff;
    margin-top: 30px;
    margin-bottom: 10px;
    border-left: 4px solid #007bff;
    padding-left: 12px;
}

/* Answers in the FAQ section */
.faq-list p {
    font-size: 1.16rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
    padding-left: 10px;
}

.faq-list h3 + p {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.footer {
    background-color: #222;
    color: #ccc;
    padding: 30px 20px;
    text-align: center;
}

.footer a {
    color: #ffdd57;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}


