/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body setup */
body {
    font-family: 'Arial', sans-serif;
    background: url('background.jpg') no-repeat center center/cover;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    overflow: hidden; /* Prevent scrolling */
}

/* Full-Width Container */
.full-width-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay */
    width: 100%;
    height: 100%;
    padding: 20px;
}

/* Logo Section */
.logo-container {
    margin-bottom: 40px;
}

.logo {
    max-width: 220px; /* Control logo size */
    margin-bottom: 30px;
}

/* Button Styling */
button {
    background-color: #ff6600;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 22px;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 40px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #e55a00;
}

/* Camps Section Styling */
.camps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    width: 100%;
}

.camp {
    background-color: #fff;
    color: #000;
    border: 1px solid #ccc;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.camp:hover {
    background-color: #ff6600;
    color: white;
    transform: translateY(-5px);
}

/* WhatsApp Button Styling */
.whatsapp-btn {
    background-color: #25d366;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 30px;
}

/* Footer Styling */
footer {
    font-size: 14px;
    color: #777;
    margin-top: 30px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .camps {
        grid-template-columns: 1fr;
    }
}
