/* ========================================
   GENERATIVE DIGITAL ART PRINT SHOP - MAIN CSS
   ======================================== */

/* Color Palette - 5 Primary Colors + Light/Dark Shades */
:root {
  /* Primary Colors - Pastel High-Contrast */
  --primary-color: #5968ff;
  --secondary-color: #ff53a6;
  --accent-color: #62d7d4;
  --success-color: #a3d8c7;
  --warning-color: #f3b45c;
  
  /* Light Shades */
  --primary-light: #9195f3;
  --secondary-light: #fc8db9;
  --accent-light: #79cdba;
  --success-light: #9fddcd;
  --warning-light: #e6c36e;
  
  /* Dark Shades */
  --primary-dark: #3541c3;
  --secondary-dark: #cb3e7d;
  --accent-dark: #48a59a;
  --success-dark: #71b4a5;
  --warning-dark: #d6b55e;
  
  /* Neutral Colors */
  --bg-color: #FAFAFA;
  --text-color: #294759;
  --light-gray: #F8F9FA;
  --medium-gray: #646769;
  --dark-gray: #22252b;
}

/* Base Typography - Conservative Font Sizes */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-color);
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 10000;
  border-radius: 13px;
  font-size: 14px;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 6px;
  color: white;
}

/* Navigation Brand - Conservative Size */
.navbar-brand {
  font-size: 1.52rem;
  font-weight: 600;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  color: var(--primary-dark);
}

/* Navbar Scroll Behavior */
.navbar {
  transition: all 0.3s ease;
}

.navbar-scrolled {
  background-color: rgba(248, 249, 250, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.navbar-hidden {
  transform: translateY(-100%);
}

/* Headings - Conservative Sizes */
h1 {
  font-size: 2.60rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 1.01rem;
}

h3 {
  font-size: 1.63rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.97rem;
}

h4 {
  font-size: 1.26rem;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 0.65rem;
}

/* Paragraph - Conservative Size */
p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

/* Hero Section - Fullscreen */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

/* Decorative Shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 8s ease-in-out infinite;
}

.hero-shape:nth-child(1) {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.hero-shape:nth-child(2) {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.hero-shape:nth-child(3) {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 60%;
  animation-delay: 4s;
}

/* Button Styles */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 30px;
  font-weight: 500;
  border-radius: 28px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  padding: 12px 30px;
  font-weight: 500;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
  padding: 12px 30px;
  font-weight: 500;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-accent:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  color: white;
  transform: translateY(-2px);
}

/* Section Spacing */
.section-padding {
  padding: 80px 0;
}

/* Service Cards */
.service-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 21px 40px rgba(0, 0, 0, 0.15);
}

.service-card .card-img-top {
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.service-price {
  font-size: 1.52rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 15px;
}

/* Team Cards */
.team-card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

/* Review Cards */
.review-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
}

/* FAQ Cards */
.faq-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}

.faq-question {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

/* Gallery */
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
.footer {
  background-color: var(--dark-gray);
  color: white;
  padding: 50px 0 20px;
}

.footer h5 {
  color: var(--primary-light);
  margin-bottom: 20px;
}

.footer a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-light);
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Gradients */
.gradient-bg {
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Process Steps */
.process-step {
  text-align: center;
  position: relative;
  padding: 20px;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -25px;
  width: 50px;
  height: 2px;
  background: var(--primary-color);
  transform: translateY(-50%);
}

.process-step:last-child::after {
  display: none;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.34rem;
  margin: 0 auto 15px;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
  border-radius: 10px;
  padding: 12px 15px;
  border: 2px solid var(--light-gray);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(119, 100, 255, 0.25);
}

/* Timeline */
.timeline-item {
  position: relative;
  padding-left: 40px;
  margin-bottom: 30px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 9px;
  top: 20px;
  width: 2px;
  height: calc(100% + 10px);
  background: var(--primary-light);
}

.timeline-item:last-child::after {
  display: none;
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 20px 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

/* Utilities */
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-accent { color: var(--accent-color); }
.text-success { color: var(--success-color); }
.text-warning { color: var(--warning-color); }

.bg-primary { background-color: var(--primary-color); }
.bg-secondary { background-color: var(--secondary-color); }
.bg-accent { background-color: var(--accent-color); }
.bg-success { background-color: var(--success-color); }
.bg-warning { background-color: var(--warning-color); }

/* Notification System */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  max-width: 350px;
  z-index: 10000;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s ease;
}

.notification.show {
  opacity: 1;
  transform: translateX(0);
}

.notification-content {
  background: white;
  border-radius: 10px;
  padding: 15px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 4px solid var(--primary-color);
}

.notification-success .notification-content {
  border-left-color: var(--success-color);
}

.notification-error .notification-content {
  border-left-color: #e73f57;
}

.notification-close {
  background: none;
  border: none;
  font-size: 1.33rem;
  cursor: pointer;
  color: var(--medium-gray);
  margin-left: auto;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-close:hover {
  color: var(--text-color);
} 

.hero-section h1 {
    padding-top: 150px;
}


/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
