/* Reset some default styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Iansui', sans-serif; /* Default font */
    background: url('background.webp') no-repeat center center fixed; /* Ocean-themed background image */
    background-size: cover; /* Make the background fill the entire screen */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    overflow: hidden;
}

/* Container for the content */
.container {
    text-align: center;
    background: rgba(0, 0, 0, 0.85); /* semi-transparent background for better contrast */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.title {
    margin-bottom: 20px;
}

.title h2 {
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 5px;
}

.title h4 {
    font-size: 1.0rem;
    font-weight: lighter;
    margin-top: 0;
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    width: 300px; /* Medium logo size */
    height: auto;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.instagram-link {
    font-size: 1.0rem;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #fff;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.instagram-link:hover {
    background: linear-gradient(45deg, #f06, #ff7e5f, #feb47b); /* Instagram-like gradient */
    color: white;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5); /* Optional shadow effect for more style */
}

/* WhatsApp Button */
.whatsapp-button {
		font-size: 1.2 rem;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #fff;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 40px;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
	background: linear-gradient(45deg, #128C7E, #25D366, #128C7E); /* Instagram-like gradient */
    color: white;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5); /* Optional shadow effect for more style */


}

/* Media Query for mobile responsiveness */
@media only screen and (max-width: 768px) {
    .title h2 {
        font-size: 2rem; /* Smaller title on mobile */
    }

    .title h4 {
        font-size: 1rem; /* Smaller subtitle on mobile */
    }

    .logo {
        width: 120px; /* Smaller logo on mobile */
    }

    .container {
        padding: 20px;
    }

    .contact-info h2 {
        font-size: 1.5rem; /* Smaller heading */
    }

    .instagram-link,
    .whatsapp-button {
        font-size: 1rem; /* Adjust button size */
        padding: 8px 15px; /* Adjust padding */
    }
}

@media only screen and (max-width: 480px) {
    .title h2 {
        font-size: 1.8rem; /* Further smaller title for very small screens */
    }

    .title h4 {
        font-size: 0.9rem; /* Further smaller subtitle */
    }

    .logo {
        width: 100px; /* Even smaller logo on small screens */
    }

    .contact-info h2 {
        font-size: 1.2rem;
    }

    .instagram-link,
    .whatsapp-button {
        font-size: 0.9rem; /* Further adjust button size */
        padding: 6px 12px; /* Further adjust padding */
    }
}
