﻿ 

.observatory-hero { 
    background-size: cover;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index :-1
}

    .observatory-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(63, 81, 181, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    margin-top: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    background: linear-gradient(45deg, #ffffff, #e8eaf6, #ffab40);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.carousel-container {
    background: var(--card-bg);
    backdrop-filter: var(--backdrop-blur);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.carousel-item.active {
    display: block;
}

.carousel-item img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

    .carousel-item img:hover {
        transform: scale(1.02);
    }

.info-card {
    background: var(--card-bg);
    backdrop-filter: var(--backdrop-blur);
    border-radius: 15px;
    padding: 2rem;
    margin: 1.5rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }

.section-title {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 50px;
        height: 3px;
        background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
        border-radius: 2px;
    }

.policies-details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

    .policies-details summary {
        font-weight: 600;
        color: var(--accent-color);
        cursor: pointer;
        padding: 0.5rem;
        border-radius: 8px;
        transition: background-color 0.3s ease;
    }

        .policies-details summary:hover {
            background: rgba(255, 107, 53, 0.1);
        }

    .policies-details ul {
        margin-top: 1rem;
        padding-left: 0;
    }

    .policies-details li {
        background: rgba(255, 255, 255, 0.05);
        margin: 0.5rem 0;
        border-radius: 8px;
        transition: background-color 0.3s ease;
    }

        .policies-details li:hover {
            background: rgba(255, 255, 255, 0.1);
        }

    .policies-details a {
        color: var(--text-light);
        text-decoration: none;
        padding: 0.75rem 1rem;
        display: block;
        transition: color 0.3s ease;
    }

        .policies-details a:hover {
            color: var(--accent-color);
            text-decoration: none;
        }

.telescope-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.telescope-card {
    background: var(--card-bg);
    backdrop-filter: var(--backdrop-blur);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .telescope-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    }

    .telescope-card img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        border-radius: 12px;
        margin-bottom: 1rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }

.telescope-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.telescope-description {
    line-height: 1.6;
    opacity: 0.9;
}

.link-card {
    background: var(--card-bg);
    backdrop-filter: var(--backdrop-blur);
    border-radius: 12px;
    margin: 0.5rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

    .link-card:hover {
        background: rgba(255, 107, 53, 0.1);
        border-color: var(--accent-color);
        transform: translateX(10px);
    }

    .link-card a {
        color: var(--text-light);
        text-decoration: none;
        padding: 1rem 1.5rem;
        display: block;
        font-weight: 500;
        transition: color 0.3s ease;
    }

        .link-card a:hover {
            color: var(--accent-color);
            text-decoration: none;
        }

.special-telescope {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(63, 81, 181, 0.1));
    border: 2px solid var(--accent-color);
}

    .special-telescope .telescope-title {
        background: linear-gradient(45deg, var(--accent-color), #ffab40);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.thanks-message {
    background: var(--card-bg);
    backdrop-filter: var(--backdrop-blur);
    border-radius: 15px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

    .thanks-message p {
        font-size: 1.3rem;
        font-style: italic;
        color: var(--accent-color);
        margin: 0;
    }

.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .telescope-grid {
        grid-template-columns: 1fr;
    }

    .carousel-container {
        padding: 1rem;
    }
}

 
