/* Reset and Base Styles */
body {
    font-family: 'Stack Sans Text', sans-serif;
    text-align: center;
    background: linear-gradient(135deg, #1C6683 0%, #144a5f 100%);
    /* Deep blue gradient */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #ffffff;
}

/* Container */
.container {
    padding: 40px 20px;
    border-radius: 16px;
    /* Optional: subtle glassmorphism effect */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    max-width: 480px;
    width: 90%;
    margin: 20px;
}

/* Header & Logo */
.logo {
    margin-bottom: 30px;
}

.logo img {
    max-width: 160px;
    height: auto;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 10px 0 5px;
    letter-spacing: 0.5px;
}

.tagline {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.9;
    margin: 0 0 15px;
}

.description {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.8;
    max-width: 80%;
    margin: 0 auto;
}

/* Button Container */
.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

/* Buttons */
.button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    color: #98774C;
    /* Original brownish tone */
    background-color: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    font-size: 36px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.button:hover {
    transform: translateY(-5px);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Specific Hover Colors */
.phone:hover {
    background-color: #4CAF50;
}

.facebook:hover {
    background-color: #3b5998;
}

.instagram:hover {
    background-color: #e4405f;
}

.email:hover {
    background-color: #0077B5;
}

.location:hover {
    background-color: #EA4335;
}

/* Google Maps Red */

/* Responsive Design */
@media (max-width: 600px) {
    .container {
        padding: 30px 15px;
        width: 95%;
    }

    h1 {
        font-size: 24px;
    }

    .button {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }
}