/* Updated styles for visaservice.pl website */
:root {
  --main-bg-color: rgb(35, 35, 35);
  --header-bg-color: #FF4500;
  --nav-bg-color: #FFA500;
  --text-color: rgb(255, 255, 255);
  --link-color: rgb(255, 255, 255);
  --link-hover-color: #FFD700;
  --accent-color: #FF6347;
  --border-color: #444444;
  --forum-bg-color: rgba(255, 255, 255, 0.1);
}

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

body {
  font-family: 'Arial', sans-serif;
  background-color: var(--main-bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header styles */
header {
  background-color: var(--header-bg-color);
  padding: 10px 0;
  position: relative;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--text-color);
  text-decoration: none;
  text-align: center;
}

.tagline {
  font-size: 1rem;
  text-align: center;
  margin-top: 5px;
}

/* Navigation styles */
nav {
  background-color: var(--nav-bg-color);
  padding: 10px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-nav {
  display: flex;
  list-style: none;
}

.main-nav li {
  margin-right: 15px;
}

.main-nav a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  display: block;
  transition: background-color 0.3s;
}

.main-nav a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--link-hover-color);
}

.language-selector {
  display: flex;
  list-style: none;
}

.language-selector li {
  margin-left: 10px;
}

.language-selector img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s;
}

.language-selector img:hover {
  transform: scale(1.1);
}

/* Mobile menu */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-color);
  cursor: pointer;
}

/* Main content styles */
.main-content {
  padding: 30px 0;
}

.hero-section {
  margin-bottom: 30px;
}

.hero-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 5px;
}

.welcome-section {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 30px;
}

.welcome-section h2 {
  margin-bottom: 15px;
  color: var(--accent-color);
}

.welcome-section p {
  margin-bottom: 15px;
}

/* Services section */
.services-section {
  margin-bottom: 30px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 5px;
}

.services-section h2 {
  margin-bottom: 20px;
  color: var(--accent-color);
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.service-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 5px;
  transition: transform 0.3s, background-color 0.3s;
  text-align: center;
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.service-card i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.service-card h3 {
  margin-bottom: 10px;
  color: var(--link-hover-color);
}

.service-card p {
  font-size: 0.95rem;
}

.service-image {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  border-radius: 5px;
}

/* Expertise section */
.expertise-section {
  margin-bottom: 30px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 5px;
}

.expertise-section h2 {
  margin-bottom: 20px;
  color: var(--accent-color);
  text-align: center;
}

.expertise-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.expertise-item {
  text-align: center;
  padding: 15px;
}

.expertise-item i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.expertise-item h3 {
  margin-bottom: 10px;
  color: var(--link-hover-color);
}

/* Forum styles */
.forum-section {
  margin-bottom: 30px;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 5px;
}

.forum-section h3 {
  margin-bottom: 15px;
  color: var(--accent-color);
  text-align: center;
}

.contact-intro {
  margin-bottom: 20px;
}

.contact-intro p {
  margin-bottom: 15px;
}

.forum-form {
  background-color: var(--forum-bg-color);
  padding: 20px;
  border-radius: 5px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #333;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
}

.submit-btn {
  background-color: var(--accent-color);
  color: var(--text-color);
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #FF4500;
}

/* Privacy Policy styles */
.privacy-policy-section {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 30px;
  border-radius: 5px;
  margin-bottom: 30px;
}

.privacy-policy-section h1 {
  color: var(--accent-color);
  margin-bottom: 10px;
  text-align: center;
}

.last-updated {
  text-align: center;
  font-style: italic;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.7);
}

.policy-content h2 {
  color: var(--accent-color);
  margin: 25px 0 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 5px;
}

.policy-content h3 {
  color: var(--link-hover-color);
  margin: 20px 0 10px;
}

.policy-content p {
  margin-bottom: 15px;
}

.policy-content ul {
  margin: 15px 0;
  padding-left: 20px;
}

.policy-content ul li {
  margin-bottom: 8px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner p {
  margin-right: 20px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 8px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.cookie-accept {
  background-color: var(--accent-color);
  color: white;
}

.cookie-settings {
  background-color: transparent;
  border: 1px solid white;
  color: white;
}

/* Footer styles */
footer {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 40px 0 20px;
  margin-top: 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-contact h4,
.footer-social h4,
.footer-links h4 {
  color: var(--accent-color);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer-contact p {
  margin-bottom: 10px;
}

.footer-contact i {
  margin-right: 10px;
  color: var(--accent-color);
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-color);
  transition: background-color 0.3s, transform 0.3s;
}

.social-icons a:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--link-color);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--link-hover-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

.copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 5px;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive styles */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
  }
  
  .main-nav {
    flex-direction: column;
    width: 100%;
    display: none;
  }
  
  .main-nav.active {
    display: flex;
  }
  
  .main-nav li {
    margin-right: 0;
    margin-bottom: 5px;
    text-align: center;
  }
  
  .language-selector {
    margin-top: 15px;
    justify-content: center;
  }
  
  .hamburger {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
  }
  
  .services-grid,
  .expertise-content {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner p {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 2rem;
  }
  
  .tagline {
    font-size: 0.9rem;
  }
  
  .welcome-section,
  .services-section,
  .expertise-section,
  .forum-section,
  .forum-form,
  .privacy-policy-section {
    padding: 15px;
  }
}

/* Notification styles */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 20px;
  border-radius: 5px;
  color: white;
  z-index: 1000;
  animation: fadeIn 0.3s ease-in-out;
  max-width: 300px;
}

.notification.success {
  background-color: #4CAF50;
}

.notification.error {
  background-color: #F44336;
}

.notification-close {
  margin-left: 10px;
  cursor: pointer;
  font-weight: bold;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
