/* styles.css */

/* General Styles */
@font-face {
    font-family: 'Cinzel';
    src: url('CinzelDecorative-Regular.ttf') format('truetype');
    /* Add additional formats if needed, like format('woff') */
}

@font-face {
    font-family: 'SourceSans';
    src: url('SourceSans3-VariableFont_wght.ttf') format('truetype');
    /* Add additional formats if needed, like format('woff') */
}

/* Set black background for the overall page */
body {
    background-color: black;
    color: #ac8de6;
    text-align: center;
    font-family: 'SourceSans', sans-serif;
    background-color: #161616;
    font-size: medium;
    
}

/* Table Styles */
table {
    width: 90%; /* Adjust width as needed */
    margin: 0 auto; /* Center the table horizontally */
    border-collapse: collapse;
    color: black;
    text-align: center;
    font-family: 'SourceSans', sans-serif;
    background-color: #f6d9f8;
    font-size: medium;
    
}

th, td {
    padding: 8px;
    text-align: left;
    border: 2px solid #ac8de6;
    width: auto;
}

th {
    background-color: #f6d9f8;
    border-right: 1px solid #ac8de6; /* Purple grid lines */
    font-weight: bold;
    font-size: large;
}

.membership {
    margin-top: 20px;
    
}

.membership h2 {
    color: #ac8de6;
    text-align: center;
    font-family: 'Cinzel', sans-serif;
    background-color: #161616;
    text-transform: uppercase;
    font-size: xx-large;
}

.membership h3 {
    color: #ac8de6;
    text-align: center;
    font-family: 'Cinzel', sans-serif;
    background-color: #161616;
    text-transform: uppercase;
    font-size: large;
}

.services {
    margin-top: 20px;
    
}

.services h2 {
    color: #ac8de6;
    text-align: center;
    font-family: 'Cinzel', sans-serif;
    background-color: #161616;
    text-transform: uppercase;
    font-size:xx-large;
}

/* Button Styles */
.book-button {
    display: block;
    margin: 0 auto;
    background-color: #ac8de6;
    color: black;
    font-size: medium;
    text-align: center;
    padding: 10px 20px;
    border-radius: 5%;
}

/* Button Styles */
.services-book-button {
    display: block;
    margin: 0 auto;
    background-color: #ac8de6;
    color: black;
    font-size: medium;
    text-align: center;
    padding: 10px 20px;
    border-radius: 5%;
    width: max-content;
    height: max-content;
}

/* Logo Styles */
#logo {
    display: block;
    margin: 0 auto;
    padding-top: 50px;
}

header, footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

.social-media {
    margin-top: 20px;
}

.social-media a {
    margin-right: 10px;
}

.social-media img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

#toTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: 16px;
    border: none;
    outline: none;
    background-color: #ac8de6;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
}

#toTopBtn:hover {
    background-color: #ac8de6;
}

/* Media Query for Small Screens (Mobile Phones) */
@media screen and (max-width: 600px) {
    h1, h2, h3 {
        font-size: 14px;
    }

    .about-text,
    .about-container img {
        max-width: 100%;
        margin-right: 0;
    }

    .about-container {
        flex-direction: column;
        align-items: flex-start;
    }
}
