
/* Custom styles that extend Tailwind */
body {
    scroll-behavior: smooth;
    font-family: 'Montserrat', sans-serif;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');
}
.vision-statement {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    line-height: 1.3;
    color: #1e3a8a;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
    letter-spacing: 0.5px;
    max-width: 3xl;
    margin: 0 auto;
    padding: 0 1rem;
}
.vision-statement u {
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}
/* Career cards */
.career-card {
    transition: all 0.3s ease;
    transform: translateY(0);
}

.career-card:hover {
    transform: translateY(-5px);
}

/* Custom animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}
/* Flag images in buttons */
a img[alt*="Flag"] {
    filter: drop-shadow(0 0 1px rgba(0,0,0,0.2));
}

/* Custom components */
.nav-link {
position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #2563eb;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}
/* Video aspect ratio */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin: 2rem auto;
    width: 100%;
    max-width: 560px;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.aspect-w-16 {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}
.aspect-h-9 {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* Window Gallery Styles */
.window-gallery {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.window-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.window-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
/* Image Gallery Section */
section.bg-gray-50 .grid img {
    transition: transform 0.3s ease;
}

section.bg-gray-50 .grid img:hover {
    transform: scale(1.02);
}

/* Responsive adjustments */
@media (max-width: 768px) {
.hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
}
