* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.5;
    color: #333;
    overflow-x: hidden;
}

/* Utility classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-16 {
    margin-top: 4rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

/* Hero section */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 1;
}

.hero #hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -10;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero h1 {
    font-family: 'Venera900';
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3rem;

    }
}

.hero p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero p {
        font-size: 1.25rem;
    }
}

.hero-accent {
    color: #ed4933;
}

.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .button-container {
        flex-direction: row;
        justify-content: center;
    }
}

.btn {
    display: inline-block;
    min-width: 150px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-align: center;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: #ed4933;
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #ed4933;
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-20px);
    }

    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Info section */
.info-section {
    position: relative;
    width: 100%;
    transition: min-height 0.3s ease-out;
}

.info-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url("../../images/phoenix-1.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease-out;
    z-index: -10;
    
}

.info-content {
    top: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    pointer-events: none;
    padding: 10vh 0;


}

.info-text {
    /* height: 100vh; */
    opacity: 0;
    transform: translateY(20vh);
    transition: all 0.5s ease-out;
    pointer-events: auto;
    /* z-index: 1; */
}

.info-text h2 {
    font-size: 2.25rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .info-text h2 {
        font-size: 3rem;
    }
}

.info-text p {
    max-width: 36rem;
    margin: 0 auto;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    background-color: rgba(0, 0, 0, 0.5);
    height: fit-content;
    backdrop-filter: blur(8px);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

@media (min-width: 768px) {
    .info-text p {
        font-size: 1.5rem;
    }
}

.info-icons {
    /* height: 90vh; */
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1rem;
    opacity: 0;
    transform: translateY(20vh);
    transition: all 0.5s ease-out;
    pointer-events: auto;

}

@media (min-width: 1024px) {
    .info-icons {
        grid-template-columns: 1fr 1fr 1fr;
    }

}

.icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    /* height: fit-content; */
    backdrop-filter: blur(8px);
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    color: white;
    font-size: x-large;

}

.icon {
    width: 3rem;
    height: 3rem;
    color: #ed4933;
}

.icon-card h3 {
    font-size: 1rem;
    /* font-weight: 600; */
    margin-bottom: 0.5rem;
}

.icon-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 768px) {

    .icon {
        font-size: xx-large;
    }

    .icon-card h3 {
        font-size: 1.5rem;
    }

    .icon-card p {
        font-size: 1.25rem;
    }

}

/* Gallery section */
.gallery-section {
    position: relative;
    width: 100%;
    background-color: #2E3842;
    padding: 6rem 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .gallery-section {
        padding: 6rem 6rem;
    }
}

.gallery-item {
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 0px 6px whitesmoke;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    box-shadow: 0px 0px 15px 1px #ed4933;
}

.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.gallery-item-content {
    padding: 1rem;
}

.gallery-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
    width: 100%;
    color: #ed4933;
}

.gallery-item p {
    color: whitesmoke;
}

.cta-container {
    margin-top: 4rem;
    text-align: center;
}

.cta-container h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.summary-section {
    position: relative;
    width: 100%;
    background-color: #2e3842;
    padding: 6rem 1rem;
    color: white;
}

.summary-background {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url("../../images/phoenix-1.webp");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.summary-container {
    max-width: 1200px;
    margin: 0 auto;
}

.summary-header {
    text-align: center;
    margin-bottom: 3rem;
}

.summary-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.summary-header h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #ed4933;
}

.summary-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.summary-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .summary-cards {
        grid-template-columns: 1fr 1fr;
    }
}

.summary-card {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 0.5rem;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.summary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.summary-card-icon {
    font-size: 2.5rem;
    color: #ed4933;
    margin-bottom: 1rem;
}

.summary-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ed4933;
}

.summary-card-content {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.summary-cta {
    text-align: center;
    margin-top: 4rem;
}

.summary-cta .btn {
    display: inline-block;
    min-width: 200px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-align: center;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    background-color: #ed4933;
    color: white;
    border: none;
}

.summary-cta .btn:hover {
    background-color: #c83a27;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(237, 73, 51, 0.4);
}