* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    font-family: 'Lato', sans-serif; 
    line-height: 1.7; 
    color: #e0e0e0; 
    background: #1a1a1a; 
    min-height: 100vh;
}
h1, h2, h3, h4 { 
    font-family: 'Playfair Display', serif; 
    font-weight: 600; 
    color: #fff; 
}

.page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem 8rem;
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid #8b1538;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.subtitle {
    font-size: 1.3rem;
    color: #b0b0b0;
    font-weight: 300;
}

/* 3 Photos Row */
.photo-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.photo-row img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.photo-row img:hover {
    transform: scale(1.03);
    border-color: #c9a961;
    box-shadow: 0 6px 25px rgba(201, 169, 97, 0.3);
}

/* Full Width Text */
.full-width-text {
    background: #2a2a2a;
    padding: 2.5rem 3rem;
    border-radius: 8px;
    border-left: 4px solid #8b1538;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.full-width-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    text-align: justify;
}

/* Two Columns */
.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.column {
    background: #2a2a2a;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.column h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #fff;
    border-bottom: 2px solid #8b1538;
    padding-bottom: 0.8rem;
}

.column p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.column ul {
    list-style: none;
    margin-top: 1.5rem;
}

.column ul li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #d0d0d0;
}

.column ul li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: #8b1538;
    font-size: 1.2rem;
}

/* Floating Back Button */
.btn-back {
    position: fixed;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #8b1538, #6b0f2a);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    box-shadow: 0 6px 25px rgba(139, 21, 56, 0.5);
    border: 2px solid transparent;
    z-index: 100;
}

.btn-back:hover {
    background: linear-gradient(135deg, #b01d47, #8b1538);
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 8px 30px rgba(139, 21, 56, 0.7);
    border-color: #c9a961;
    color: white;
}

/* Modal for Images */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
}

.modal img {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#close {
    position: absolute;
    top: 2rem;
    right: 3rem;
    color: white;
    font-size: 3rem;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header h1 { font-size: 2.5rem; }
    .photo-row { grid-template-columns: 1fr; gap: 1.5rem; }
    .photo-row img { height: 220px; }
    .two-columns { grid-template-columns: 1fr; gap: 2rem; }
    .full-width-text { padding: 1.5rem 2rem; }
    .column { padding: 1.5rem; }
    .btn-back { padding: 0.8rem 2rem; font-size: 1rem; }
}
