/* Basic styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Body */
body {
    background-color: white;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    height: 80px;
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
    color: #333;
    font-size: 36px;
    font-weight: bold;
    text-align: left;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    transform: translateY(-5px);
    box-shadow: 10px 0 20px rgba(255, 193, 0, 0.7), -10px 0 20px rgba(255, 193, 0, 0.7);
}

.avatar-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 5px;
}

/* Mobile Menu (Hamburger Icon) */
.hamburger {
    font-size: 30px;
    cursor: pointer;
    display: none;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        right: 20px;
        background-color: white;
        padding: 10px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    nav ul.active {
        display: flex;
    }
}

/* Main content */
main {
    margin-top: 10px; /* Adjusted to ensure main content stays below the fixed header */
}

/* Contact Section */
.contact-section {
    background-color: rgba(255, 255, 255, 0.9); /* White background */
    padding: 50px;
    text-align: center; /* Center title and buttons */
    margin: 50px auto;
    width: 80%;
    max-width: 600px;
    border-radius: 8px;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); Adds a bit of depth */
}

.contact-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ff7e00; /* Title color matching gradient */
}

/* Contact Buttons Section */
.contact-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.contact-button {
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    animation: outerGlow 1.5s infinite alternate; /* Outer glow animation */
}

/* Outer Glow Animation */
@keyframes outerGlow {
    0% {
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }
    100% {
        box-shadow: 0 0 20px rgba(255, 81, 47, 0.7),
                    0 0 20px rgba(255, 126, 0, 0.7),
                    0 0 20px rgba(240, 152, 25, 0.7),
                    0 0 20px rgba(255, 193, 0, 0.7); /* New gradient color effects */
    }
}

/* Button Press Animation */
.contact-button:active {
    transform: scale(0.95); /* Shrink effect */
    transition: transform 0.1s ease; /* Quick transition */
}

/* Icon inside Button */
.contact-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

/* Caption under Icon */
.contact-caption {
    font-size: 1.1rem;
    color: #2596be; /* Text color */
}

/* Button size consistency */
.contact-button {
    min-width: 150px;
    padding: 20px;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

footer a {
    color: #ffc100;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffdb70;
    text-decoration: underline;
}
