/* style.css */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fcf9f2;
    color: #3e2723;
}

header {
    background-color: #5d4037;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

nav a:hover {
    color: #d7ccc8;
}

.hero {
    height: 60vh;
    background-color: #8d6e63;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    border-bottom: 5px solid #d7ccc8;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 20px;
    max-width: 600px;
}

.content-section {
    padding: 60px 20px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.bg-light {
    background-color: #f5f0e6;
    border-radius: 15px;
}

h2 {
    font-size: 32px;
    color: #4e342e;
    margin-bottom: 40px;
    border-bottom: 2px solid #a1887f;
    display: inline-block;
    padding-bottom: 10px;
}

.card-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    width: 400px;
    transition: transform 0.3s;
}

.large-card {
    width: 800px;
}

.card:hover {
    transform: translateY(-5px);
}

.image-placeholder {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

.card-content {
    padding: 20px;
    text-align: left;
}

.card-content h3 {
    margin-top: 0;
    color: #5d4037;
}

.card-content p {
    line-height: 1.6;
    color: #555;
}

footer {
    background-color: #3e2723;
    color: #bcaaa4;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* Modal Styles */
.modal {
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0,0,0,0.8); 
}

.modal-content {
    background-color: #fff;
    margin: 15% auto; 
    padding: 40px;
    border-radius: 10px;
    width: 50%; 
    text-align: center;
    font-size: 24px;
    color: #3e2723;
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}