:root {
    --primary-gold: #d4af37;
    --white: #ffffff;
    --black-light: #1a1a1a;
}


/* ================================
   ELEGANT INTRO SECTION
   ================================ */

.luxury-intro-section {
    padding: 100px 0 0 0;
    position: relative;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 992px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.elegant-paragraph {
    position: relative;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.973);
}

.paragraph-number {
    position: absolute;
    top: -20px;
    left: 40px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-gold);
}

.elegant-paragraph p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--black-light);
    margin: 0;
}

.intro-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.divider-ornament {
    width: 60px;
    height: 60px;
    background: var(--black);
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 24px;
}

.about-page {
    padding: 60px 0;
}

.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-hero-content h2 {
    font-size: 56px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-hero-content p {
    font-size: 20px;
    color: var(--text-light);
}

.about-hero-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}


/* ================================
   GALLERY - LUXURY
   ================================ */

.luxury-gallery-section {
    background: var(--black);
}

.gallery-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.gallery-main {
    position: relative;
}

.main-gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
}

.gallery-image-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.main-gallery-item:hover .gallery-image-main {
    transform: scale(1.05);
}

.image-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.image-overlay-content h4 {
    font-size: 29px;
    margin-bottom: 10px;
}

.gallery-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.side-gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: calc((500px - 60px) / 3);
}

.side-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.side-gallery-item:hover img {
    transform: scale(1.1);
}

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-medium);
    color: white;
    font-size: 24px;
}

.side-gallery-item:hover .item-overlay {
    opacity: 1;
}

.btn-gallery {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 40px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--primary-gold);
    border-radius: 50px;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition-medium);
}

.btn-gallery:hover {
    background: var(--primary-gold);
    color: var(--black);
    transform: translateY(-2px);
}


/* Card */
.intro-paragraph {
  height: 320px;
  display: flex;
  flex-direction: column;
}

/* Text */
.intro-text {
  overflow: hidden;
  max-height: 200px; 
  transition: max-height 0.3s ease;
}

/* Expanded */
.intro-paragraph.expanded, .intro-paragraph.expanded .intro-text {
    height: auto;
  max-height: 1000px; 
}

/* Button */
.read-more-btn {
  margin-top: auto;
  background: none;
  border: none;
  color: var(--primary-gold);
  font-weight: 600;
  cursor: pointer;
  padding-top: 15px;
  text-align: left;
}


.read-more-btn:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .intro-paragraph {
    height: 320px;
  }
  .intro-text {
    max-height: 220px;
  }
}

