body {
    font-family: "Montserrat", serif;
    margin: 0 0;
    width: 100%;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    padding: 15px 20px;
    background-color: #782F40;
}
.navbar a {
    text-decoration: none;
    color: white;
    font-weight: 500;
}
.navbar a:hover {
    color: grey;
}
.logo {
    font-weight: bold;
    color: white;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}
.hero-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url("fsu.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 87.65vh;
    margin-bottom: 50px;
}
.hero-text {
    text-align: center;
    padding-top: 15vh;
    color: white;
}
.hero-text h1 {
    font-size: 50px;
}
.hero-text p {
    font-size: 20px;
}
#home-button {
    margin-top: 150px;
}
.icons {
    display: flex;
    height: 75px;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 50px;
    padding: 10px;
}
.icons img {
    padding-left: 10px;
    padding-right: 10px;
}
.icons-text h1 {
    font-size: 20px;
}
.icons-text p {
    font-size: 15px;
}
hr {
    border: none; /* Remove default border */
    height: 1.5px; /* Adjust thickness */
    background-color: #CEB888; /* Line color */
    box-shadow: 0 4px 8px rgba(120, 47, 64, 0.5); /* Soft shadow */
}
.testimonials {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    justify-content: space-between;
    padding: 50px;
    margin-top: 50px;
    margin-bottom: 50px;
}
.card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 250px;
    height: 300px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.card h1 {
    font-size: 25px;
}
.icon {
    font-size: 24px;
}
.profile {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}
.profile img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.profile div {
    display: flex;
    flex-direction: column;
}
.profile strong {
    font-size: 14px;
}
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
}
#address {
    color: white;
    margin-left: -80px
}
.social-icons svg {
    margin-right: 4px;
}
.social-icons svg:hover {
    cursor: pointer;
}
.mission {
    display: flex;
    margin-left: 50px;
    margin-bottom: 50px;
    margin-top: 100px;
}
.mission-text {
    flex-basis: 40%;
    margin-right: 50px;
}
.mission-text h4 {
    color: #CEB888;
}
.mission-text h1 {
    padding-bottom: 100px;
    color: #782F40;
}
.mission-text p {
    font-weight: 500;
}
#students {
    width: 750px;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}
.ways {
    display: flex;
    flex-direction: column;
}
.get-involved {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 100px;
    margin-bottom: 100px;
}
.option-card {
    position: relative;
    width: 400px;
    height: 500px;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
}
.option-card::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        #CEB888, transparent, transparent, transparent
    );
    animation: border-spin 4s linear infinite;
}
.option-card::after {
    content: "";
    position: absolute;
    inset: 3px;
    background: white;
    border-radius: 10px;
    z-index: 2;
}

/* Moving Border Animation */
@keyframes border-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Floating Blob Effect */
.blob {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #782F40;
    opacity: 0.8;
    filter: blur(16px);
    animation: blob-move 5s infinite ease-in-out;
}

@keyframes blob-move {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
    100% { transform: translate(-50%, -50%) scale(1); }
}
.card-content {
    z-index: 3;
    color: #333;
    text-align: center;
    padding: 20px;
}
.card-content h3 {
    font-size: 1.4rem;
    margin: 0;
    font-weight: bold;
}
.card-content p {
    text-align: left;
    font-size: 15px;
    margin-left: 20px;
    margin-bottom: 50px;
    margin-top: 20px;
}
.signup-btn {
    transition: all 0.3s ease-in-out;
    width: 160px;
    height: 50px;
    border-radius: 50px;
    background-image: linear-gradient(135deg, #A04A5A 0%, #782F40 100%);
    box-shadow: 0 20px 30px -6px rgba(120, 47, 64, 0.5);
    outline: none;
    cursor: pointer;
    border: none;
    font-size: 17px;
    color: white;
}
.signup-btn:hover {
    transform: translateY(3px);
    box-shadow: none;
}
.signup-btn:active {
    opacity: 0.5;
}


