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

:root {
    --brand-orange: #FFA500;
    --dark-bg: #0a0a0a;
    --glass-border: rgba(255, 255, 255, 0.1);
}

/* BODY & GENERAL SETTINGS */
html, body {
    font-family: Arial, sans-serif;
    text-align: center;
    background: url('assets/images/background.webp') center/cover fixed;
    color: #ddd;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Background blur effect */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: -10;
}

/* Ensure the container pushes the footer down */
.container {
    flex: 1 0 auto; /* This allows the content to grow */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 120px 20px 100px; /* More bottom padding for the footer space */
}

/* MODERN STEALTH LOOK */
.content {
    max-width: 950px;
    width: 92%;
    text-align: center;
    /* Glassmorphism Effect */
    background: rgba(20, 20, 20, 0.6); 
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px;
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    margin-top: 40px;
    transition: transform 0.3s ease;
}

.content:hover {
    transform: translateY(-5px); /* Subtle lift on hover */
}

/* Fix hyperlink colors */
.content a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
}

.content a:hover {
    text-decoration: underline;
    color: #ffd700;
}

/* Improve spacing for text */
.content h1, .content h2 {
    margin-bottom: 25px;
    font-size: 28px;
    color: white;
}

.content p {
    line-height: 1.8;
    font-size: 18px;
    margin-bottom: 25px;
}

.footer {
    flex-shrink: 0; /* Prevents footer from squishing */
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
    color: white;
    text-align: center;
    padding: 30px;
    width: 100%;
}

/* FOOTER LINKS */
.footer-links {
    margin-top: 5px;
}

.footer-links a {
    color: #ffcc00;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    z-index: 1000;
    height: 70px;
}

/* LOGO */
.logo {
    width: 8vw;
    max-width: 100px;
    height: auto;
}

/* NAVIGATION MENU */
.nav-menu {
    display: flex;
    gap: 25px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    white-space: nowrap;
}

.nav-menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7); /* Slightly dimmed when not active */
    padding: 10px 20px;
    transition: all 0.3s ease;
    border-radius: 8px;
}

/* ACTIVE NAVIGATION */
.nav-menu a.active {
    color: var(--brand-orange);
    background: rgba(255, 165, 0, 0.1); /* Subtle orange tint for active page */
}

.nav-menu a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1); /* Glass hover effect */
}

/* Responsive Navbar */
.burger-menu {
    position: absolute;
    top: 15px; /* Distance from top */
    left: 50%;
    transform: translateX(-50%);
    display: none; /* Hide on large screens */
    flex-direction: column;
    justify-content: space-between;
    width: 40px;
    height: 30px;
    cursor: pointer;
    z-index: 1100;
}

.burger-menu div {
    width: 100%;
    height: 5px;
    background: #fff; /* Adjust for visibility */
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

@media screen and (max-width: 1024px) {
    .burger-menu {
        display: flex;
		z-index: 1100; /* Ensures it's above other elements */
    }
	.nav-menu {
        position: absolute;
        top: 50px; /* Below burger menu */
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        background: #222;
        display: none;
        flex-direction: column;
        align-items: center;
        padding: 10px 0;
    }
    .nav-menu.show {
        display: flex;
    }
	.language-popup {
        width: 90%;
        left: 5%;
        top: 45%;
        transform: translateY(-45%);
    }
    .language-popup h2 {
        font-size: 18px;
    }
    .language-popup button {
        width: 100%;
        font-size: 16px;
        padding: 10px;
    }
	.cookie-banner {
		flex-direction: column;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 10px;
        text-align: center;
        font-size: 14px;
    }
    .cookie-banner button {
        display: block;
        width: 80%;
        margin: 5px auto;
    }
	.content {
        width: 95%;
        padding: 20px;
		border-left: 4px solid var(--brand-orange);
    }
}
button {
    margin: 5px 10px; /* 10px horizontal spacing */
}

button + button {
    margin-left: 15px; /* More space between buttons */
}

.button-container {
    display: flex;
    justify-content: center; /* Centers the buttons */
    gap: 15px; /* Adds space between them */
}

/* LANGUAGE SELECTION */
.lang-selection {
    display: flex;
    gap: 5px;
    align-items: center;
    position: absolute;
    right: 20px;
    top: 20px;
}

.lang-selection img {
    width: 24px;
    height: auto;
    cursor: pointer;
    border-radius: 3px;
    transition: 0.3s;
}

/* ACTIVE LANGUAGE INDICATOR */
.lang-selection img.activeLang {
    border: 2px solid #ffcc00;
    opacity: 0.8;
}

.lang-selection img:hover {
    transform: scale(1.1);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    text-align: center;
    padding: 18px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    z-index: 9999;
}

.cookie-banner button {
    background: #ffcc00;
    border: none;
    padding: 14px 20px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    color: black;
    margin: 10px;
    transition: background 0.3s ease-in-out;
}

.cookie-banner button:hover {
    background: #e6b800;
}

.cookie-banner .decline {
    background: #cc0000;
    color: white;
}

.cookie-banner .decline:hover {
    background: #990000;
}

/* Cookie Settings Button */
.cookie-banner .settings {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 18px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    margin-left: 10px;
    transition: background 0.3s ease-in-out;
}

.cookie-banner .settings:hover {
    background: #0056b3;
}

/* SERVICE CARDS */
.service-preview {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.service-box {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.service-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.3); /* Orange glow on hover */
    border-color: var(--brand-orange);
}

.service-box img {
    width: 100px;
    height: auto;
}

/* GALLERY SECTION */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery img {
    width: 100%;
    border-radius: 8px;
    transition: 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* CTA SECTION */
.cta {
    background: rgba(0, 0, 0, 0.8);
    padding: 30px;
    margin-top: 40px;
    border-radius: 12px;
}

.cta h2 {
    color: white;
}

.cta button {
    background: #ffcc00;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
}

.cta button:hover {
    background: #e6b800;
}

/* Fullscreen Language Selection */
.language-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 10000;
}

.language-popup h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 26px;
}

/* Flag Buttons */
.language-popup img {
    width: 80px;  /* Slightly larger flags */
    height: auto;
    margin: 15px;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 5px;
}

.language-popup img:hover {
    transform: scale(1.1);
    border: 2px solid #ffcc00;
}

/* Centering Fix */
.why-choose-us {
    text-align: center;
}

.centered-list {
    list-style: none;
    padding: 0;
    display: inline-block;
    text-align: left;
}

/* Improve Button Style */
button {
    background-color: #ffae00;
    color: #000;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 5px;
}

button:hover {
    background-color: #ff8c00;
    transform: scale(1.05);
}

.why-choose-us ul {
    list-style: none;
    padding: 0;
}
.why-choose-us ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}
.why-choose-us ul li::before {
    content: "✔";
    color: #ffcc00;
    font-weight: bold;
    font-size: 20px;
}

.service-details {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(0, 0, 0, 0.8);
    padding: 15px;
    margin-bottom: 40px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.service-details:hover {
    transform: scale(1.02);
}

.service-details img {
    max-width: 30%; /* Makes sure images fit nicely */
    height: auto;
    margin: 15px 0; /* Adds spacing */
}

.service-details h2 {
    font-size: 1.5rem;
    margin: 0;
    color: #fff;
}

.service-details p {
    flex: 1;
    font-size: 1rem;
    color: #ccc;
}

.service-details button {
    background: #ff9900;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.service-details button:hover {
    background: #ff6600;
}
/* Removes bullet points for lists */
ul {
    list-style-type: none; /* Hides the white dots */
    padding: 0; /* Removes extra padding */
    margin: 0; /* Adjust margin if needed */
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.gallery-item {
    width: 300px; /* Adjust width based on design */
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease-in-out;
}

.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.gallery-item:hover {
    transform: scale(1.05);
}
.news, .content {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.news-article {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 25px;
    margin: 20px 0;
    border-radius: 12px;
    text-align: left; /* News is easier to read left-aligned */
}

.news-article h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.news-article p {
    font-size: 14px;
    color: #ccc;
}

.news-article a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
}
.news-article a:hover {
    text-decoration: underline;
}
.news-article img {
    width: 100%; /* Ensures the image takes the full width of its container */
    max-height: 400px; /* Adjust height as needed */
    object-fit: cover; /* Ensures the image is properly scaled and cropped */
    border-radius: 10px; /* Optional: Rounds the corners for a smoother look */
}


/* CONTACT FORM */
.quick-contact {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 12px;
    max-width: 600px;
    margin: auto;
}

.quick-contact form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-contact input,
.quick-contact textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ffcc00;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.quick-contact button {
    background: #ffcc00;
    color: black;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 5px;
}

.quick-contact button:disabled {
    background: #555;
    cursor: not-allowed;
}

.quick-contact button:hover:not(:disabled) {
    background: #e6b800;
}

.success-message {
    color: #00ff00;
    font-weight: bold;
    margin-top: 10px;
}

.error-message {
    color: #ff4444;
    font-weight: bold;
    margin-top: 10px;
}
.language-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.9);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    z-index: 9999;
}

.language-popup h2 {
    color: white;
    font-size: 24px;
    margin-bottom: 15px;
}

.language-popup button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Space between flag and text */
    background-color: #FFA500;
    color: black;
    font-size: 18px;
    font-weight: bold;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    margin: 10px 0; /* More space between buttons */
    width: 200px; /* Adjust button width */
}

.language-popup button img {
    width: 32px;  /* Make flags bigger */
    height: 24px;
    border-radius: 3px;
}

.language-popup button:hover {
    background-color: #FF8800;
}
.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 15px; /* Increased space between buttons */
    margin-top: 20px;
}

.gallery-tabs button {
    background-color: #FFA500;
    color: black;
    font-size: 16px;
    font-weight: bold;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.gallery-tabs button:hover {
    background-color: #FF9900;
    transform: scale(1.05); /* Slight animation on hover */
}
