/* Додаткові стилі для сайту */

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Arial', sans-serif;
}

main {
    flex: 1;
}

.navbar {
    background-color: rgba(33, 37, 41, 0.9);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Головний банер */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/hero-bg.avif');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 15px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

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

/* Секції */
section {
    overflow: hidden;
}

h6 {
    font-weight: bold;
    letter-spacing: 2px;
}

h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Feature boxes */
.feature-box {
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Battles section */
.battles img {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.battles img:hover {
    transform: scale(1.05);
}

/* Research section */
.research img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Journey section */
.journey img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
}

/* Contact form */
.form-control {
    padding: 1rem;
    border-radius: 0;
    border: 1px solid rgba(0,0,0,0.1);
}

.form-control:focus {
    box-shadow: none;
    border-color: #dc3545;
}

.btn-danger {
    padding: 0.8rem 2rem;
    border-radius: 0;
}

/* Footer */
footer {
    background-color: #212529;
    margin-top: auto;
}

footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #dc3545;
}

/* Адаптивні відступи */
@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .feature-box {
        margin-bottom: 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
}

/* About page styles */
.about-page h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #212529;
}

.about-page h2 {
    color: #212529;
}

.about-page .lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
}

.about-intro {
    position: relative;
}

.team-building {
    background-color: #f8f9fa;
}

.golem-mastery {
    position: relative;
}

/* Responsive styles for about page */
@media (max-width: 768px) {
    .about-page h1 {
        font-size: 2rem;
    }
    
    .about-page .lead {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Contact page styles */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/contact-hero.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    margin-bottom: 0;
}

.contact-box {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.contact-box:hover {
    transform: translateY(-5px);
}

.contact-box i {
    font-size: 2.5rem;
    color: #dc3545;
}

.contact-form {
    background-color: #f8f9fa;
}

.contact-form form {
    transition: transform 0.3s ease;
}

.contact-form form:hover {
    transform: translateY(-5px);
}

.accordion-button:not(.collapsed) {
    background-color: #dc3545;
    color: white;
}

.accordion-button:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.form-control:focus, .form-select:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

/* Legal pages styles */
.legal-page .legal-header {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/legal-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}

.legal-content {
    color: #333;
}

.legal-content h2 {
    color: #212529;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #dc3545;
    padding-bottom: 0.5rem;
}

.legal-content p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.content-block {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive styles for legal pages */
@media (max-width: 768px) {
    .legal-content h2 {
        font-size: 1.5rem;
    }
    
    .content-block {
        padding: 1.5rem;
    }
} 