/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Montserrat:wght@800&display=swap');

:root {
    --primary-color: #0F172A;
    --accent-color: #2563EB;
    --bg-color: #FFFFFF;
    --text-color: #111827;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
    line-height: 1.8;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.text-primary-custom { color: var(--primary-color) !important; }
.text-accent { color: var(--accent-color) !important; }
.bg-primary-custom { background-color: var(--primary-color) !important; }
.bg-accent { background-color: var(--accent-color) !important; }

/* Buttons */
.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    padding: 20px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    padding: 18px 38px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
}

.btn-secondary:hover {
    background-color: #FFFFFF;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    padding: 30px 0;
    transition: all 0.4s ease;
    background-color: transparent;
    position: absolute;
    width: 100%;
    z-index: 100;
}
.navbar.scrolled {
    padding: 15px 0;
    background-color: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
}
.navbar-brand {
    color: #FFFFFF !important;
    font-size: 1.8rem;
    letter-spacing: 2px;
}
.nav-link {
    color: #FFFFFF !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin: 0 15px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
.nav-link:hover, .nav-link.active {
    opacity: 1;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.9));
}
.hero-content {
    position: relative;
    z-index: 1;
    color: #FFFFFF;
    max-width: 1000px;
}
.hero h1 {
    color: #FFFFFF;
    font-size: 6rem;
    line-height: 1;
    margin-bottom: 30px;
}
.hero p {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 50px;
    opacity: 0.9;
}

@media (max-width: 992px) {
    .hero h1 { font-size: 4rem; }
    .hero p { font-size: 1.2rem; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
}

/* Utilities */
.section-padding {
    padding: 150px 0;
}
.section-padding-lg {
    padding: 200px 0;
}

/* Typography elements */
.luxury-heading {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 40px;
}
.luxury-text {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .luxury-heading { font-size: 2.5rem; }
}

/* Services Large Sections */
.service-row {
    margin-bottom: 150px;
}
.service-row:last-child {
    margin-bottom: 0;
}
.service-image-container {
    height: 700px;
    overflow: hidden;
}
.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* About Luxury */
.about-huge-img {
    height: 800px;
    width: 100%;
    object-fit: cover;
}

/* Statement */
.statement-section {
    background-color: var(--primary-color);
    color: #FFFFFF;
    text-align: center;
}
.statement-heading {
    font-size: 5rem;
    color: #FFFFFF;
    line-height: 1.2;
}

/* Masonry Gallery */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 20px;
    grid-auto-rows: 10px;
}
.masonry-item {
    width: 100%;
}
.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Masonry Row spans */
.masonry-item.h-1 { grid-row-end: span 25; }
.masonry-item.h-2 { grid-row-end: span 35; }
.masonry-item.h-3 { grid-row-end: span 45; }

/* Massive CTA */
.cta-massive {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}
.cta-massive::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.85);
}
.cta-massive .container {
    position: relative;
    z-index: 1;
}

/* Footer Minimal */
footer {
    background-color: #000000;
    color: #FFFFFF;
    padding: 100px 0 40px;
}
footer .navbar-brand {
    font-size: 2.5rem;
}
footer a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}
footer a:hover {
    color: #FFFFFF;
}
footer .bottom-bar {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 80px;
    padding-top: 40px;
    color: #64748b;
}
