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

:root {
    --color-primary: #000000;
    --color-gold: #c5a880; /* Elegant champagne gold */
    --color-gold-light: #e6d5b8;
    --color-bg: #ffffff;
    --color-gray-bg: #f9f9f9;
    --color-text: #333333;
    --color-text-light: #777777;
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --container-width: 1300px;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-primary);
}

.text-gold {
    color: var(--color-gold);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--color-gold);
    background: transparent;
    color: var(--color-primary);
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn:hover {
    background: var(--color-gold);
    color: #fff;
}

.btn-solid {
    background: var(--color-gold);
    color: #fff;
}

.btn-solid:hover {
    background: #b09570;
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.nav-left, .nav-right {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    color: var(--color-primary);
}

.nav-link:hover {
    color: var(--color-gold);
}

.logo-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    letter-spacing: 6px;
    color: var(--color-primary);
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.65rem;
    letter-spacing: 4px;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-top: 5px;
}

/* Hero Section */
.hero {
    height: 80vh;
    min-height: 600px;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.2);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    background: rgba(255,255,255,0.85);
    padding: 50px 80px;
    border: 1px solid var(--color-gold-light);
}

.hero h1 {
    font-size: 2.5rem;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--color-text-light);
    max-width: 500px;
    margin: 0 auto 30px;
}

/* Section Title */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 0.85rem;
    color: var(--color-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.divider {
    width: 60px;
    height: 1px;
    background: var(--color-gold);
    margin: 20px auto;
}

/* Services / Images Grid */
.services-section {
    padding: 100px 0;
    background: url('https://www.transparenttextures.com/patterns/white-marble.png');
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    text-align: center;
}

.service-img-wrapper {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    margin-bottom: 20px;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.service-desc {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* Visionaries (Team) */
.team-section {
    padding: 100px 0;
}

.team-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

.team-row.reverse {
    direction: rtl;
}

.team-row.reverse > * {
    direction: ltr;
}

.team-image {
    position: relative;
    width: 100%;
}

.team-image img {
    width: 100%;
    display: block;
}

/* CSS Logo Overlay for Uniform */
.uniform-logo-overlay {
    position: absolute;
    top: 55%;
    left: 65%;
    transform: translate(-50%, -50%) rotate(-5deg);
    width: 40px;
    height: auto;
    mix-blend-mode: multiply;
    opacity: 0.85;
    z-index: 10;
}

.uniform-logo-overlay svg {
    width: 100%;
    height: 100%;
}

.team-content {
    padding: 0 40px;
}

.team-content h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.team-content h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--color-gold);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.team-content p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 15px;
}

/* Interior Section with Logo Overlay */
.interior-section {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}

.interior-section img.bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 3D Transform to place logo on the wall in stock photo */
.wall-logo-overlay {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%) perspective(800px) rotateY(0deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    z-index: 10;
}

.wall-logo-overlay svg {
    width: 150px;
    height: 150px;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.4));
}

.wall-logo-text {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    letter-spacing: 8px;
    margin-top: 20px;
    color: #ffffff; /* Gold or white works best on dark walls */
}

.wall-logo-sub {
    font-family: var(--font-body);
    font-size: 1rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-top: 10px;
}

/* Footer */
.footer {
    background: #000000;
    color: #ffffff;
    padding: 80px 0 40px;
    text-align: center;
    background-image: url('https://www.transparenttextures.com/patterns/black-mamba.png');
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 6px;
    color: var(--color-gold);
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-links a {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaaaaa;
}

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

.footer-info p {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .team-row { grid-template-columns: 1fr; gap: 40px; }
    .team-row.reverse { direction: ltr; }
    .hero h1 { font-size: 2rem; }
    .wall-logo-overlay { transform: translate(-50%, -50%) scale(0.6); }
}

@media (max-width: 768px) {
    .header-container { flex-direction: column; gap: 20px; }
    .nav-left, .nav-right { display: none; } /* Simplified for mobile */
    .services-grid { grid-template-columns: 1fr; }
    .hero-content { padding: 30px 20px; }
}
