/* Custom styles for Elite Models Agency */
/* Inspired by minimalist portfolio design */

/* Typography - Clean, bold sans-serif */
.font-sans {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  letter-spacing: -0.02em;
}

/* Large, bold headings - Portfolio style */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
  font-weight: 800;
}

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

h3 {
  font-size: 2rem;
  font-weight: 700;
}

/* Clean, minimalist buttons */
.btn-minimal {
  border: 1px solid #000;
  background: transparent;
  color: #000;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-minimal:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-minimal:active {
  transform: translateY(0);
}

/* Minimalist section styling */
.section-minimal {
  padding: 80px 40px;
  background: #fff;
  max-width: 1400px;
  margin: 0 auto;
}

.section-heading {
  font-size: 3rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 40px;
  letter-spacing: -0.04em;
}

/* Clean card design - Portfolio style */
.card-minimal {
  background: #fff;
  border: none;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.card-minimal:hover {
  transform: translateY(-8px);
}

.card-minimal img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Image gallery grid - Portfolio style */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.image-overlap {
  position: relative;
}

.image-overlap img:last-child {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: -1;
  opacity: 0.8;
}

/* Bio/Text section styling */
.bio-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 60px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.bio-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #333;
}

.bio-text p {
  margin-bottom: 20px;
}

/* Measurements table - Clean format */
.measurements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
  font-size: 1rem;
  line-height: 1.6;
}

.measurement-item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e5e5;
}

.measurement-label {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
  color: #666;
}

.measurement-value {
  font-weight: 500;
  color: #000;
}

/* Featured work section */
.featured-work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin: 60px 0;
}

.work-item {
  position: relative;
}

.work-number {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #000;
}

.work-caption {
  margin-top: 16px;
  font-size: 0.875rem;
  color: #666;
  line-height: 1.6;
}

/* Quote/Motto section */
.quote-section {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: #000;
  letter-spacing: -0.03em;
  padding: 60px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Contact section */
.contact-section {
  padding: 60px 40px;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-info {
  font-size: 1rem;
  line-height: 2;
  color: #666;
  margin: 30px 0;
}

/* Smooth transitions */
.transition {
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

/* Custom scrollbar - Minimalist */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #fff;
}

::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
  background: #333;
}

/* Animation for carousel */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Hover effects - Subtle and professional */
.hover\:shadow-2xl:hover {
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
}

/* Custom button styles */
button:disabled,
.btn-disabled {
  cursor: not-allowed;
  opacity: 0.4;
  pointer-events: none;
}

/* Form input focus styles - Minimalist */
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #000;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

input,
textarea,
select {
  border: 1px solid #ddd;
  padding: 12px 16px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:hover,
textarea:hover,
select:hover {
  border-color: #999;
}

/* Table styles - Clean and minimal */
table {
  width: 100%;
  border-collapse: collapse;
}

table thead th {
  text-align: left;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 1px;
  color: #666;
  padding: 16px;
  border-bottom: 2px solid #000;
}

table tbody td {
  padding: 16px;
  border-bottom: 1px solid #e5e5e5;
}

table tbody tr:hover {
  background-color: #f9f9f9;
}

/* Image object fit */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Clean spacing utilities */
.spacing-large {
  margin: 80px 0;
}

.spacing-medium {
  margin: 60px 0;
}

.spacing-small {
  margin: 40px 0;
}

/* Minimalist divider */
.divider {
  height: 1px;
  background: #e5e5e5;
  margin: 60px 0;
  border: none;
}

/* Text utilities */
.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.875rem;
  font-weight: 600;
}

.text-bold {
  font-weight: 700;
}

.text-black {
  color: #000;
}

.text-gray {
  color: #666;
}

/* Clean background options */
.bg-white-clean {
  background: #fff;
}

.bg-light {
  background: #fafafa;
}

/* Navigation minimal style override */
nav a {
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Card hover - Portfolio style */
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .bio-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px;
  }
  
  .section-minimal {
    padding: 60px 20px;
  }
  
  .section-heading {
    font-size: 2rem;
  }
  
  .quote-section {
    font-size: 1.75rem;
    padding: 40px 20px;
  }
  
  .image-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .measurements-grid {
    grid-template-columns: 1fr;
    gap: 15px 20px;
  }
}

/* Print styling for portfolio sections */
@media print {
  .btn-minimal {
    border: 1px solid #000;
  }
  
  .section-minimal {
    page-break-inside: avoid;
  }
}
