:root {
    --primary-color: #d35400;
    --secondary-color: #2c3e50;
    --light-bg-color: #f8f5f0;
    --font-title: 'Playfair Display', serif;
    --font-text: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-text);
    color: #333;
    background-color: var(--light-bg-color);
}

.logo {
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--primary-color) !important;
}

.header {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar-nav .nav-link {
    font-weight: 600;
    transition: color 0.3s;
}

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

.hero-section {
    height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

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

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-title);
    font-size: 4rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.cta-button {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: #e67e22;
    border-color: #e67e22;
    transform: translateY(-3px);
}

.section-title {
    font-family: var(--font-title);
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 30px;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.spaces-section .space-card {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.spaces-section .space-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.space-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.space-name {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer {
    background-color: var(--secondary-color);
}

.footer-logo {
    font-family: var(--font-title);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-contact p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.social-links a {
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
}

.footer-tagline {
    font-style: italic;
    color: #bdc3c7;
    font-size: 0.9rem;
}
