* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #faf8f5;
    color: #333;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
}




/* ===============================
   LUXURY PORTFOLIO HERO
================================= */

.portfolio-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
}

/* HERO IMAGE WITH CINEMATIC ZOOM */
.portfolio-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.15) saturate(1.1);
    animation: luxuryZoom 30s ease-in-out infinite alternate;
}

/* CINEMATIC GRADIENT OVERLAY */
.portfolio-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, rgba(0,0,0,0.6), rgba(0,0,0,0.2), rgba(0,0,0,0.6));
    z-index: 1;
}

/* HERO TEXT CONTENT */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 3;
    backdrop-filter: blur(3px);
    padding: 40px 60px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.2);
}

/* GOLD GRADIENT TEXT */
.gold-text {
    background: linear-gradient(to right, #FFD700, #FFC107);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 70px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.4);
}

/* SUBTEXT */
.hero-content p {
    font-size: 22px;
    opacity: 0.85;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

/* BUTTON */
.luxury-btn {
    padding: 16px 45px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.4s ease-in-out;
}

.luxury-btn:hover {
    background: white;
    color: black;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* CINEMATIC ZOOM ANIMATION */
@keyframes luxuryZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

/* ===============================
   LIGHT RAYS
================================= */
.light-rays {
    position: absolute;
    inset: 0;
    background: repeating-radial-gradient(circle at center, rgba(255,255,255,0.05), transparent 20%);
    animation: rotateRays 60s linear infinite;
    z-index: 2;
}

@keyframes rotateRays {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===============================
   FLOATING PARTICLES / DUST
================================= */
.particles span {
    position: absolute;
    background: rgba(255,255,255,0.3);
    width: 3px;
    height: 3px;
    border-radius: 50%;
    animation: floatParticles linear infinite;
}

.particles span:nth-child(1) { top: 10%; left: 20%; animation-duration: 12s; animation-delay: 0s;}
.particles span:nth-child(2) { top: 30%; left: 80%; animation-duration: 15s; animation-delay: 2s;}
.particles span:nth-child(3) { top: 60%; left: 50%; animation-duration: 10s; animation-delay: 4s;}
.particles span:nth-child(4) { top: 80%; left: 30%; animation-duration: 18s; animation-delay: 1s;}
.particles span:nth-child(5) { top: 20%; left: 70%; animation-duration: 14s; animation-delay: 3s;}
.particles span:nth-child(6) { top: 50%; left: 10%; animation-duration: 16s; animation-delay: 2s;}
.particles span:nth-child(7) { top: 40%; left: 90%; animation-duration: 20s; animation-delay: 0s;}
.particles span:nth-child(8) { top: 75%; left: 60%; animation-duration: 12s; animation-delay: 5s;}
.particles span:nth-child(9) { top: 10%; left: 50%; animation-duration: 14s; animation-delay: 3s;}
.particles span:nth-child(10){ top: 65%; left: 80%; animation-duration: 17s; animation-delay: 1s;}

@keyframes floatParticles {
    0% { transform: translateY(0) translateX(0); opacity: 0.3; }
    50% { transform: translateY(-30px) translateX(20px); opacity: 0.6; }
    100% { transform: translateY(0) translateX(0); opacity: 0.3; }
}

/* RESPONSIVE TEXT */
@media (max-width: 768px) {
    .gold-text { font-size: 45px; }
    .hero-content p { font-size: 18px; }
    .luxury-btn { padding: 12px 30px; font-size: 13px; }
}






.logo img {
    width: 100%;
    max-width: 300px;
}

.header nav a {
    margin-left: 50px;
    text-decoration: none;
    color: #555;
    font-size: 12px;
}
.menuBox {
    gap: 50px;
    display: flex;
    align-items: center;
}
.header_social {
    gap: 50px;
    display: flex;
    align-items: center;
}
.header_social a {
    float: left;
    text-decoration: none;
}
.header_social img {
	float: left;
    width: 20px;
}

/* Hero */
.hero img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

/* Content Sections */
.content {
    padding: 80px 8%;
}

.row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 120px;
}

.row.reverse {
    flex-direction: row-reverse;
}

.image img {
    width: 100%;
    max-width: 520px;
}

.text {
    max-width: 420px;
}

.text h2 {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 20px;
}

.text p {
    font-size: 12px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.btn {
    display: inline-block;
    color: #fff;
    padding: 20px 60px;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
    background: #c9a76c;
}

.btn:hover {
    background: #d1b585;
    color: #fff;
}
.banner1 {
    float: left;
    width: 100%;
}
.banner1 img {
    float: left;
    width: 100%;
}
.banner2 {
    float: left;
    width: 100%;
}
.banner2 img {
    float: left;
    width: 100%;
}

/* Footer */
footer {
	float: left;
	width: 100%;
    padding: 80px 8%;
    background: #fff;
    color: #aaa;
    font-size: 13px;
}
.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer_social {
    gap: 20px;
    display: flex;
    align-items: center;
}
.footer_social a {
    float: left;
    text-decoration: none;
}
.footer_social img {
	float: left;
    width: 20px;
}
.footer_links li {
    display: block;
    margin-bottom: 10px;
}
.footer_links li a {
    font-size: 12px;
    color: #c7a469;
}
.footer_links p {
    color: #333;
    font-size: 12px;
    margin-top: 30px;
}

/* Contact Page */
.contact-hero {
    padding: 120px 8% 80px;
    text-align: center;
    background: #faf8f5;
}

.contact-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.contact-hero p {
    color: #777;
    font-size: 15px;
}

.contact {
    padding: 80px 8%;
}

.contact-wrapper {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info {
    max-width: 420px;
}

.contact-info h2 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.contact-info ul {
    list-style: none;
}

.contact-info li {
    margin-bottom: 12px;
    font-size: 14px;
    color: #444;
}

.contact-form {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #ddd;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c9a76c;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .contact-hero h1 {
        font-size: 34px;
    }
}


/* Responsive */
@media (max-width: 900px) {
    .row,
    .row.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .hero img {
        height: 60vh;
    }

    .text {
        text-align: center;
    }
}

