/* Custom styles to complement Tailwind CSS */
.hero-image {
    background-image: url('https://images.squarespace-cdn.com/content/v1/5c2cde7c8f51304e8d797935/1546535213234-LC6MKUBTINNN8SUTVE5E/header.png?format=1500w');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

/* Navigation styles */
nav {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

nav a {
    position: relative;
    text-decoration: none;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #000;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Guiding principles styling */
.principle-item {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.principle-item::before {
    content: '>>';
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
    font-size: 1.2em;
}

/* Partners and Sponsors sections */
.partners-grid, .sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.partners-grid img, .sponsors-grid img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.partners-grid img:hover, .sponsors-grid img:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

/* Social media icons */
.social-icon-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-icon {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon-link:hover {
    transform: translateY(-3px);
}

.social-icon-link:hover .social-icon {
    opacity: 0.8;
}

/* Location cards */
.location-card {
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-card img {
    transition: transform 0.3s ease;
}

.location-card:hover img {
    transform: scale(1.05);
}

/* Footer styles */
footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-info {
    line-height: 1.8;
}

/* Custom link styles */
.custom-link {
    position: relative;
    text-decoration: none;
    color: #000;
}

.custom-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
}

.custom-link:hover::after {
    width: 100%;
}

/* Responsive styles */
@media (max-width: 640px) {
    .principle-item {
        padding-left: 2rem;
    }
    
    .principle-item::before {
        font-size: 1em;
    }
    
    .social-icon {
        width: 24px;
        height: 24px;
    }
}
