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

/* Body styles with background image */
body {
    font-family: Inter, sans-serif;
    min-height: 100vh;
    background-image: url('./src/bg_placeholder.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Dark overlay effect */
    position: relative;
}

/* Dark overlay to make text readable */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

/* Main container */
.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
}

/* Logo section */
.logo-section {
    margin-bottom: 60px;
}

.logo {
    max-width: 500px;
    width: 100%;
    height: auto;
}

/* Main content section */
.content {
    max-width: 900px;
    margin: auto;
    color: white;
}

/* Main heading */
.main-heading {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    color: white;
    line-height: 1.2;
}

/* Description text */
.description {
    font-size: 16px;
    line-height: 1.6;
    color: white;
    margin-bottom: 4px;
}

/* Social icons section */
.social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: auto;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.2);
}

/* Responsive design for tablets */
@media (max-width: 768px) {
    .logo {
        max-width: 350px;
    }
    
    .main-heading {
        font-size: 36px;
    }
    
    .description {
        font-size: 18px;
    }
}

/* Responsive design for mobile phones */
@media (max-width: 480px) {
    .container {
        padding: 30px 15px;
    }
    
    .logo {
        max-width: 280px;
    }
    
    .main-heading {
        font-size: 28px;
    }
    
    .description {
        font-size: 16px;
    }
    
    .social-icons {
        gap: 15px;
    }
}