@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

body {
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #e2e2e2, #f5f5f5);
}

header {
    background-image: url('../assets/360_F_380581723_Dcf4rseeXVRboNX5QrsdlMLs9bzi66PA.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 2em 1.5em;
    text-align: center;
    position: relative;
}

.header-content {
    padding-bottom: 1em;
}

header h1 {
    font-size: 4em;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin: 0;
}

header h1 a {
    color: white;
    text-decoration: none;
}

header h2 {
    font-size: 2em;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    margin-top: 0;
}

nav {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1em 0;
    display: flex;
    justify-content: center;
    gap: 2em;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 0.8em 1.5em;
    font-size: 1.2em;
    transition: all 0.3s;
    border-radius: 5px;
    font-weight: 500;
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.9);
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px;
    top: 100%;
    left: 0;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 1em;
    transition: background-color 0.3s;
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: none;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4em 2em;
    text-align: center;
    margin-bottom: 3em;
}

.hero-section h2 {
    font-size: 3em;
    margin-bottom: 0.5em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-section p {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2em;
    margin: 3em 0;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2em;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e0e0e0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card h3 {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 1em;
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.service-card .icon {
    font-size: 2em;
    color: #007bff;
}

.testimonials {
    background: #f8f9fa;
    padding: 4em 2em;
    margin: 3em 0;
    border-radius: 15px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2em;
    margin-top: 2em;
}

.testimonial {
    background: white;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    font-style: italic;
}

.testimonial-author {
    font-weight: bold;
    margin-top: 1em;
    color: #007bff;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2em;
    margin: 3em 0;
    text-align: center;
}

.stat-card {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 2em;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,123,255,0.3);
}

.stat-number {
    font-size: 3em;
    font-weight: bold;
    display: block;
}

.stat-label {
    font-size: 1.1em;
    opacity: 0.9;
}

main {
    padding: 1.5em;
    padding-bottom: 6em;
}

section {
    margin-bottom: 2.5em;
}

.service-buttons {
    display: flex;
    justify-content: space-around;
    margin-top: 2.5em;
}

.service-buttons button {
    background-color: #007bff;
    border: none;
    color: white;
    padding: 20px 40px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.5em;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.service-buttons button:hover {
    background-color: #0056b3;
}

#contact-form {
    display: flex;
    flex-direction: column;
}

#contact-form label {
    margin-top: 1.2em;
    font-size: 1.1em;
}

#contact-form input, #contact-form textarea {
    padding: 0.8em;
    margin-top: 0.6em;
    font-size: 1em;
    border-radius: 5px;
    border: 1px solid #ccc;
}

#contact-form button {
    background-color: #007bff;
    border: none;
    color: white;
    padding: 20px 40px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.2em;
    margin-top: 1.2em;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s;
}

#contact-form button:hover {
    background-color: #0056b3;
}

footer {
    background-color: #e9e9e9;
    padding: 1.5em;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}

#game-board {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.tableau-pile {
    position: relative;
    width: 100px;
    height: 400px;
}

.tableau-pile .card {
    position: absolute;
    top: 0;
    left: 0;
}

.card {
    width: 100px;
    height: 140px;
    border: 1px solid #000;
    border-radius: 5px;
    padding: 10px;
    background-color: white;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

.card.face-down {
    background-color: #b0e0e6;
}
