:root {
    --primary: #1a2a44;
    --accent: #c5a059;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-light: #f9f9f9;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: absolute;
    width: 100%;
    z-index: 100;
    padding: 30px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    color: var(--accent);
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links li { margin-left: 30px; }

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

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

.nav-btn {
    border: 1px solid var(--accent);
    padding: 8px 20px;
    border-radius: 4px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(26, 42, 68, 0.7), rgba(26, 42, 68, 0.8)), 
                url('pexels.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-content { max-width: 800px; padding: 20px; }

.subtitle {
    color: var(--accent);
    letter-spacing: 5px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-primary {
    background: var(--accent);
    color: white;
    padding: 18px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 2px;
    margin-right: 15px;
    transition: 0.3s;
}

.btn-secondary {
    border: 1px solid white;
    color: white;
    padding: 18px 35px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover { background: #b08d48; }
.btn-secondary:hover { background: white; color: var(--primary); }

/* About Section */
.about-section { padding: 100px 20px; background: white; }

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

.about-text h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin-top: 10px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 20px 20px 0px var(--accent);
}

/* Cards Section */
.cards-section {
    background: var(--bg-light);
    padding: 100px 20px;
}

.cards-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--primary);
    color: white;
    padding: 40px;
    text-align: center;
    border-bottom: 5px solid var(--accent);
    transition: transform 0.3s;
}

.card:hover { transform: translateY(-10px); }

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.card h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    color: var(--accent);
}

/* Footer */
footer {
    background: #0d1522;
    color: white;
    text-align: center;
    padding: 50px 0;
    font-size: 0.9rem;
    opacity: 0.7;
}