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

:root {
    --color-dark: #07131e;
    --color-darker: #050e16;
    --color-light: #ffffff;
    --color-gray: #f5f5f5;
    --color-text: #333333;
    --color-text-muted: #666666;
    --color-accent: #a38959; /* Elegant muted gold/bronze */
    --color-accent-hover: #8f774e;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    
    --container-width: 1200px;
    --transition: all 0.3s ease;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

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

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

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

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

.text-white {
    color: var(--color-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

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

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

.btn-outline {
    background-color: transparent;
    border-color: var(--color-dark);
    color: var(--color-dark);
}

.btn-outline:hover {
    background-color: var(--color-dark);
    color: var(--color-light);
}

.btn-outline-white {
    background-color: transparent;
    border-color: var(--color-light);
    color: var(--color-light);
}

.btn-outline-white:hover {
    background-color: var(--color-light);
    color: var(--color-dark);
}

/* Header & Nav */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 4px;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-top: 5px;
}

.header-actions {
    display: flex;
    gap: 15px;
    flex: 1;
    justify-content: flex-end;
}

.header-actions a {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav {
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    background-color: var(--color-light);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 15px 0;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text);
    position: relative;
}

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

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

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(7, 19, 30, 0.8) 0%, rgba(7, 19, 30, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    color: var(--color-light);
}

.hero-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: block;
    color: var(--color-accent);
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* Dark Section (Info) */
.section-dark {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 80px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.info-icon {
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.info-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--color-accent);
}

.info-text {
    color: #b0b8c1;
    font-size: 0.95rem;
}

.partners {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
    flex-wrap: wrap;
    opacity: 0.6;
}

.partners img {
    height: 30px;
    filter: grayscale(100%) brightness(200%);
}

/* Welcome / Video Section */
.section-welcome {
    padding: 100px 0;
    text-align: center;
}

.welcome-title {
    margin-bottom: 40px;
}

.video-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.video-container img {
    width: 100%;
    display: block;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.play-btn:hover {
    background-color: var(--color-accent);
    color: var(--color-light);
}

.play-btn i {
    font-size: 24px;
    margin-left: 5px;
}

/* Team Section */
.section-team {
    background-color: var(--color-darker);
    padding: 100px 0;
    color: var(--color-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    position: relative;
    overflow: hidden;
    background-color: #112233;
    aspect-ratio: 3/4;
}

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

.team-member:hover img {
    transform: scale(1.05);
}

.team-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.team-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.team-role {
    font-size: 0.8rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Treatments Section */
.section-treatments {
    padding: 100px 0;
    background-color: var(--color-gray);
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.treatment-card {
    background-color: var(--color-light);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #eaeaea;
}

.treatment-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.treatment-icon {
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.treatment-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.treatment-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Interior Banner */
.interior-banner {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* Footer */
.footer {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 80px 0 30px;
}

.footer-top {
    text-align: center;
    margin-bottom: 50px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.map-container {
    height: 250px;
    background-color: #112233;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
    font-size: 0.85rem;
}

.footer-links h5 {
    color: var(--color-accent);
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

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

.copyright {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 992px) {
    .treatments-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 3rem; }
    .header-actions { display: flex; justify-content: center; }
    .header-top { flex-direction: column; gap: 15px; }
    .logo-container { margin: 15px 0 !important; }
}

@media (max-width: 768px) {
    .info-grid, .footer-grid, .treatments-grid, .footer-links { grid-template-columns: 1fr; }
    .nav-list { flex-direction: column; align-items: center; gap: 15px; }
    .hero-title { font-size: 2.5rem; }
    
    /* Fix inline grids on mobile */
    div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .section-welcome, .section-treatments, section[style*="padding: 100px"] {
        padding: 50px 0 !important;
    }
}
