/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Poppins:wght@300;400;600&display=swap');

:root {
    --primary: #050a14;
    --accent: #c5a059;
    --accent-light: #e0c08d;
    --bg-light: #fdfdfd;
    --glass: rgba(255, 255, 255, 0.05);
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --elite-bezier: cubic-bezier(0.16, 1, 0.3, 1);
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: #333;
    overflow-x: hidden;
    perspective: 1500px;
}




@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes eliteKenBurns {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

@keyframes eliteReveal {
    from {
        opacity: 0;
        transform: translateY(50px) rotateX(-5deg);
    }

    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

@keyframes drawLine {
    from {
        width: 0;
    }

    to {
        width: 100px;
    }
}


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 8%;
    background: rgba(5, 10, 20, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.logo {
    font-family: 'Cinzel', serif;
    color: var(--white);
    font-size: 1.8rem;
    text-decoration: none;
    letter-spacing: 2px;
}

.logo span {
    color: var(--accent);
}

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

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    opacity: 0.8;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
    opacity: 1;
}




.hero-about {
    height: 60vh;
    background: linear-gradient(rgba(5, 10, 20, 0.7), rgba(5, 10, 20, 0.7)),
        url("../assets/bg-about.avif") center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    position: relative;
}

.hero-about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    z-index: -1;
    animation: eliteKenBurns 20s linear infinite alternate;
}

.hero-content {
    max-width: 900px;
    animation: scaleIn 1.2s ease;
}

.hero h1,
.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 4.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
}


.hero-subtitle {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 2.5rem;
}

.hero-subtitle {
    letter-spacing: 5px;
    margin-bottom: 0;
}

.reveal {
    animation: eliteReveal 1.8s var(--elite-bezier) both;
}


.btn {
    padding: 1.2rem 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid var(--accent);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent);
}






section {
    padding: 8rem 10%;
}

.section-title {
    margin-bottom: 4rem;
    text-align: center;
}

.section-title h2,
.cinzel-title {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    color: var(--primary);
}

.cinzel-title {
    letter-spacing: 3px;
}

.section-title .line {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 15px auto;
}


.split-section {
    display: flex;
    align-items: center;
    gap: 5rem;
    background: #fff;
    perspective: 1000px;
}

.split-image {
    flex: 1;
    position: relative;
    margin-left: -50px;
    transform-style: preserve-3d;
}

.split-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    box-shadow: 25px 25px 0px var(--accent);
    transition: transform 0.8s var(--elite-bezier), box-shadow 0.8s var(--elite-bezier);
}

.split-image:hover img {
    transform: translateZ(30px) rotateY(-5deg);
    box-shadow: 35px 35px 0px var(--accent);
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.section-tag {
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 0.8rem;
}

.description {
    color: #666;
    line-height: 2;
}

.line {
    height: 2px;
    background: var(--accent);
    animation: drawLine 2s var(--elite-bezier) forwards;
}


.ribbon {
    background: #050a14;
    padding: 4rem 10%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    color: white;
}

.ribbon-item {
    animation: eliteReveal 1s var(--elite-bezier) both;
}

.ribbon-item h3 {
    font-family: 'Cinzel', serif;
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.ribbon-text {
    color: #888;
    letter-spacing: 1px;
}


.why-choose {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.why-choose .container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.why-choose .subtitle {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
}


.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}


.feature-card {
    background-color:  rgb(213, 203, 203);
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    flex: 1 1 280px;
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


.feature-card .icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}


.feature-card h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.feature-card p {
    color: #555;
    line-height: 1.6;
}



.testimonial-container {
    background-color: #fdfdfd;
    padding: 100px 0;
}

.testimonial-intro {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    transition: transform 0.6s var(--elite-bezier);
    transform-style: preserve-3d;
}

.testimonial-card:hover {
    transform: translateY(-15px) translateZ(20px);
}

.testimonial-img-wrapper {
    overflow: hidden;
    margin-bottom: 2rem;
    border-bottom: 4px solid var(--accent);
}

.testimonial-card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.8s var(--elite-bezier);
}

.testimonial-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.quote-text {
    font-style: italic;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.client-name {
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: #050a14;
}


.cta-section {
    background: #050a14;
    color: white;
    text-align: center;
    padding: 8rem 10%;
}

.cta-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.cta-text {
    color: #888;
    max-width: 750px;
    margin: 0 auto 3rem;
    line-height: 2;
}



footer {
    background: var(--primary);
    color: #888;
    padding: 5rem 10% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: block;
    color: #fff;
}

.footer-links h4 {
    color: var(--accent);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links p {
    font-size: 15px;
    margin-bottom: 15px;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-links input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #333;
    background: #111;
    color: #888;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #111;
    padding-top: 2rem;
    color: #444;
    font-size: 0.8rem;
}




@media (max-width: 1024px) {

    .hero h1,
    .hero-title {
        font-size: 3rem;
    }

    .split-section {
        flex-direction: column;
        text-align: center;
    }

    .ribbon {
        grid-template-columns: 1fr;
    }

    .split-image img {
        height: 400px;
        box-shadow: 15px 15px 0px var(--accent);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 900px) {
    

    nav {
        padding: 15px 5%;
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }


    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }


    .split-section {
        flex-direction: column; 
    }

    .split-image, .split-content {
        width: 100%;
        padding: 40px 5%;
        margin-left: 4px;
    }

    .split-image img {
        height: 350px; 
        object-fit: cover;
    }


    .ribbon {
        flex-wrap: wrap;
        padding: 30px 5%;
        gap: 20px;
    }

    .ribbon-item {
        flex: 1 1 40%; 
        margin: 10px 0;
    }


    .features {
        grid-template-columns: 1fr; 
        gap: 20px;
        padding: 0 5%;
    }


    .grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        padding: 0 5%;
    }

    .testimonial-card {
        padding: 20px;
    }


    .footer-content {
        grid-template-columns: 1fr 1fr; /* Two columns in footer */
        gap: 40px;
        text-align: left;
    }

    .footer-links:first-child {
        grid-column: span 2; 
    }
}


@media screen and (max-width: 900px) {
    .ribbon-item {
        flex: 1 1 100%; 
    }

    .footer-content {
        grid-template-columns: 1fr;     
    }

    .footer-links:first-child {
        grid-column: span 1;
    }

    .cta-title {
        font-size: 1.8rem;
    }
}
@media (max-width: 900px) {


    nav {
        padding: 16px 20px;
        flex-direction: column;
        gap: 14px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }

    .nav-links a {
        font-size: 13px;
    }


    .hero {
        height: 100vh;
    }





    .three-line img {
        height: 30px;
        width: 30px;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 20px;
    }
    .nav-links{
        display: none;
    }
    .three-line{
        display: block;
    }
    .hero h1 {
        font-size: 2.6rem;
        line-height: 1.15;
        letter-spacing: 0.4px;
    }

    .hero p {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 2rem;
    }


    
    .hero-content .btn {
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
    }


    section {
        padding: 4rem 24px;
    }

    .section-title h2 {
        font-size: 2rem;
    }


    .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }





}

#menu-toggle {
    display: none;
}


.three-line {
    display: none;
    cursor: pointer;
}

.three-line img {
    width: 28px;
    height: 28px;
}


@media (max-width: 900px) {

    nav {
        position: relative;
    }

    .three-line {
        display: block;
        margin-left: auto;
         position: absolute;
        right: 24px;
        top: 18px;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background: rgba(5, 10, 20, 0.98);
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding: 40px 0;
        display: none;
        z-index: 999;
    }

    .nav-links a {
        font-size: 1rem;
    }


    #menu-toggle:checked ~ .nav-links {
        display: flex;
    }
}
.nav-links {
    transition: all 0.4s ease;
}
