/* Основные настройки */
:root {
    --gold: #c5a059;
    --dark: #1a1a1a;
    --light: #f9f9f9;
    --serif: 'Playfair Display', serif;
    --sans: 'Montserrat', sans-serif;
}

body {
    margin: 0;
    font-family: var(--sans);
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Эффектный баннер (Hero) */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1467269204594-9661b134dd2b?auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.4);
    padding: 40px;
    border-radius: 2px;
}

.hero h1 {
    font-family: var(--serif);
    font-size: 4rem;
    margin: 0;
}

.cta-button {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 35px;
    background: var(--gold);
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
}

.cta-button:hover {
    background: white;
    color: var(--dark);
}

/* Меню */
nav {
    background: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 100;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: var(--dark);
    margin: 0 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Контент */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section {
    text-align: center;
    margin-bottom: 80px;
}

.section h2 {
    font-family: var(--serif);
    font-size: 2.5rem;
    color: var(--gold);
}

/* Карточки */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: 0.4s;
}

.card:hover {
    transform: translateY(-10px);
}

.card-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

/* Фотографии (примеры) */
.castle { background-image: url('https://images.unsplash.com/photo-1500916434205-0c7742ddb607?auto=format&fit=crop&w=600&q=80'); }
.cities { background-image: url('https://images.unsplash.com/photo-1449491023201-3e52ff461e72?auto=format&fit=crop&w=600&q=80'); }
.modern { background-image: url('https://images.unsplash.com/photo-1546702441-44a748b29e0a?auto=format&fit=crop&w=600&q=80'); }

.card h3 {
    padding: 20px 20px 0;
    font-family: var(--serif);
}

.card p {
    padding: 0 20px 20px;
    font-size: 0.95rem;
    color: #666;
}

footer {
    text-align: center;
    padding: 50px 0;
    background: var(--dark);
    color: white;
    font-size: 0.8rem;
}