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

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Arial', sans-serif;
    background-color: #1a0f0f;
    color: #ffffff;
}

main {
    flex: 1;
}

.navbar {
    background-color: rgba(26, 15, 15, 0.95);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,.3);
    border-bottom: 2px solid #ff6b00;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: #ff6b00 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-link {
    color: #ffffff !important;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff6b00 !important;
}

/* Головний банер */
.hero {
    background-image: linear-gradient(rgba(26, 15, 15, 0.8), rgba(26, 15, 15, 0.8)), 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;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 0, 0.1), rgba(26, 15, 15, 0.8));
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: #ff6b00;
}

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

/* Секції */
section {
    overflow: hidden;
    padding: 5rem 0;
}

h6 {
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff6b00;
}

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

/* Feature boxes */
.feature-box {
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(255, 107, 0, 0.2);
    transition: all 0.3s ease;
    background-color: rgba(26, 15, 15, 0.7);
    backdrop-filter: blur(10px);
}

.feature-box:hover {
    transform: translateY(-10px);
    border-color: #ff6b00;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.2);
}

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

/* Battles section */
.battles {
    background-color: #1a0f0f;
}

.battles img {
    border-radius: 10px;
    transition: transform 0.3s ease;
    border: 2px solid rgba(255, 107, 0, 0.2);
}

.battles img:hover {
    transform: scale(1.05);
    border-color: #ff6b00;
}

/* Research section */
.research {
    background-color: #241515;
}

.research img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.2);
    border: 2px solid rgba(255, 107, 0, 0.2);
}

/* Journey section */
.journey {
    background-color: #1a0f0f;
}

.journey img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 2px solid rgba(255, 107, 0, 0.2);
}

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

.contact-box {
    background: rgba(26, 15, 15, 0.7);
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(255, 107, 0, 0.2);
    height: 100%;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.contact-box:hover {
    transform: translateY(-5px);
    border-color: #ff6b00;
}

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

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

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

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

/* Form styles */
.form-control {
    padding: 1rem;
    border-radius: 0;
    border: 1px solid rgba(255, 107, 0, 0.2);
    background-color: rgba(26, 15, 15, 0.7);
    color: #ffffff;
}

.form-control::placeholder {
    color: #ffffff;
    opacity: 0.7;
}

.form-control:focus {
    box-shadow: none;
    border-color: #ff6b00;
    background-color: rgba(26, 15, 15, 0.9);
}

.form-select {
    padding: 1rem;
    border-radius: 0;
    border: 1px solid rgba(255, 107, 0, 0.2);
    background-color: rgba(26, 15, 15, 0.7);
    color: #ffffff;
}

.form-select:focus {
    box-shadow: none;
    border-color: #ff6b00;
    background-color: rgba(26, 15, 15, 0.9);
}

.btn-primary {
    padding: 0.8rem 2rem;
    border-radius: 0;
    background-color: #ff6b00;
    border: none;
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #ff8533;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

/* FAQ section */
.accordion-button:not(.collapsed) {
    background-color: #ff6b00;
    color: white;
}

.accordion-button:focus {
    border-color: #ff6b00;
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 0, 0.25);
}

.accordion-item {
    background-color: rgba(26, 15, 15, 0.7);
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.accordion-button {
    color: #111;
}

.accordion-body {
    background-color: rgba(26, 15, 15, 0.9);
    color: #ffffff;
}

/* Footer */
footer {
    background-color: #1a0f0f;
    margin-top: auto;
    border-top: 2px solid #ff6b00;
}

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

footer a:hover {
    color: #ff6b00;
}

/* Адаптивні відступи */
@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;
    }
    
    .contact-box {
        margin-bottom: 1rem;
    }
}

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

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

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

.about-intro {
    position: relative;
    background-color: #241515;
}

.team-building {
    background-color: #1a0f0f;
}

.golem-mastery {
    position: relative;
    background-color: #241515;
}

/* 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;
    }
}

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

.legal-content {
    background-color: #241515;
    padding: 50px 0;
}

.legal-content h2 {
    color: #ff6b00;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

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

.legal-content ul {
    list-style-type: none;
    padding-left: 0;
}

.legal-content ul li {
    color: #a8b2d1;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.legal-content ul li:before {
    content: "•";
    color: #ff6b00;
    position: absolute;
    left: 0;
}

.content-block {
    background-color: #1a0f0f;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

@media (max-width: 768px) {
    .legal-content h2 {
        font-size: 1.75rem;
    }
    
    .content-block {
        padding: 1.5rem;
    }
} 