/* Font Family */
body {
    font-family: 'Noto Sans JP', sans-serif;
}

/* Hero Section */
.hero {
    background-image: url('../img/hero.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 80px; /* Adjust based on header height */
    height: calc(100vh - 80px);
}

/* Form Styles */
.contact-form input, 
.contact-form textarea {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0.5rem;
    width: 100%;
    transition: border-color 0.3s;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

/* Success and Error Messages */
.success-message {
    background-color: #d1fae5;
    color: #065f46;
    border-left: 4px solid #10b981;
}

.error-message {
    background-color: #fee2e2;
    color: #b91c1c;
    border-left: 4px solid #ef4444;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        margin-top: 70px;
        height: calc(100vh - 70px);
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.5rem;
    }
}