/* Main Style CSS for Velariu Design Website */

/* Global Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #e8e8e8;
  color: #2c3e50;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: #5a6c7d;
}

a {
  color: #3498db;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #2980b9;
  text-decoration: none;
}

/* Header and Navigation */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #e8e8e8;
  box-shadow: 0 2px 20px rgba(190, 190, 190, 0.3);
}

.navbar-brand img {
  height: 50px;
  width: auto;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: #2c3e50;
  margin: 0 10px;
  padding: 10px 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #3498db;
  background: #e8e8e8;
  box-shadow: 5px 5px 15px #bebebe,
              -5px -5px 15px #ffffff;
}

.navbar-nav .nav-link.active {
  color: #3498db;
  background: #e8e8e8;
  box-shadow: inset 3px 3px 10px #bebebe,
              inset -3px -3px 10px #ffffff;
}

.navbar-toggler {
  border: none;
  background: #e8e8e8;
  border-radius: 10px;
  box-shadow: 5px 5px 15px #bebebe,
              -5px -5px 15px #ffffff;
}

.navbar-toggler:focus {
  box-shadow: inset 3px 3px 10px #bebebe,
              inset -3px -3px 10px #ffffff;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #e8e8e8 0%, #f0f0f0 100%);
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2c3e50;
  text-shadow: 2px 2px 4px rgba(190, 190, 190, 0.3),
               -2px -2px 4px rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #5a6c7d;
  margin-bottom: 2rem;
}

.hero-image {
  position: relative;
  z-index: 1;
}

/* Content Sections */
.content-section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #3498db, #2980b9);
  border-radius: 2px;
}

/* Cards and Content Blocks */
.content-card {
  background: #e8e8e8;
  border-radius: 20px;
  box-shadow: 15px 15px 50px #bebebe,
              -15px -15px 50px #ffffff;
  padding: 2rem;
  margin: 2rem 0;
  transition: all 0.3s ease;
}

.content-card:hover {
  box-shadow: 20px 20px 60px #bebebe,
              -20px -20px 60px #ffffff;
  transform: translateY(-5px);
}

.service-card {
  text-align: center;
  padding: 2rem;
  margin: 1rem 0;
}

.service-icon {
  font-size: 3rem;
  color: #3498db;
  margin-bottom: 1rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.gallery-item {
  background: #e8e8e8;
  border-radius: 20px;
  box-shadow: 12px 12px 40px #bebebe,
              -12px -12px 40px #ffffff;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  box-shadow: 18px 18px 55px #bebebe,
              -18px -18px 55px #ffffff;
  transform: translateY(-8px);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.gallery-caption {
  padding: 1.5rem;
}

.gallery-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.gallery-description {
  color: #5a6c7d;
  font-size: 0.9rem;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #2c3e50;
}

.form-control-neumorphism {
  background: #e8e8e8;
  border: none;
  border-radius: 12px;
  box-shadow: inset 8px 8px 20px #bebebe,
              inset -8px -8px 20px #ffffff;
  padding: 15px 20px;
  color: #2c3e50;
  font-size: 1rem;
  width: 100%;
  transition: all 0.3s ease;
}

.form-control-neumorphism:focus {
  outline: none;
  box-shadow: inset 10px 10px 25px #bebebe,
              inset -10px -10px 25px #ffffff;
}

.form-control-neumorphism::placeholder {
  color: #9ca3af;
}

.textarea-neumorphism {
  background: #e8e8e8;
  border: none;
  border-radius: 12px;
  box-shadow: inset 8px 8px 20px #bebebe,
              inset -8px -8px 20px #ffffff;
  padding: 15px 20px;
  color: #2c3e50;
  font-size: 1rem;
  resize: vertical;
  min-height: 120px;
  width: 100%;
  transition: all 0.3s ease;
}

.textarea-neumorphism:focus {
  outline: none;
  box-shadow: inset 10px 10px 25px #bebebe,
              inset -10px -10px 25px #ffffff;
}

.checkbox-neumorphism {
  margin-bottom: 1rem;
}

.checkbox-neumorphism input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  accent-color: #3498db;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

/* Buttons */
.btn-neumorphism {
  background: #e8e8e8;
  border: none;
  border-radius: 15px;
  box-shadow: 8px 8px 25px #bebebe,
              -8px -8px 25px #ffffff;
  color: #2c3e50;
  padding: 12px 30px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-neumorphism:hover {
  box-shadow: 12px 12px 35px #bebebe,
              -12px -12px 35px #ffffff;
  transform: translateY(-2px);
  color: #3498db;
}

.btn-neumorphism:active {
  box-shadow: inset 5px 5px 15px #bebebe,
              inset -5px -5px 15px #ffffff;
  transform: translateY(0);
}

.btn-primary-neumorphism {
  background: linear-gradient(145deg, #3498db, #2980b9);
  color: white;
  box-shadow: 8px 8px 25px rgba(52, 152, 219, 0.3),
              -8px -8px 25px rgba(255, 255, 255, 0.8);
}

.btn-primary-neumorphism:hover {
  background: linear-gradient(145deg, #2980b9, #3498db);
  color: white;
  box-shadow: 12px 12px 35px rgba(52, 152, 219, 0.4),
              -12px -12px 35px rgba(255, 255, 255, 0.9);
}

/* Team Section */
.team-member {
  text-align: center;
  padding: 2rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  box-shadow: 15px 15px 50px #bebebe,
              -15px -15px 50px #ffffff;
}

.team-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.team-position {
  color: #3498db;
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-description {
  color: #5a6c7d;
  line-height: 1.6;
}

/* Contact Info */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.contact-item {
  background: #e8e8e8;
  border-radius: 15px;
  box-shadow: 8px 8px 20px #bebebe,
              -8px -8px 20px #ffffff;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-item:hover {
  box-shadow: 12px 12px 30px #bebebe,
              -12px -12px 30px #ffffff;
  transform: translateY(-3px);
}

.contact-icon {
  font-size: 2.5rem;
  color: #3498db;
  margin-bottom: 1rem;
}

.contact-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.contact-details {
  color: #5a6c7d;
}

.contact-details a {
  color: #3498db;
  text-decoration: none;
}

.contact-details a:hover {
  color: #2980b9;
}

/* Footer */
.main-footer {
  background: #e8e8e8;
  box-shadow: 0 -8px 30px rgba(190, 190, 190, 0.3),
              0 2px 10px rgba(255, 255, 255, 0.8);
  border-radius: 20px 20px 0 0;
  padding: 3rem 0 2rem;
  margin-top: auto;
  color: #5a6c7d;
}

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

.footer-section h4 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #5a6c7d;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #3498db;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(90, 108, 125, 0.2);
  color: #9ca3af;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
}

.social-link {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #e8e8e8;
  border-radius: 50%;
  box-shadow: 5px 5px 15px #bebebe,
              -5px -5px 15px #ffffff;
  color: #3498db;
  text-align: center;
  line-height: 40px;
  transition: all 0.3s ease;
}

.social-link:hover {
  box-shadow: 8px 8px 20px #bebebe,
              -8px -8px 20px #ffffff;
  transform: translateY(-2px);
  color: #2980b9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .content-section {
    padding: 2rem 0;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .navbar-nav {
    background: #e8e8e8;
    border-radius: 15px;
    box-shadow: inset 8px 8px 20px #bebebe,
                inset -8px -8px 20px #ffffff;
    padding: 1rem;
    margin-top: 1rem;
  }
  
  .content-card {
    padding: 1.5rem;
    margin: 1rem 0;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .content-card {
    padding: 1rem;
  }
  
  .team-photo {
    width: 150px;
    height: 150px;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Utility Classes */
.text-neumorphism {
  color: #2c3e50;
}

.text-secondary-neumorphism {
  color: #5a6c7d;
}

.text-accent {
  color: #3498db;
}

.bg-neumorphism {
  background: #e8e8e8;
}

.shadow-neumorphism {
  box-shadow: 15px 15px 50px #bebebe,
              -15px -15px 50px #ffffff;
}

.shadow-inset-neumorphism {
  box-shadow: inset 8px 8px 20px #bebebe,
              inset -8px -8px 20px #ffffff;
}

.rounded-neumorphism {
  border-radius: 20px;
}

.rounded-small-neumorphism {
  border-radius: 12px;
}