/* New Animation for Location Section */
@keyframes slideInFromRightWithZoom {
    0% {
        opacity: 0;
        transform: translateX(100px) scale(0.9);
    }

    60% {
        opacity: 1;
        transform: translateX(-10px) scale(1.05);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.location-section {
    opacity: 0;
    transform: translateX(100px) scale(0.9);
    transition: opacity 0.8s, transform 0.8s;
}

.location-section.visible {
    animation: slideInFromRightWithZoom 1s cubic-bezier(0.22, 1.12, 0.56, 1.01) both;
}

/* New Animation for Gallery Section */
@keyframes fadeInWithBounce {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }

    60% {
        opacity: 1;
        transform: translateY(-10px) scale(1.02);
    }

    80% {
        transform: translateY(5px) scale(0.98);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.gallery-section {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: opacity 0.8s, transform 0.8s;
}

.gallery-section.visible {
    animation: fadeInWithBounce 1.1s cubic-bezier(0.22, 1.12, 0.56, 1.01) both;
}

/* Staggered animation for gallery items */
.gallery-grid {
    perspective: 1000px;
}

.gallery-item {
    opacity: 0;
    transform: translateY(30px) rotateY(30deg);
    transition: all 0.6s cubic-bezier(0.22, 1.12, 0.56, 1.01);
}

.gallery-section.visible .gallery-item {
    opacity: 1;
    transform: translateY(0) rotateY(0);
}

.gallery-section.visible .gallery-item:nth-child(1) {
    transition-delay: 0.1s;
}

.gallery-section.visible .gallery-item:nth-child(2) {
    transition-delay: 0.2s;
}

.gallery-section.visible .gallery-item:nth-child(3) {
    transition-delay: 0.3s;
}

.gallery-section.visible .gallery-item:nth-child(4) {
    transition-delay: 0.4s;
}

.gallery-section.visible .gallery-item:nth-child(5) {
    transition-delay: 0.5s;
}

.gallery-section.visible .gallery-item:nth-child(6) {
    transition-delay: 0.6s;
}

.gallery-section.visible .gallery-item:nth-child(7) {
    transition-delay: 0.7s;
}

.gallery-section.visible .gallery-item:nth-child(8) {
    transition-delay: 0.8s;
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        transform: translateY(80px) scale(0.95);
    }

    60% {
        opacity: 1;
        transform: translateY(-10px) scale(1.03);
    }

    80% {
        transform: translateY(5px) scale(0.98);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        transform: translateX(-120px) scale(0.8) rotate(-8deg);
    }

    60% {
        opacity: 1;
        transform: translateX(20px) scale(1.05) rotate(2deg);
    }

    80% {
        transform: translateX(-5px) scale(0.98) rotate(-1deg);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1) rotate(0);
    }
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        transform: translateX(120px) scale(0.8) rotate(8deg);
    }

    60% {
        opacity: 1;
        transform: translateX(-20px) scale(1.05) rotate(-2deg);
    }

    80% {
        transform: translateX(5px) scale(0.98) rotate(1deg);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1) rotate(0);
    }
}

@keyframes zoomRotateIn {
    0% {
        opacity: 0;
        transform: scale(0.7) rotate(-10deg);
    }

    60% {
        opacity: 1;
        transform: scale(1.05) rotate(3deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

.animate-fade-in {
    opacity: 0;
    transform: translateY(80px) scale(0.95);
    transition: opacity 0.8s, transform 0.8s;
}

.animate-fade-in.visible {
    animation: fadeInUpBig 1.1s cubic-bezier(.22, 1.12, .56, 1.01) both;
}

.animate-slide-in-left {
    opacity: 0;
    transform: translateX(-120px) scale(0.8) rotate(-8deg);
    transition: opacity 0.8s, transform 0.8s;
}

.animate-slide-in-left.visible {
    animation: bounceInLeft 1.1s cubic-bezier(.22, 1.12, .56, 1.01) both;
}

.animate-slide-in-right {
    opacity: 0;
    transform: translateX(120px) scale(0.8) rotate(8deg);
    transition: opacity 0.8s, transform 0.8s;
}

.animate-slide-in-right.visible {
    animation: bounceInRight 1.1s cubic-bezier(.22, 1.12, .56, 1.01) both;
}

.animate-zoom-in {
    opacity: 0;
    transform: scale(0.7) rotate(-10deg);
    transition: opacity 0.8s, transform 0.8s;
}

.animate-zoom-in.visible {
    animation: zoomRotateIn 1.1s cubic-bezier(.22, 1.12, .56, 1.01) both;
}

/* Staggered effect for children */
.animate-stagger>* {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: opacity 0.7s, transform 0.7s;
}

.animate-stagger.visible>* {
    opacity: 1;
    transform: none;
    animation: fadeInUpBig 0.8s cubic-bezier(.22, 1.12, .56, 1.01) both;
}

.animate-stagger.visible>*:nth-child(1) {
    animation-delay: 0.1s;
}

.animate-stagger.visible>*:nth-child(2) {
    animation-delay: 0.25s;
}

.animate-stagger.visible>*:nth-child(3) {
    animation-delay: 0.4s;
}

.animate-stagger.visible>*:nth-child(4) {
    animation-delay: 0.55s;
}

.animate-stagger.visible>*:nth-child(5) {
    animation-delay: 0.7s;
}

:root {
    --background: #09090b;
    --foreground: #fafafa;
    --primary: #facc15;
    --primary-foreground: #000;
    --border: #27272a;
    --muted: #18181b;
    --card: #18181b;
    --text-gray: #a1a1aa;
    --golden: #FFA629;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html,
body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.5;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

/* Location Section Styles */
.location-section {
    padding: 4rem 1rem;
    background-color: #09090B;
}

.location-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.location-text {
    flex: 1;
}

.location-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--foreground);
    position: relative;
}

.location-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--primary);
    bottom: -8px;
    left: 0;
}

.location-description p {
    margin-bottom: 1.2rem;
    color: #A1A1AA;
    line-height: 1.7;
}

.location-image {
    flex: 1;
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.location-img {
    width: 100%;
    transition: transform 0.5s ease;
}


.location-img:hover {
    transform: scale(1.05);
}

.location-caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--primary);
    text-align: center;
    font-weight: 500;
}

/* Gallery Section Styles */
.gallery-section {
    padding: 4rem 1rem;
    background-color: #09090B;
}

.gallery-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.gallery-subtitle {
    text-align: center;
    color: #A1A1AA;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    aspect-ratio: 1/1;
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 1.5rem;
    transition: bottom 0.4s cubic-bezier(0.22, 1.12, 0.56, 1.01);
    transform-style: preserve-3d;
}

.gallery-info {
    transform: translateZ(30px);
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(250, 204, 21, 0.2);
    z-index: 10;
}


.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-info h3 {
    color: #FAFAFA;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-date {
    color: var(--primary);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-desc {
    color: #D1D1D1;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .location-content {
        flex-direction: column;
        gap: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .location-title {
        font-size: 1.8rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .location-title {
        font-size: 1.6rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-title {
        font-size: 1.8rem;
    }

    .gallery-subtitle {
        font-size: 1rem;
    }
}

/* Who We Are Section Styles */
.who-we-are {
    padding: 4rem 1rem;
    background-color: #09090B;
    color: #FAFAFA;
    margin-top: 10px;
}

.wwa-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.wwa-header {
    max-width: 50%;
    text-align: left;
}

.wwa-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FAFAFA;
}

.wwa-description {
    font-size: 1.125rem;
    color: #A1A1AA;
    line-height: 1.6;
}

@keyframes zoomIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.wwa-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-box {
    padding: 1rem;
    border-radius: 0.75rem;
    background: linear-gradient(to right,
            #383535 0%,
            #1A1818 25%,
            #0C0B0B 50%,
            #29272B 75%,
            #282829 100%);
    text-align: left;
    transition: transform 0.3s ease;
    animation: zoomIn 0.6s ease forwards;
    opacity: 0;
}

.stat-box:nth-child(1) {
    animation-delay: 0s;
}

.stat-box:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-box:nth-child(3) {
    animation-delay: 0.4s;
}

.stat-box:nth-child(4) {
    animation-delay: 0.6s;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 1.5rem;
    color: #FAFF00;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: #FAFF00;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 0.875rem;
    color: #A1A1AA;
    line-height: 1.5;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .wwa-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .wwa-header {
        max-width: 70%;
    }
}

@media (max-width: 768px) {
    .wwa-header {
        max-width: 100%;
        text-align: center;
    }

    .wwa-title {
        font-size: 2rem;
    }

    .wwa-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .wwa-stats {
        grid-template-columns: 1fr;
    }

    .stat-box {
        padding: 1.25rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}

/* Our Story Section Styles */

@keyframes slideUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.our-story {
    padding: 5rem 1rem;
    color: #FAFAFA;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;



}

.story-content {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.story-text {
    flex: 1;
    padding-right: 2rem;
    opacity: 0;
    animation: slideUp 0.9s ease-out forwards;
    animation-delay: 0.1s;

}

.story-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--foreground);
    position: relative;
    display: inline-block;
}

.story-title::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    bottom: -5px;
    left: 0;
}

.story-description {
    color: #A1A1AA;
    line-height: 1.7;
}

.story-description p {
    margin-bottom: 1.2rem;
}

.story-image {
    flex: 1;
    position: relative;
    opacity: 0;
    animation: slideUp 0.8s ease-out forwards;
    animation-delay: 0.4s;
}

.story-img {
    width: 100%;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.story-img:hover {
    transform: scale(1.02);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .story-content {
        flex-direction: column;
        gap: 2rem;
    }

    .story-text {
        padding-right: 0;
    }

    .story-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .our-story {
        padding: 3rem 1rem;
    }

    .story-title {
        font-size: 2rem;
    }

    .story-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .story-title {
        font-size: 1.8rem;
    }

    .story-title::after {
        width: 60px;
        height: 3px;
        bottom: -8px;
    }
}

/* Core Values Section Styles */
.core-values {
    background-color: #09090B;
}

.cv-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cv-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin: 0 auto 3rem;
    color: var(--foreground);
    position: relative;
    display: block;
    width: fit-content;
    /* Better than fixed percentage */
    padding: 0 1rem;
    /* Prevents text from touching edges on mobile */
}

.cv-title::after {
    content: '';
    position: absolute;
    width: 100%;
    /* Full width of the text */
    height: 2px;
    background-color: var(--primary);
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.value-card {
    background-color: rgba(191, 156, 17, 0.1);
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.8s ease-out forwards;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(250, 208, 7, 0.3);
}

.value-icon {
    font-size: 1.8rem;
    color: #FAFF00;
    margin-bottom: 1rem;
    display: block;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FAFAFA;
    margin-bottom: 0.8rem;
}

.value-description {
    font-size: 0.9rem;
    color: var(--foreground);
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cv-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .value-card {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .cv-title {
        font-size: 1.8rem;
    }

    .value-icon {
        font-size: 1.5rem;
    }

    .value-title {
        font-size: 1.1rem;
    }

    .value-description {
        font-size: 0.85rem;
    }
}



/* Team Section Styles */
.team-section {
    padding: 5rem 1rem;

}



.team-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin: 0 auto 3rem;
    color: var(--foreground);
    position: relative;
    display: block;
    width: fit-content;
    padding: 0 1rem;
}

.team-title::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    justify-items: center;
}

.team-card {
    background-color: #222222;
    width: 100%;
    max-width: 286px;
    height: auto;
    min-height: 398px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;

}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(250, 255, 0, 0.1);
}

.member-image {
    height: 220px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.member-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #FAFAFA;
    margin-bottom: 0.5rem;
}

.member-position {
    font-size: 0.875rem;
    color: #EBBC00;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.member-intro {
    font-size: 0.875rem;
    color: #A1A1AA;
    margin-bottom: 1rem;
    line-height: 1.5;
    flex-grow: 1;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1rem;
}

.social-icon img {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.social-icon:hover img {
    transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 992px) {
    .team-section {
        padding: 4rem 1rem;
    }

    .team-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .member-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }

    .team-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .member-info {
        padding: 1.25rem;
    }

    .member-name {
        font-size: 1.1rem;
    }

    .social-icon img {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 576px) {
    .team-section {
        padding: 3rem 1rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

    .team-title {
        font-size: 1.7rem;
    }

    .team-card {
        max-width: 100%;
    }

    .member-image {
        height: 240px;
    }
}

@media (max-width: 400px) {
    .team-title {
        font-size: 1.5rem;
    }

    .member-name {
        font-size: 1rem;
    }

    .member-position,
    .member-intro {
        font-size: 0.8rem;
    }

    .social-icon img {
        width: 22px;
        height: 22px;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.6s ease-out forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}