/* nav style */
nav {
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    background-color: white;
    padding: 5px 20px; 
    height: 90px; 
    position: fixed; 
    top: 0; 
    left: 0; 
    right: 0; 
    z-index: 1000; 
    border-bottom: 2px solid #ccc; 
}

.logo img {
    height: 80px; 
    width: auto; 
    display: block; 
}


.nav-links a {
	font-family: Georgia, 'Times New Roman', Times, serif;
	font-size: 13px;
	align-items: center;
	color: black;
	text-decoration: none;
	margin: 0 20px; 
    line-height: 1.6;
}

.nav-links a {
    display: inline-block;
    transform: scaleX(1.5);
    transform-origin: left;
    overflow: visible;
    padding-right: 12px;
}

.dropdown {
    display: inline-block;
}

.nav-right {
    display: flex;
    align-items: center;
    margin-right: 25px;
} 

.nav-right a {
    transform: scaleX(1.3);
}

.login-button { 
    font-family: Georgia, 'Times New Roman', Times, serif;
    background-color: #586adf;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
} 

.login-button:hover {
    background-color: darkblue;
    transform: scaleX(1.3);
}







/*  Footer */
footer {
    background-color: #586adf;
    color: white;
    font-family: Georgia, 'Times New Roman', Times, serif;
    padding: 40px 80px; 
}

.footer-section {
    display: flex; 
    justify-content: space-between; 
    gap: 100px; 
}

.footer-item {
    flex: 1; 
    text-align: left; 
}

.footer-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 5px;
}

.social-icons {
    display: flex; 
    gap: 15px; 
    margin-top: 15px;
}

.social-icons a {
    text-decoration: none;
    color: white;
    text-align: center;
    font-size: 20px; 
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.1); 
    color: #ffd700; 
} 

/* About */

.footer-item .custom-link {
    color: white;
    text-decoration: none;
}
  
.footer-item .custom-link:hover {
    text-decoration: underline; 
}


/* Explore Links */
.explore-links {
    list-style: none; 
    padding: 0;
    margin: 0;
}

.explore-links li {
    margin-bottom: 8px; 
}

.explore-links a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    transition: color 0.3s ease;
}

.explore-links a:hover {
    color: #ffd700; 
}

