/* Google Fonts import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;800&display=swap');

body {
    margin: 0;
    padding: 0;
    /*background: linear-gradient(135deg, #667eea, #764ba2);*/
    background-image: url("../images/bg.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-family: Arial, sans-serif;
    color: white;
    display: flex;
    flex-direction: column; /* ✅ to allow footer at bottom */
    min-height: 100vh;
}
  
.container {
    text-align: center;
    flex: 1; /* ✅ pushes footer to the bottom */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
  
h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 5vw;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3vw;
    font-weight: 600;
    margin-top: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
}
  
p {
    font-size: 12px;
}
  
footer {
    background-color: rgba(0, 0, 0, 0.2); /* subtle transparent footer */
    text-align: center;
    padding: 1rem;
    line-height: 1.4;
}
  
footer p {
    margin: 0;
    color: #f0f0f0;
}

/* 📱 Responsive Styles for Mobile */
@media (max-width: 600px) {
    h1 {
        font-size: 7vw;
    }
    
    h2 {
        font-size: 5vw;
    }
  }