/* assets/css/styles.css */

:root {
    --primary-bg: #0B0B0B;
    --secondary-bg: #1A1A1A;
    --accent-gold: #C6A87D;
    --accent-gold-hover: #DBC4A5;
    --text-white: #FFFFFF;
    --text-muted: #A0A0A0;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Generic Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 40px;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    transition: var(--transition-fast);
    cursor: pointer;
    background: transparent;
}

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

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

.btn-solid:hover {
    background: var(--accent-gold-hover);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
    transition: var(--transition-fast);
}

header.scrolled {
    background: rgba(11, 11, 11, 0.95);
    padding: 20px 0;
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lang-toggle {
    display: flex;
    gap: 15px;
    font-size: 10px;
    letter-spacing: 1px;
    opacity: 0.6;
}

.lang-toggle span { cursor: pointer; transition: 0.3s; }
.lang-toggle span:hover, .lang-toggle span.active { color: var(--accent-gold); opacity: 1; }

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-gold);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

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

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: brightness(0.4);
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 72px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

/* Section Styling */
section {
    padding: 120px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.section-title p {
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
}

/* Property Grid */
.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.property-card {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    cursor: pointer;
}

.property-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.property-card:hover .property-img {
    transform: scale(1.05);
}

.property-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(11, 11, 11, 0.9), transparent);
}

.property-overlay h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.property-overlay p {
    font-size: 14px;
    color: var(--accent-gold);
}

.blurred {
    filter: blur(15px);
    pointer-events: none;
}

.locked-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(11, 11, 11, 0.8);
    border: 1px solid var(--accent-gold);
    padding: 20px 30px;
    text-align: center;
    z-index: 10;
}

/* Membership Steps */
.membership-steps {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 60px;
}

.step-card {
    flex: 1;
    text-align: center;
    padding: 40px;
    border: 1px solid #222;
}

.step-num {
    font-size: 48px;
    font-family: var(--font-heading);
    color: var(--accent-gold);
    margin-bottom: 20px;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid #222;
    background: #050505;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 12px;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-logo {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--accent-gold);
    letter-spacing: 10px;
    text-transform: uppercase;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% { opacity: 0.3; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1); }
    100% { opacity: 0.3; transform: scale(0.98); }
}

.loader-bar {
    width: 200px;
    height: 1px;
    background: #222;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.loader-progress {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-gold);
    animation: loading 2s infinite ease-in-out;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}
