/* About Section Styling */
.about-section {
    background: linear-gradient(135deg, #780415, #FFD700); /* Gradient for a fresh look */
    border-radius: 30px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 900px;
    margin: 2rem auto;
    color: white;
}

/* Heading Styling */
.about-section h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

/* Interests Grid */
.interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

/* Interest Item Styling */
.interest-item {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.interest-item:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.5);
}

.interest-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Styling for Links */
.contact-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: aliceblue;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    background-color: #8c2311;
    transition: background-color 0.3s ease;
}

.contact-link:hover {
    background-color: #c17709;
    color: white;
}

/* Small Text Styling */
p {
    font-size: 1rem;
    margin-top: 0.5rem;
    color: #f5f5f5;
}
