@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');

html, body {
    height: 100%; /* Critical for full-height gradients */
  }
  .hero {
    height: 100%;
  }

  .hero {
    background: linear-gradient(to right, #a7c4ff, transparent) !important; /* Force test */
    min-height: 100vh;
  }

  /* Hover effects for cards */
.card {
    transition: transform 0.3s ease;
  }
  .card:hover {
    transform: translateY(-5px);
  }
  
  .social-icons a {
    display: inline-block;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

/* Optional: Color change on hover */
.social-icons a:hover i {
    color: #0d6efd !important; /* Bootstrap primary color */
}

/* Ensure navbar doesn't overlap content */
body {
    padding-top: 56px; /* Default navbar height */
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030; /* Above other content */
}

/* Adjust if your navbar is taller */
@media (min-width: 992px) {
    body {
        padding-top: 72px; /* For larger navbars */
    }
}



@keyframes floating {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
body {
    background: linear-gradient(-45deg, #FFC371, #FF5F6D, #2193B0, #6DD5FA);
    background-size: 400% 400%;
    animation: floating 10s infinite;
}


.event-card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    overflow: hidden;
}

.event-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: black;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.event-buddies-page {
    background: linear-gradient(to right, #6DD5FA, #2193B0);
    min-height: 100vh;
    padding: 20px;
}

.buddy-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 20px;
}

.buddy-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.buddy-card {
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    width: 500px; /* Smaller size */
    height: 100px;
    font-size: 14px; /* Adjust text size */
}

.buddy-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.buddy-title {
    margin-top: 80px; /* Push it down from the nav */
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    color: #007bff;
}

#login-container, #signup-container {
    width: 450px;
    padding: 30px;
    height: 300px;
}

.form-control {
    font-size: 18px;
    padding: 40px;
}

.btn-primary, .btn-success {
    font-size: 18px;
    padding: 10px;
}
#chatContainer1 {
    display: none;
    position: absolute;
    width: 280px; /* Slightly larger */
    height: 350px;
    background: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    border-radius: 12px;
    z-index: 1000;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}


#chatContainer1 .chat-header {
    background: #007bff; 
}

#chatContainer1 .chat-body {
    height: 250px;
    padding: 10px;
    font-size: 15px;
}

#chatContainer1 .chat-send-btn {
    background: #007bff;
}


#chatContainer2 {
    display: none;
    position: absolute;
    width: 250px; /* Slightly smaller */
    height: 320px;
    background: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    border-radius: 10px;
    z-index: 1000;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* Adjust the header color for variation */
#chatContainer2 .chat-header {
    background: #28a745; /* Green tone */
}

#chatContainer2 .chat-body {
    height: 220px;
    padding: 8px;
    font-size: 14px;
}

#chatContainer2 .chat-send-btn {
    background: #28a745;
}
