/* WARM PUGLIAN NIGHTS - Edge to Edge, Natural Flow */

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.8;
    color: #5a3825;
    background-color: #f0e6d8;
}

/* Header - Natural, simple */
.site-header {
    background: transparent;
    padding: 2.5rem 5%;
    border-bottom: none;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: normal;
    color: #8d5a3f;
    text-decoration: none;
    font-family: Georgia, serif;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 3rem;
}

.nav-menu a {
    color: #8d5a3f;
    text-decoration: none;
    transition: color 0.3s;
    font-family: Georgia, serif;
    font-size: 1.05rem;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #d57149;
    transition: width 0.3s;
}

.nav-menu a:hover {
    color: #d57149;
}

.nav-menu a:hover::after {
    width: 100%;
}

.language-switcher {
    display: flex;
    gap: 1rem;
}

.language-switcher a {
    color: #8d5a3f;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.language-switcher a:hover {
    color: #d57149;
}

/* Main content - full width */
main {
    padding: 0;
}

/* Hero section - full width with entrance photo */
.hero {
    background-image: url('/PXL_20260322_214459325.MP.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    padding: 15rem 8% 12rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(45, 24, 16, 0.8) 0%,
        rgba(200, 119, 94, 0.65) 50%,
        rgba(213, 113, 73, 0.6) 100%);
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    position: relative;
    z-index: 1;
    text-shadow: 3px 4px 15px rgba(0,0,0,0.7);
    font-family: Georgia, serif;
    font-weight: normal;
    letter-spacing: 3px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hero .subtitle {
    font-size: 1.6rem;
    position: relative;
    z-index: 1;
    color: #fef5ed;
    font-family: Georgia, serif;
    font-weight: 300;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Content - edge to edge sections */
.content {
    padding: 6rem 8%;
}

.content > * {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.content h2 {
    color: #c8775e;
    margin-top: 4rem;
    margin-bottom: 2rem;
    font-family: Georgia, serif;
    font-weight: normal;
    font-size: 2.5rem;
    text-align: left;
}

.content h2:first-child {
    margin-top: 0;
}

.content h3 {
    color: #8d5a3f;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-family: Georgia, serif;
    font-weight: normal;
    font-size: 1.8rem;
}

.content p {
    margin-bottom: 1.8rem;
    color: #5a3825;
    line-height: 2;
    font-size: 1.15rem;
}

.content ul {
    margin: 2.5rem 0;
    list-style: none;
}

.content li {
    margin-bottom: 1.2rem;
    color: #5a3825;
    line-height: 1.9;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.1rem;
}

.content li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: #d57149;
    font-size: 0.9rem;
}

/* Featured image - full bleed */
.content figure.featured-image {
    margin: 6rem 0;
    max-width: none;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.content figure.featured-image img {
    width: 100%;
    height: 65vh;
    min-height: 500px;
    object-fit: cover;
    display: block;
}

.content figure.featured-image figcaption {
    display: none;
}

/* Photo Gallery - full width */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin: 8rem 0;
    max-width: none;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: #f0e6d8;
}

.gallery-item img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: all 0.6s ease;
    filter: brightness(0.95);
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 2rem;
    background: linear-gradient(to top,
        rgba(45, 24, 16, 0.95) 0%,
        rgba(45, 24, 16, 0.8) 50%,
        transparent 100%);
    color: #f5e6d3;
    font-size: 1.1rem;
    font-style: normal;
    text-align: center;
    line-height: 1.6;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(-10px);
}

/* Article */
article {
    padding: 6rem 8%;
}

article > * {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

article header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(213, 113, 73, 0.3);
}

article h1 {
    color: #c8775e;
    font-size: 3rem;
    font-family: Georgia, serif;
    font-weight: normal;
}

/* Footer */
.site-footer {
    background: linear-gradient(180deg,
        #f0e6d8 0%,
        #e8d5c4 100%);
    color: #8d5a3f;
    padding: 4rem 8%;
    margin-top: 8rem;
    text-align: center;
    border-top: 1px solid rgba(200, 119, 94, 0.2);
}

.site-footer p {
    margin: 1rem 0;
    font-family: Georgia, serif;
    font-size: 1rem;
}

.site-footer p:first-child {
    color: #c8775e;
    font-weight: normal;
    font-size: 1.15rem;
}

/* Responsive */
@media (max-width: 968px) {
    .hero {
        padding: 10rem 6% 8rem;
    }

    .hero h1 {
        font-size: 3rem;
        letter-spacing: 2px;
    }

    .hero .subtitle {
        font-size: 1.3rem;
    }

    .content {
        padding: 4rem 6%;
    }

    article {
        padding: 4rem 6%;
    }

    .photo-gallery {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .gallery-item img {
        height: 380px;
    }

    .content figure.featured-image img {
        height: 50vh;
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 2rem 5%;
    }

    .navbar {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .hero {
        padding: 8rem 5% 6rem;
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .hero .subtitle {
        font-size: 1.1rem;
    }

    .content {
        padding: 3rem 5%;
    }

    .content h2 {
        font-size: 2rem;
    }

    article {
        padding: 3rem 5%;
    }

    article h1 {
        font-size: 2.2rem;
    }

    .gallery-item img {
        height: 320px;
    }

    .gallery-caption {
        padding: 2rem 1.5rem;
        font-size: 1rem;
    }

    .content figure.featured-image img {
        height: 45vh;
        min-height: 350px;
    }
}
