/* same.css */

/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and general styles */
body {
    font-family: 'Arial', sans-serif;
    background: #83ffe7 url('./bg-diamante.svg'); /* Light cyan with pattern */
    color: #1a1a1a; /* Dark text for contrast */
    line-height: 1.6;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.header {
    background-color: #2c2c2c; /* Dark gray header */
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: flex-end; /* Move content to the right */
}

.menu-header-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Align items to the right */
}

.site-logo img {
    /*height: 60px;*/
    transition: transform 0.3s ease;
}

.site-logo img:hover {
    transform: scale(1.1);
}

/* Navigation */
.nav {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 20px;
}

.nav-link {
    color: #1e90ff; /* Deep blue for "Home" */
    text-decoration: none;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-link:hover {
    background-color: #1e90ff;
    color: #ffffff; /* White text on hover */
}

/* Mobile menu icon (hidden) */
.mobile-icon {
    display: none; /* Completely hidden */
}

/* Mobile menu (hidden) */
.mobile-menu {
    display: none; /* Hidden on all screen sizes */
}

/* Main content */
.site-conten {
    margin: 20px auto;
    max-width: 800px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.9);
    border: 2px solid #000000; /* Black border */
    transition: transform 0.3s ease;
}

.site-conten:hover {
    transform: translateY(-5px);
}

.site-conten h1 {
    color: #000000; /* Black for headings */
    font-size: 2em;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.site-conten h2 {
    color: #00ccff; /* Cyan for subheadings */
    font-size: 1.5em;
    margin: 20px 0 10px;
}

.site-conten p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #333333;
}

.site-conten ul {
    list-style: none;
    margin: 0 auto 15px;
    max-width: 600px;
}

.site-conten li {
    margin-bottom: 10px;
    text-align: left;
}

/* Footer */
footer {
    background-color: #2c2c2c;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 2px solid #000000; /* Black border */
}

.menu-footer-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.menu-footer-bar .link {
    color: #00ced1; /* Teal for footer links */
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.menu-footer-bar .link:hover {
    color: #00ccff; /* Cyan on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 10px 0; /* Slightly less padding on mobile */
    }

    .nav-item {
        margin-left: 15px; /* Reduced spacing on mobile */
    }

    .site-conten {
        padding: 15px;
    }

    .menu-footer-bar .link {
        margin: 10px 15px;
    }
}

/* Utility classes */
.d-flex {
    display: flex;
}

.al {
    align-items: center;
}

.jc {
    justify-content: center;
}

.sp {
    justify-content: space-between;
}

/* Custom styles for specific elements */
iframe {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}