:root {
    --primary-green: #2ecc71;
    --accent-red: #e74c3c;
    --light-bg: #f9fbf9;
    --text-dark: #2c3e50;
    --white: #ffffff;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Navbar & Logo */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: 80px;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container { display: flex; align-items: center; gap: 15px; }
.nav-logo { height: 60px; width: auto; }
.logo-text { font-size: 1.5rem; font-weight: bold; color: var(--text-dark); }

.nav-links { display: flex; list-style: none; }
.nav-links li a {
    text-decoration: none;
    color: var(--text-dark);
    margin-left: 20px;
    font-weight: 600;
    transition: 0.3s;
}
.nav-links li a:hover { color: var(--primary-green); }

/* Mobile Menu */
.menu-toggle { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; margin: 5px; background: var(--text-dark); transition: 0.3s; }

@media screen and (max-width: 992px) {
    .menu-toggle { display: block; }
    .nav-links {
        position: absolute; top: 80px; left: -100%;
        flex-direction: column; background: var(--white);
        width: 100%; text-align: center; transition: 0.4s;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    .nav-links.active { left: 0; }
    .nav-links li { padding: 15px 0; border-bottom: 1px solid #eee; }
}

/* Hero */
.hero {
    height: 60vh;
    background: linear-gradient(rgba(46, 204, 113, 0.1), rgba(231, 76, 60, 0.1)), url('stars-bg.jpg');
    background-size: cover; display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center; border-bottom: 5px solid var(--primary-green);
}
.hero h1 { font-size: 2.5rem; color: var(--text-dark); }

/* Sections */
.container { padding: 80px 10%; text-align: center; clear: both; }
.container1 {padding: 80px 10%; text-align: left;}

.bg-light { background-color: var(--light-bg); }

h2 { color: var(--accent-red); margin-bottom: 30px; }
h2::after { content: ''; display: block; width: 50px; height: 3px; background: var(--primary-green); margin: 10px auto; }

/* Grid SOC/LOC */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.card { padding: 25px; border: 1px solid #eee; border-radius: 10px; transition: 0.3s; background: white; }
.card:hover { transform: translateY(-5px); border-color: var(--primary-green); }

/* Gallery - ПОДСКАЧАЩ ЕФЕКТ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.gallery-item {
    height: 250px;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Плавна подскачаща анимация */
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gallery-item:hover {
    transform: translateY(-15px) scale(1.05) rotate(2deg); /* Повдигане, увеличаване, леко завъртане */
    box-shadow: 0 20px 30px rgba(0,0,0,0.2); /* Силна сянка */
}

.list-box { background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); max-width: 600px; margin: 0 auto; text-align: left; }

footer { background: var(--text-dark); color: white; text-align: center; padding: 40px 0; }


/* Moi stilowe */
.venue {
    display:flex;
    width: 100%;
    text-align: left;
}

a:link {
  color: var(--primary-green);
}

/* visited link */
a:visited {
  color: var(--primary-green); 
}

/* mouse over link */
a:hover {
  color: red;
}

/* selected link */
a:active {
  color: red;
}

