/* --- General & Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    background-color: #1a222b; /* Fallback color */
}

/* --- Main Cover Container --- */
.cover-container {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertical centering */
    align-items: center;     /* Horizontal centering */
    min-height: 100vh;
    padding: 2rem;
    text-align: center;
    
    /* A subtle, modern gradient background */
	background-image: url('Logo.png');
  	
	/* Add these properties for auto-sizing */
    background-size: 35% Auto; /* This scales the image to cover the entire container */
    background-repeat: no-repeat; /* This prevents the image from tiling */
    background-position: center center; /* This centers the image within the container */
    background-attachment: fixed; /* This makes the background image fixed during scroll */
}
}

/* --- Content --- */
main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
}

.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.6;
}

/* --- Call to Action (CTA) Button --- */ 
.cta-button {
    display: inline-block;
    padding: 1rem 1.5rem;
    background-color: #000000;
    color: #FFD700;
    font-size: 4rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px; /* Pill shape */
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.80);
}

.cta-button:hover {
    background-color: #ffd700; /* background-color: #0088cc; */
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 170, 255, 0.3);
}
/* ADD THIS NEW RULE FOR THE SECOND BUTTON */
.cta-button-secondary {
    margin-bottom: 2rem; /* Creates space between the two buttons */
    /* You can add other different styles here if you want */
    /* For example, to make it smaller: */
     font-size: 2.5rem;
    padding: 0.8rem 1.2rem;
}

.cta-button:hover {
    background-color: #ffd700; /* background-color: #0088cc; */
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 170, 255, 0.3);
}
/* --- Footer & Social Links --- */
footer {
    padding: 1rem 0;
}

.social-links a {
    color: #a0a0a0;
    font-size: 1.5rem;
    margin: 0 1rem;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: #00aaff; /* Match button color on hover */
    transform: scale(1.2);
}

/* --- Responsive Design for Mobile --- */
@media (max-width: 768px) {
	.cover-container {
        /* Makes the background logo larger on mobile */
        /* Adjust the percentage as needed */
        background-size: 87% auto;
	}
    h1 {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
    }
	/* ADD THIS RULE TO CONTROL SPACING BETWEEN BUTTONS ON MOBILE */
    .cta-button-secondary {
        margin-bottom: 0.5rem; /* Adjust this value to increase or decrease space */
    }
}