﻿/* MAIN WRAPPER */
.proprietor-main {
  padding: 60px 0;
  background: linear-gradient(135deg, #f9fafc, #ffffff);
}

/* TOP SECTION */
.proprietor-container {
  display: flex;
  gap: 50px;
  align-items: center;
}

/* IMAGE SIDE */
.proprietor-image {
  flex: 1;
}

.proprietor-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* TEXT SIDE */
.proprietor-text {
  flex: 1;
}

.highlight {
  border-left: 4px solid var(--accent);
  padding-left: 15px;
  font-style: italic;
  background: #f9fafc;
}

.proprietor-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
  position: relative;
}

/* UNDERLINE ACCENT */
.proprietor-title::after {
  content: "";
  width: 70px;
  height: 4px;
  background: var(--accent);
  display: block;
  margin-top: 10px;
  border-radius: 5px;
}

.proprietor-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}

/* SIGNATURE */
.signature {
  margin-top: 25px;
  font-weight: 700;
  color: var(--secondary);
}

.signature span {
  font-size: 0.9rem;
  color: #666;
}

/* GALLERY */
.proprietor-gallery {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.proprietor-gallery img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 15px;
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.proprietor-gallery img:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .proprietor-container {
    flex-direction: column;
  }

  .proprietor-image img {
    height: auto;
  }

  .proprietor-gallery {
    grid-template-columns: 1fr;
  }
}