/* General Styles */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --text-color: #1f2937;
    --light-text: #6b7280;
    --background-color: #ffffff;
    --light-background: #f3f4f6;
    --border-color: #e5e7eb;
    --spacing-unit: 1rem;
    --border-radius: 0.5rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.main-header {
    background-color: var(--background-color);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.current-page {
    color: var(--primary-color);
}

.current-page {
    position: relative;
}

.current-page::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

/* Hero Section */
.vacancies-hero {
    background: linear-gradient(rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.05));
    padding: 6rem 1rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--light-text);
    margin-bottom: 1rem;
}

/* Section Styles */
.about-section, .features-section, .additional-features-section, 
.support-section, .suitable-for-section, .why-choose-section, .cta-section {
    padding: 4rem 1rem;
    margin: 0;
    background-color: var(--background-color);
}

.about-section, .support-section, .cta-section {
    background-color: var(--background-color);
}

.features-section, .additional-features-section, .suitable-for-section, .why-choose-section {
    background-color: var(--light-background);
}

section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-color);
}

/* Image Styles */
.rounded-image {
    border-radius: var(--border-radius);
    width: 100%;
    height: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.rounded-image:hover {
    transform: scale(1.02);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-text {
    order: 1;
}

.about-image {
    order: 2;
}

/* Photo Gallery */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    aspect-ratio: 4/3;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: var(--border-radius);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Loading Animation for Images */
@keyframes imageFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.gallery-item img {
    opacity: 0;
    animation: imageFadeIn 0.5s ease-in forwards;
}

.gallery-item:nth-child(1) img { animation-delay: 0.1s; }
.gallery-item:nth-child(2) img { animation-delay: 0.2s; }
.gallery-item:nth-child(3) img { animation-delay: 0.3s; }
.gallery-item:nth-child(4) img { animation-delay: 0.4s; }
.gallery-item:nth-child(5) img { animation-delay: 0.5s; }
.gallery-item:nth-child(6) img { animation-delay: 0.6s; }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1100;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image {
    display: block;
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
    position: absolute;
    top: -2rem;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
}

.lightbox-caption {
    color: white;
    text-align: center;
    padding: 1rem 0;
    font-size: 1rem;
}

/* Features List */
.features-list, .additional-features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-box {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
    border: none;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Additional Features */
.additional-features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.additional-features-image {
    order: 1;
}

.additional-features-list {
    order: 2;
}

/* Support Section */
.support-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.support-text {
    order: 1;
}

.support-image {
    order: 2;
}

/* Feature Lists */
.feature-list {
    list-style-position: inside;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.feature-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Clean List - Removes default bullets */
.clean-list {
    list-style-type: none;
    text-align: center;
    padding-left: 0;
}

.clean-list li {
    list-style-type: none;
    padding-left: 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.clean-list li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: static;
    margin-right: 0.5rem;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: background-color 0.2s;
}

.cta-button:hover {
    background-color: var(--secondary-color);
}

/* CTA Section */
.cta-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Footer Styles */
.main-footer {
    background-color: var(--light-background);
    padding: 4rem 1rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--light-text);
}

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

.feature-box, .gallery-item, .about-image, .support-image, .additional-features-image {
    animation: fadeIn 0.6s ease-out forwards;
}

.feature-box:nth-child(2), .gallery-item:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-box:nth-child(3), .gallery-item:nth-child(3) {
    animation-delay: 0.4s;
}

.feature-box:nth-child(4), .gallery-item:nth-child(4) {
    animation-delay: 0.6s;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content, .support-content, .additional-features-content {
        grid-template-columns: 1fr;
    }
    
    .about-text, .support-text {
        order: 2;
    }
    
    .about-image, .support-image {
        order: 1;
        margin-bottom: 2rem;
    }
    
    .additional-features-image {
        margin-bottom: 2rem;
    }
    
    .additional-features-list {
        order: 2;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .vacancies-hero {
        padding: 4rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    section {
        padding: 2rem 1rem;
    }

    .features-list, .additional-features-list {
        grid-template-columns: 1fr;
    }

    .feature-box {
        padding: 1.5rem;
    }
    
    .photo-gallery {
        grid-template-columns: 1fr;
    }
}

/* Responsive Gallery */
@media (min-width: 768px) and (max-width: 992px) {
    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .photo-gallery {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        aspect-ratio: 3/2;
    }
}

/* Photo Showcase Section */
.photo-showcase-section {
    padding: 4rem 1rem;
    background-color: var(--light-background);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--light-text);
    font-size: 1.1rem;
}

.showcase-gallery {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .showcase-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .showcase-gallery {
        grid-template-columns: 1fr;
    }
}

/* Feature Gallery */
.feature-gallery {
    max-width: 800px;
    margin: 0 auto 3rem;
} 