@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Sancreek&display=swap');

/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff; /* Very Dark Grey Text */
    line-height: 1.8;
}

.background-image {
    background-image: url('images/main-room-dark.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 1;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
}

header, main, footer {
    width: 100%;
}

header {
    margin-bottom: 0rem;
}

.logo {
    max-width: 600px; /* Double desktop size */
    margin-bottom: 0rem;
}

h1, h2, p, a {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

h1 {
    font-family: 'Sancreek', cursive;
    font-size: 3.5rem;
    margin: 0;
    font-weight: 800;
    text-transform: uppercase;
    color: #000000; /* Solid Black */
}

h2 {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: none;
}

#about {
    margin-bottom: 3rem;
}

#about p {
    font-size: 1.1rem;
    max-width: 750px;
    margin: 0 auto;
    font-weight: 700; /* Bold description */
}

.info-columns {
    display: flex;
    border: 3px solid #2c2c2c;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.5); /* Transparent white background */
}

.column {
    flex: 1;
}

.column-content {
    padding: 0 2rem 2rem 2rem;
}

.column:not(:last-child) {
    border-right: 3px solid #2c2c2c;
}

.column h3 {
    font-family: 'Sancreek', cursive;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: #000000; /* Solid Black */
}

.column p {
    margin: 0.5rem 0;
    font-weight: 750;
}

.column a {
    color: #2c2c2c;
    text-decoration: underline;
    font-weight: 700;
    transition: opacity 0.3s ease;
}

.column a:hover {
    opacity: 0.7;
}

.business-hours {
    margin-top: 2rem;
}

.business-hours h4 {
    font-family: 'Sancreek', cursive;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: #000000;
}

.business-hours p {
    font-weight: 750;
    margin: 0.5rem 0;
}

.icon-background {
    width: 100%;
    padding: 3rem 0;
    margin-bottom: 0rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    opacity: 0.75;
}

#location-icon-bg {
    background-image: url('images/location-bg.jpg');
    filter: grayscale(50%);
}

#phone-icon-bg {
    background-image: url('images/phone-bg.jpg');
    filter: grayscale(50%);
}

#facebook-icon-bg {
    background-image: url('images/facebook-bg.jpg');
    filter: grayscale(50%);
}

.icon {
    font-size: 5rem;
    color: #ffffff; /* White Icon */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

.icon-background a {
    text-decoration: none;
}

footer {
    padding-top: 3rem;
}

footer p {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 3rem 1rem;
    }

    .logo {
        width: 80%; /* 80% of screen width on mobile */
        max-width: none;
    }

    h1 {
        font-size: 2.5rem;
    }

    .info-columns {
        flex-direction: column;
        border-left: none;
        border-right: none;
    }

    .column:not(:last-child) {
        border-right: none;
        border-bottom: 3px solid #2c2c2c;
    }
}



