:root {
    --primary: #0f172a;
    --accent: #3b82f6;
    --accent-hover: #2563eb;
    --text-main: #334155;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --container-width: 1100px;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--white);
    scroll-behavior: smooth;
}

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

.section-padding {
    padding: 5rem 0;
}

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

h1, h2, h3 {
    color: var(--primary);
    font-weight: 800;
}

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

/* Header & Nav */
header {
    height: 80px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--primary);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: color 0.2s;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1e293b 100%);
    color: var(--white);
    padding: 8rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.05em;
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    color: #cbd5e1;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.cta-button:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.secondary-btn {
    background-color: transparent;
    border: 2px solid var(--accent);
}

.secondary-btn:hover {
    background-color: rgba(59, 130, 246, 0.1);
}

/* Vision Section */
.section-title {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    max-width: 800px;
    margin: -2rem auto 4rem;
    color: var(--text-light);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.vision-card {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.vision-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Digital Atmosphere Section */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 3rem;
}

.event-feature {
    text-align: center;
    padding: 1rem;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.event-feature h3 {
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.event-feature p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Portfolio Section */
.dark-bg {
    background-color: var(--bg-light);
}

.property-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #e2e8f0;
}

.property-details {
    padding: 3rem;
}

.property-status {
    display: inline-block;
    background: #dcfce7;
    color: #166534;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.property-details h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.property-location {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.property-specs {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.property-specs li {
    font-size: 0.95rem;
}

.property-description {
    font-size: 1.05rem;
    color: var(--text-main);
}

/* Contact Section */
.email-link {
    font-size: 1.5rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.2s;
}

.email-link:hover {
    border-bottom: 2px solid var(--accent);
}

/* Footer */
footer {
    padding: 3rem 0;
    border-top: 1px solid #e2e8f0;
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .section-subtitle {
        margin-top: -1rem;
        padding: 0 1rem;
    }
    
    .property-details {
        padding: 2rem;
    }
    
    .property-specs {
        flex-direction: column;
        gap: 0.5rem;
    }
}
