.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-variation-settings:
            "wdth" 100;
    color: #2c2c2c;
    line-height: 1.6;
    background: #f8f6f3;
}

.hero {
    height: 100vh;
    background-image:url(../images/banner_at_top.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}
@media (max-width: 1200px) {
    .hero{
        height:70vh;
    }
}
@media (max-width: 1000px) {
    .hero{
        height:50vh;
    }
}
@media (max-width: 800px) {
    .hero{
        height:25vh;
    }
}
.hero-content {
    max-width: 900px;
    padding: 15px;
    animation: fadeIn 1.5s ease-in;
    background: rgba(0,0,0,.10);
    border-radius: 7px;
    line-height: 1.1;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero .subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 15px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.20);
}

.hero .location {
    font-size: 1.1rem;
    font-style: italic;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.50);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-indicator::after {
    content: '↓';
    color: white;
    font-size: 2rem;
    opacity: 0.8;
}

nav {
    position: sticky;
    top: 0;
    background: rgba(44, 44, 44, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav a:hover {
    color: #a89968;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}
@media (max-width: 500px) {
    .container {
        padding:20px;
    }
}

.container{
    padding-bottom:0;
}
.section {
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: #8b6f47;
    border-bottom: 2px solid #a89968;
    padding-bottom: 15px;
}

.intro {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 40px;
    font-style: italic;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}
.content-flex {
    display: flex;
    gap:1rem;
}
@media (max-width: 800px) {
    .content-flex {
        flex-direction: column;
    }
}
.content-flex > div{
    flex:1;
}

.feature-list {
    background: white;
    padding: 40px;
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.feature-list h3 {
    font-size: 1.5rem;
    color: #8b6f47;
    margin-bottom: 25px;
    font-weight: 400;
}

.feature-list ul {
    list-style: none;
}

.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.feature-list li:before {
    content: '▪';
    color: #a89968;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.feature-list li:last-child {
    border-bottom: none;
}

.heritage-box {
    background: linear-gradient(135deg, #8b6f47 0%, #a89968 100%);
    color: white;
    padding: 50px;
    border-radius: 2px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.heritage-box h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.heritage-box p {
    line-height: 1.9;
    font-size: 1.05rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.stat-box {
    background: white;
    padding: 40px 20px;
    text-align: center;
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 300;
    color: #8b6f47;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-section {
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
    color: white;
    padding: 80px 40px;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.contact-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #a89968;
    color: white;
    padding: 18px 50px;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #8b6f47;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.gallery-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    border-radius: 2px;
    font-style: italic;
    overflow: hidden;
    height: auto !important;
}

footer {
    background: #2c2c2c;
    color: white;
    text-align: center;
    padding: 30px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero .subtitle {
        font-size: 1.1rem;
    }

    .content-grid, .stats {
        grid-template-columns: 1fr;
    }

    nav ul {
        flex-wrap: wrap;
        gap: 15px;
        padding-left:3rem;
    }
    nav ul li{
        flex:1;
    }
}


.architectural .swiper-slide{
    align-items: normal;
}


.click{
    font-size:.9rem;
    text-align: center;
    margin-bottom:1.5rem;
}
