/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Cover Section */
.cover {
    height: 100vh;
    background: url('images/cover.jpg') no-repeat center center/cover;
    position: relative;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.overlay h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.overlay p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-block;
    padding: 10px 20px;
    background: #00f2fe;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #4facfe;
}

/* Contact Section */
.contact-info {
    padding: 50px 20px;
    text-align: center;
    background: #f4f4f4;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info p {
    margin: 10px 0;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .overlay h1 {
        font-size: 2.5rem;
    }

    .overlay p {
        font-size: 1rem;
    }

    .btn-primary {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .contact-info {
        padding: 30px 15px;
    }
}

@media (max-width: 480px) {
    .overlay h1 {
        font-size: 2rem;
    }

    .overlay p {
        font-size: 0.9rem;
    }

    .btn-primary {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}
