/*
    File: css/style.css
    Description: Main CSS file for Ubud Serenity Bungalows, providing basic resets and general styles.
*/

/* Basic Reset */
body, h1, h2, h3, p, ul, li, a {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    text-decoration: none;
    list-style: none;
    color: inherit;
}

body {
    font-family: sans-serif; /* You can replace with your chosen font */
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 30px;
    color: #555;
}

.button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.button--primary {
    background-color: #4c9a4c; /* Example primary color */
    color: white;
}

.button--primary:hover {
    background-color: #3d853d;
}

.button--secondary {
    background-color: #e09b3d; /* Example secondary color */
    color: white;
}

.button--secondary:hover {
    background-color: #cc8a33;
}

.button--whatsapp {
    background-color: #25d366; /* WhatsApp green */
    color: white;
}

.button--whatsapp:hover {
    background-color: #128c7e;
}

.button--large {
    font-size: 1.2em;
    padding: 15px 30px;
}

/* You will add more general styles here as needed */

/* Media queries for small (max-width: 768px) */
@media (max-width: 768px) {
    body {
        line-height: 1.4;
    }

    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 2em;
        margin-bottom: 20px;
    }

    .button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .button--large {
        font-size: 1em;
        padding: 12px 25px;
    }
}