* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a1a1a;
    --accent: #BE0029;
    --gold: #B4A269;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    background-color: #faf7f2;
}

.pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    pointer-events: none;
    background-image: 
        radial-gradient(var(--primary) 2px, transparent 2px),
        radial-gradient(var(--primary) 2px, transparent 2px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    z-index: -1;
}

.hero {
    height: 100vh;
    background-color: var(--primary);
    background-image: url('/api/placeholder/1920/1080');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    color: white;
    padding: 20px;
    animation: fadeIn 2s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-size: 5em;
    margin-bottom: 10px;
    font-family: "Yu Mincho", "MS Mincho", serif;
}

.hero h2 {
    font-size: 2em;
    margin-bottom: 20px;
    letter-spacing: 0.2em;
    color: var(--gold);
}

.scroll-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

.section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: var(--primary);
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card:hover::before {
    transform: scaleX(1);
}

.card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--primary);
    display: flex;
    align-items: center;
}

.card h3::before {
    content: '◆';
    color: var(--gold);
    margin-right: 10px;
    font-size: 0.8em;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background-color: #8c001e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(190, 0, 41, 0.3);
}

.text-center {
    text-align: center;
}

footer {
    background-color: var(--primary);
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3em;
    }
    
    .hero h2 {
        font-size: 1.5em;
    }
    
    .section-title {
        font-size: 2em;
    }
}
