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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation styles */
.navbar {
    background-color: #1a237e;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand {
    padding: 0;
}

.nav-brand a {
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-brand a:hover {
    color: #e3f2fd;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin-right: 120px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: #e3f2fd;
}

/* Welcome section styles */
.welcome {
    padding: 180px 0 100px;
    background: linear-gradient(rgba(26, 35, 126, 0.95), rgba(26, 35, 126, 0.95));
    color: #fff;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.welcome h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.welcome p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: transparent;
    color: #fff;
    text-decoration: none;
    border: 2px solid #fff;
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: #fff;
    color: #1a237e;
}

/* About section styles */
.about {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.about h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-panel {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-panel:hover {
    transform: translateY(-5px);
}

.service-panel svg {
    margin-bottom: 1rem;
}

.service-panel h3 {
    margin-bottom: 1rem;
    color: #1a237e;
    font-size: 1.5rem;
}

.service-panel p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Contact section styles */
.contact {
    padding: 60px 0;
    background-color: #fff;
}

.contact h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    text-align: center;
}

.contact-item i {
    font-size: 2rem;
    color: #1a237e;
    margin-bottom: 1rem;
}

/* Footer styles */
footer {
    background-color: #1a237e;
    color: #fff;
    padding: 2rem 0;
}

.footer-content {
    text-align: center;
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer-brand .brand-text {
    font-size: 1.2rem;
}

.footer-content a {
    color: #fff;
    text-decoration: none;
}

/* Dropdown styles */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 4px;
    min-width: 200px;
    margin-top: 0.5rem;
    z-index: 1000;
    list-style: none;
    padding: 0;
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.services-dropdown,
.about-dropdown {
    position: relative;
}

.services-dropdown:hover .dropdown-menu,
.about-dropdown:hover .dropdown-menu {
    display: block;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    display: inline-block;
    padding: 0.5rem 0;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
}

.dropdown-menu a {
    color: #333333 !important;
    padding: 0.75rem 1rem;
    display: block;
    text-decoration: none;
    transition: background-color 0.3s;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: #1a237e !important;
}

/* Language switcher styles */
.language-switcher {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    padding: 0.5rem 1rem;
    border: 2px solid #ffffff;
    background: transparent;
    color: #ffffff;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background-color: #ffffff;
    color: #1a237e;
}

.lang-btn:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Language content display rules */
body[data-lang="en"] .lang-ro {
    display: none !important;
}

body[data-lang="ro"] .lang-en {
    display: none !important;
}

/* Responsive styles */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        padding: 1rem;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 1rem;
    }
    
    .welcome h1 {
        font-size: 2rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Services page styles */
.services-page {
    padding: 120px 0 60px;
    background-color: #f9f9f9;
}

.page-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #1a237e;
    font-size: 2.5rem;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: #1a237e;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Service detail page styles */
.service-detail-page {
    padding: 120px 0 60px;
    background-color: #f9f9f9;
}

.service-title {
    color: #1a237e;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.service-detail-content h2 {
    color: #1a237e;
}

/* Service and About page specific styles */
.about-card,
.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    color: inherit;
    margin-bottom: 2rem;
}

.about-card:hover,
.service-card:hover {
    transform: translateY(-5px);
}

.about-card i,
.service-card i {
    font-size: 2.5rem;
    color: #1a237e;
    margin-bottom: 1.5rem;
}

.about-card h3,
.service-card h3 {
    color: #1a237e;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-card p,
.service-card p {
    color: #666;
    line-height: 1.6;
}

.panels-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.overview-panel {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.overview-panel.full-width {
    background: #fff;
    max-width: 1000px;
    margin: 0 auto 3rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.overview-panel h3 {
    color: #1a237e;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    text-align: center;
}

.overview-panel p {
    color: #666;
    line-height: 1.8;
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact page styles */
.contact-page {
    padding: 120px 0 60px;
    background-color: #f9f9f9;
    min-height: calc(100vh - 200px);
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 20px;
}

.page-header h1 {
    color: #1a237e;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    color: #666;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.contact-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
    min-width: 250px;
    flex: 1;
    max-width: 300px;
}

.contact-card i {
    font-size: 2.5rem;
    color: #1a237e;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: #1a237e;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-card p {
    color: #666;
    font-size: 1.1rem;
    word-break: break-word;
}

@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-card {
        width: 100%;
        max-width: 100%;
    }
}

/* Cookie Disclaimer */
.cookie-disclaimer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a237e;
    color: white;
    padding: 1rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-disclaimer .cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 0 20px;
}

.cookie-disclaimer p {
    margin: 0;
    font-size: 1rem;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-buttons button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 100px;
}

.accept-button {
    background-color: #ffffff;
    color: #1a237e;
}

.accept-button:hover {
    background-color: #e3f2fd;
}

.decline-button {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff !important;
}

.decline-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .cookie-disclaimer .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-buttons button {
        flex: 1;
        max-width: 200px;
    }
} 