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

/* ROOT VARIABLES */
:root {
    --primary: #050a14;
    --accent: #c5a059;
    --bg-light: #fdfdfd;
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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


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;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    text-decoration: none;
    color: #fff;
}

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

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

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

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


.hero {
    position: relative;
    height: 90vh;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    background: none;

}


.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    z-index: 0;
}

.hero-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100vw;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(5, 10, 20, 0.6);
    z-index: 1;
}



.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(5, 10, 20, 0.6);
}


.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: auto;
    z-index: 2;

    opacity: 0;
    transform: scale(0.85);
    animation: revealIn 1.2s ease-out forwards;
}

.hero-bg video {
    position: absolute;
}

.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: 0.5px;
    margin-bottom: 1.2rem;
}

.hero p {
    font-weight: 300;
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 2.8rem;
    line-height: 1.7;
    opacity: 0.9;
}

.hero-content .btn {
    min-width: 200px;
    text-align: center;
}

.hero-content {
    padding: 0 20px;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
    margin-left: 1rem;
}

.btn-secondary:hover {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}


@keyframes revealIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

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

.hero-content {
    opacity: 0;
    transform: scale(0.85);
    animation: revealIn 1.2s ease-out forwards;
    max-width: 900px;
}

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

.hero p {
    font-weight: 300;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}


.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 {
    display: flex;
    gap: 20px;

}

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

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

.btn-secondary {
    background: transparent;
    color: white;
    margin-left: 1rem;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
    border-color: white;
}


.contact-btn {
    display: inline-block;
    margin-top: 1.5rem;

    padding: 0.9rem 2.2rem;
    border: 1px solid var(--accent);

    background: linear-gradient(180deg, #050a14, #02050c);
    color: var(--accent);

    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 600;

    transition: all 0.4s ease;
}


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



section {
    padding: 8rem 10%;
}

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

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

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


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

.card {
    background: white;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}


@media (max-width: 900px) {

  
    nav {
        padding: 16px 24px;
        flex-direction: column;
        gap: 12px;
    }

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

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


    .hero {
        height: auto;
        padding: 120px 24px 80px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 42px;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 16px;
        margin: 20px 0 30px;
    }

    .hero-content .btn {
        display: inline-block;
        margin: 8px;
        padding: 14px 28px;
    }


    .container {
        padding: 60px 24px;
    }

    .section-title h2 {
        font-size: 32px;
    }


    .grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .card-img-container img {
        height: 260px;
        object-fit: cover;
    }

    .price-tag {
        font-size: 14px;
        padding: 6px 12px;
    }


    .elite-difference {
        padding: 60px 24px;
    }

    .about-section {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .about-text h2 {
        font-size: 34px;
    }

    .about-text p {
        font-size: 15px;
        line-height: 1.7;
    }

    .about-image img {
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
        display: block;
    }


    footer {
        padding: 60px 24px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-links ul {
        padding: 0;
    }

    .footer-links input {
        width: 100%;
        max-width: 360px;
        margin: 12px auto 0;
        display: block;
    }

    .footer-bottom {
        margin-top: 40px;
        font-size: 13px;
    }
}

.btn-secondary {
    margin-top: 0px;
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.card-img-container {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.card:hover img {
    transform: scale(1.1);
}

.price-tag {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary);
    color: var(--accent);
    padding: 0.8rem 1.5rem;
    font-weight: 700;
}

.card-info {
    padding: 2rem;
}

.card-info h3 {
    font-family: 'Cinzel', serif;
    margin-bottom: 0.5rem;
}


.elite-difference {
    background: var(--primary);
    color: #fff;
}

.about-section {
    display: flex;
    align-items: center;
    gap: 5rem;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    margin-bottom: 2rem;
}

.about-text h2 span {
    color: var(--accent);
}

.about-text p {
    color: #aaa;
    line-height: 2;
    margin-bottom: 2rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    filter: grayscale(100%);
    transition: 0.5s;
}

.about-image img:hover {
    filter: grayscale(0%);
}


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 {
        font-size: 3rem;
    }

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

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

@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;
    }

    .hero-bg {
        width: 100%;
        height: 100%;
    }

    .hero-bg video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .three-line {
        display: none;
    }

    .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;
    }


    .Btn {
        flex-direction: column;
        gap: 14px;
    }

    .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;
    }


    .about-section {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .about-text h2 {
        font-size: 2.2rem;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.8;
    }


}

#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;
}
