@import url('https://fonts.cdnfonts.com/css/renfrew');

body {
    margin: 0;
    padding: 0;
    background: url('../images/kaaba-background.jpg') no-repeat center center/cover;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.6);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    width: 90%;
    max-width: 500px;
}

.content-box {
    background: rgba(0, 0, 0, 0.75);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.logo {
    width: 60px;
    height: auto;
}

.title {
    font-family: 'Renfrew', sans-serif;
    font-size: 28px;
    font-weight: bold;
    color: #FFD700;
    margin: 10px 0;
}

.subtitle {
    color: #E0E0E0;
    font-size: 16px;
    margin-bottom: 20px;
}

.buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFD700, #D4AF37);
    color: #000;
    font-weight: bold;
    text-decoration: none;
    padding: 12px;
    margin: 10px;
    border-radius: 8px;
    transition: 0.3s;
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
    font-size: 16px;
}

.btn i {
    margin-right: 10px;
}

.btn:hover {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    transform: scale(1.05);
}

footer {
    margin-top: 20px;
    color: #999;
    font-size: 14px;
}

/* Responsive Tweaks */
@media (max-width: 600px) {
    .content-box {
        padding: 15px;
        width: 90%;
    }
    .title {
        font-size: 24px;
    }
    .btn {
        font-size: 14px;
        padding: 10px;
    }
}
