/* 
Color Palette:
#B5C18E - Sage Green (Soft/Natural)
#F7DCB9 - Peach Cream (Warm/Elegant)
#DEAC80 - Sand/Gold (Premium)
#B99470 - Taupe Brown (Earthy/Stable)
*/

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #3a3a3a;
    background-color: #fdfbf7;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
nav {
    background-color: #B99470;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

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

nav .logo-img {
    height: 60px;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

nav ul li a {
    color: #fdfbf7;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.6px; /* smanjeno */
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    position: relative;

    font-family: 'Georgia', serif; /* usklađeno sa body */
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #DEAC80;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav ul li a:hover::after {
    width: 80%;
}

nav ul li a:hover {
    color: #DEAC80;
}

/* Hero Section */
.hero {
    position: relative;
    color: #fdfbf7;
    padding: 10rem 0;
    text-align: center;
    overflow: hidden;
    background-image: url('../images/logo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(185, 148, 112, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.7rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-style: italic;
}

.hero .notice {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    max-width: 700px;
    margin: 2rem auto;
    border: 1px solid rgba(255,255,255,0.3);
}

.hero .notice p {
    font-size: 1.2rem;
    margin: 0;
    font-style: normal;
}

/* Section Styles */
section {
    padding: 6rem 0;
}

section.light {
    background-color: #fdfbf7;
}

section.dark {
    background-color: #F7DCB9;
}

.section-title {
    text-align: center;
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    color: #B99470;
    font-weight: 400;
    letter-spacing: 1px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.5rem;
    color: #6d6d6d;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
    line-height: 1.8;
}

/* Team Section - O Nama */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(185, 148, 112, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #F7DCB9;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(185, 148, 112, 0.25);
}

.team-member .years {
    color: #DEAC80;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.team-member h3 {
    color: #B99470;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.team-member p {
    color: #555;
    line-height: 1.9;
    font-size: 1.05rem;
}

/* History Section */
.history-content {
    background: white;
    padding: 4rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(185, 148, 112, 0.15);
    line-height: 2;
    font-size: 1.15rem;
    border-left: 5px solid #DEAC80;
}

.history-content p {
    margin-bottom: 1.5rem;
    color: #555;
}

/* Spaces Grid - Prostori */
.spaces-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.space-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(185, 148, 112, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.space-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(185, 148, 112, 0.3);
}

.space-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.space-card .space-info {
    padding: 2.5rem;
}

.space-card h3 {
    margin-bottom: 1rem;
    color: #B99470;
    font-size: 1.7rem;
    font-weight: 400;
}

.space-card p {
    color: #555;
    line-height: 1.9;
    font-size: 1.05rem;
}

/* Materials List */
.materials-list {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(185, 148, 112, 0.15);
    margin-top: 2rem;
}

.materials-list h3 {
    color: #B99470;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.materials-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.materials-list li {
    padding: 1.5rem;
    background: #F7DCB9;
    border-radius: 10px;
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    font-weight: 500;
}

/* Exhibitions */
.exhibitions-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.exhibition-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(185, 148, 112, 0.15);
    border-left: 6px solid #B5C18E;
    transition: all 0.3s ease;
}

.exhibition-card:hover {
    transform: translateX(15px);
    box-shadow: 0 10px 30px rgba(185, 148, 112, 0.25);
}

.exhibition-card h3 {
    color: #B99470;
    margin-bottom: 1rem;
    font-size: 1.9rem;
    font-weight: 400;
}

.exhibition-card .date {
    color: #DEAC80;
    font-weight: bold;
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
}

.exhibition-card p {
    color: #555;
    line-height: 2;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.exhibition-card .location {
    margin-top: 1.5rem;
    font-weight: 600;
    color: #B5C18E;
    font-size: 1.1rem;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: white;
    padding: 3.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(185, 148, 112, 0.15);
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid #F7DCB9;
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: #DEAC80;
}

.contact-card .icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    color: #B99470;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 400;
}

.contact-card p {
    color: #555;
    line-height: 2;
    font-size: 1.1rem;
}

.contact-card a {
    color: #DEAC80;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-card a:hover {
    color: #B5C18E;
    text-decoration: underline;
}

/* Important Notice Box */
.important-notice {
    background: linear-gradient(135deg, #DEAC80 0%, #B99470 100%);
    padding: 3rem;
    border-radius: 15px;
    color: white;
    text-align: center;
    margin: 3rem 0;
    box-shadow: 0 8px 25px rgba(185, 148, 112, 0.3);
}

.important-notice h3 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.important-notice p {
    font-size: 1.4rem;
    line-height: 1.8;
}

/* Map Container */
.map-container {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(185, 148, 112, 0.15);
    margin-top: 3rem;
}

.map-container h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #B99470;
    font-size: 2rem;
    font-weight: 400;
}

/* Working Hours Box */
.hours-box {
    background: white;
    padding: 3.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(185, 148, 112, 0.15);
    margin-top: 3rem;
    border: 2px solid #F7DCB9;
}

.hours-box h3 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #B99470;
    font-size: 2rem;
    font-weight: 400;
}

.hours-box p {
    text-align: center;
    margin-bottom: 1.2rem;
    font-size: 1.15rem;
    color: #555;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #B5C18E 0%, #DEAC80 100%);
    padding: 4.5rem;
    border-radius: 15px;
    color: #fdfbf7;
    text-align: center;
    margin-top: 4rem;
    box-shadow: 0 10px 30px rgba(185, 148, 112, 0.3);
}

.cta-box h3 {
    color: #fdfbf7;
    margin-bottom: 1.5rem;
    font-size: 2.3rem;
    font-weight: 400;
}

.cta-box p {
    margin-bottom: 3rem;
    font-size: 1.3rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1.2rem 3rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: 'Georgia', serif;
}

.btn-primary {
    background: #fdfbf7;
    color: #B99470;
}

.btn-primary:hover {
    background: #F7DCB9;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: #fdfbf7;
    border: 2px solid #fdfbf7;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: #B99470;
    color: #fdfbf7;
    text-align: center;
    padding: 3rem 0;
    margin-top: 6rem;
}

footer p {
    font-size: 1.1rem;
}

/* Placeholder Image */
.placeholder-image {
    background: linear-gradient(135deg, #B5C18E 0%, #DEAC80 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    font-weight: 500;
    text-align: center;
    padding: 2rem;
}

/* Quote/Slogan Styles */
.quote-box {
    background: linear-gradient(135deg, rgba(181, 193, 142, 0.1) 0%, rgba(222, 172, 128, 0.1) 100%);
    padding: 3rem;
    border-radius: 15px;
    border-left: 5px solid #DEAC80;
    margin: 3rem 0;
    font-style: italic;
    font-size: 1.4rem;
    color: #555;
    text-align: center;
    line-height: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav .container {
        flex-direction: column;
        gap: 1.5rem;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    nav ul li a {
        font-size: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1.2rem;
    }

    .spaces-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .history-content {
        padding: 2.5rem;
    }

    .cta-box {
        padding: 3rem 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .important-notice h3 {
        font-size: 1.8rem;
    }

    .important-notice p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 6rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    section {
        padding: 4rem 0;
    }

    .team-member,
    .space-card .space-info,
    .exhibition-card,
    .contact-card {
        padding: 2rem;
    }
}
