/* Стили для страницы организации смен */

/* Стили для хедера */
.page-hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/organization-hero.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    padding-top: 80px;
}

.page-hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}

/* Стили для шагов организации */
.organization-steps {
    padding: 100px 0;
    background-color: var(--color-white);
}

.steps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.step {
    display: flex;
    position: relative;
    margin-bottom: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--color-olive);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 20px;
    left: 0;
    z-index: 2;
}

.step-content {
    flex: 1;
    padding: 30px 30px 30px 80px;
    background-color: var(--color-beige);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-right: 40px;
}

.step.reverse {
    flex-direction: row-reverse;
}

.step.reverse .step-content {
    margin-right: 0;
    margin-left: 40px;
}

.step.reverse .step-number {
    left: auto;
    right: 0;
}

.step-content h2 {
    color: var(--color-green);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.step-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.step-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 10px 15px;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.detail-icon {
    font-size: 1.5rem;
}

.detail-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
    font-weight: 500;
}

.step-image {
    flex: 0 0 40%;
    max-width: 40%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    padding: 20px;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Графические элементы вместо фотографий */
.calendar-graphic {
    width: 100%;
    height: 100%;
    min-height: 250px;
    background-color: var(--color-white);
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.calendar-header {
    background-color: var(--color-olive);
    color: var(--color-white);
    text-align: center;
    padding: 10px;
    border-radius: 8px 8px 0 0;
    font-weight: bold;
    font-size: 18px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-top: 10px;
    flex-grow: 1;
}

.calendar-day {
    background-color: var(--color-beige);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    font-size: 14px;
}

.calendar-day.highlight {
    background-color: var(--color-green);
    color: white;
    font-weight: bold;
}

.contract-graphic {
    width: 100%;
    height: 100%;
    min-height: 250px;
    background-color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contract-paper {
    width: 80%;
    height: 80%;
    background-color: var(--color-beige);
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.contract-paper:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    border-width: 0 30px 30px 0;
    border-style: solid;
    border-color: var(--color-white) var(--color-white);
    box-shadow: -5px 5px 5px rgba(0,0,0,0.1);
}

.contract-line {
    height: 10px;
    background-color: rgba(0,0,0,0.05);
    margin: 10px 0;
    border-radius: 5px;
}

.contract-line.short {
    width: 60%;
}

.program-graphic {
    width: 100%;
    height: 100%;
    min-height: 250px;
    background-color: var(--color-white);
    display: flex;
    flex-direction: column;
}

.program-header {
    background-color: var(--color-green);
    color: var(--color-white);
    text-align: center;
    padding: 10px;
    border-radius: 8px 8px 0 0;
    font-weight: bold;
    font-size: 18px;
}

.program-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    flex-grow: 1;
}

.program-item {
    background-color: var(--color-beige);
    border-radius: 5px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.program-time {
    font-weight: bold;
    color: var(--color-green);
    min-width: 70px;
}

.program-desc {
    font-size: 14px;
}

.happy-campers-graphic {
    width: 100%;
    height: 100%;
    min-height: 250px;
    background-color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.campers-circle {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 80%;
}

.camper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-olive);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.camper.highlight {
    background-color: var(--color-green);
    transform: scale(1.2);
}

.option-image {
    flex: 0 0 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    padding: 20px;
}

.hike-graphic {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background-color: var(--color-beige);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.mountain-shape {
    height: 40%;
    background-color: var(--color-green);
    clip-path: polygon(0% 100%, 20% 60%, 40% 80%, 60% 40%, 80% 60%, 100% 20%, 100% 100%);
    position: absolute;
    bottom: 0;
    width: 100%;
}

.mountain-shape:before {
    content: "";
    position: absolute;
    height: 80%;
    background-color: var(--color-olive);
    clip-path: polygon(0% 100%, 30% 60%, 50% 80%, 70% 40%, 90% 70%, 100% 50%, 100% 100%);
    bottom: 0;
    width: 100%;
}

.sun-shape {
    width: 60px;
    height: 60px;
    background-color: #FFDE59;
    border-radius: 50%;
    position: absolute;
    top: 40px;
    right: 40px;
    box-shadow: 0 0 30px rgba(255, 222, 89, 0.6);
}

.trees-container {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.tree {
    width: 20px;
    height: 40px;
    background-color: #285E29;
    clip-path: polygon(50% 0%, 20% 100%, 80% 100%);
    margin-bottom: 20px;
    position: relative;
}

.tree:after {
    content: "";
    width: 6px;
    height: 10px;
    background-color: #5D4037;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.trail-shape {
    position: absolute;
    bottom: 10%;
    left: 10%;
    width: 80%;
    height: 5px;
    background-color: #A5714B;
    border-radius: 5px;
    transform: rotate(-5deg);
}

.hiker {
    position: absolute;
    width: 15px;
    height: 25px;
    bottom: 15%;
    left: 30%;
    background-color: #F44336;
    border-radius: 50% 50% 0 0;
}

.hiker:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #FFC107;
    border-radius: 50%;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
}

/* Стили для дополнительных опций */
.additional-options {
    padding: 100px 0;
    background-color: var(--color-beige);
    position: relative;
    overflow: hidden;
}

.additional-options::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: var(--color-olive);
    opacity: 0.1;
}

.options-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 50px;
}

.option-card {
    display: flex;
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.option-content {
    flex: 1;
    padding: 40px;
}

.option-content h3 {
    color: var(--color-green);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.option-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Стили для секции стоимости */
.pricing-info {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/pricing-bg.jpg') no-repeat center center/cover;
    color: var(--color-white);
}

.pricing-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.pricing-text {
    flex: 1;
}

.pricing-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.pricing-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.pricing-details {
    flex: 1;
}

.pricing-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.pricing-card h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--color-beige);
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-card h3 span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-card ul li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.pricing-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-olive);
    font-weight: bold;
}

.special-offer {
    text-align: center;
    background-color: var(--color-green);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-top: 25px;
}

.special-offer p {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

/* Секция призыва к действию */
.cta-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.cta-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    color: var(--color-green);
    font-size: 2.2rem;
    margin-bottom: 30px;
    position: relative;
}

.cta-text h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--color-olive);
}

.cta-contacts {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.cta-contact-block {
    flex: 1;
}

.cta-contact-block h3 {
    color: var(--color-olive);
    margin-bottom: 15px;
    font-size: 1rem;
    letter-spacing: 1px;
}

.cta-contact-block p {
    margin-bottom: 5px;
    font-size: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.cta-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.cta-image img {
    width: 100%;
    height: auto;
    vertical-align: middle;
}

/* Адаптивные стили */
@media (max-width: 1200px) {
    .step-content {
        padding: 25px 25px 25px 70px;
    }
}

@media (max-width: 992px) {
    .page-hero-content h1 {
        font-size: 2.8rem;
    }
    
    .step {
        flex-direction: column;
    }
    
    .step.reverse {
        flex-direction: column;
    }
    
    .step-content, .step.reverse .step-content {
        margin-right: 0;
        margin-left: 0;
        width: 100%;
        padding-top: 50px;
    }
    
    .step-number {
        top: -30px;
        left: 30px;
    }
    
    .step.reverse .step-number {
        left: 30px;
        right: auto;
    }
    
    .step-image {
        max-width: 100%;
        margin-top: 20px;
    }
    
    .option-card {
        flex-direction: column;
    }
    
    .option-image {
        height: 300px;
    }
    
    .pricing-grid {
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .cta-content {
        flex-direction: column;
    }
    
    .cta-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .cta-text {
        text-align: center;
    }
    
    .cta-contacts {
        justify-content: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: auto;
        padding: 150px 0 100px;
    }
    
    .page-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .page-hero-content p {
        font-size: 1rem;
    }
    
    .detail-item {
        width: 100%;
    }
    
    .option-content {
        padding: 25px;
    }
    
    .option-content h3 {
        font-size: 1.5rem;
    }
    
    .pricing-card {
        padding: 25px;
    }
    
    .cta-contacts {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .steps-wrapper {
        gap: 60px;
    }
    
    .step-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .pricing-text h2 {
        font-size: 2rem;
    }
    
    .pricing-card h3 {
        font-size: 1.8rem;
    }
}

.hike-graphic.lake-variant .lake-shape {
    height: 30%;
    background-color: #4FC3F7;
    position: absolute;
    bottom: 0;
    width: 100%;
    border-radius: 50% 50% 0 0;
}

.hike-graphic.lake-variant .tree.small {
    height: 30px;
}

.hike-graphic.lake-variant .tree.medium {
    height: 40px;
}

.hike-graphic.lake-variant .tree.large {
    height: 50px;
}

.hike-graphic.lake-variant .trail-shape.curved {
    transform: rotate(0deg);
    border-radius: 50%;
    width: 60%;
}

.bird {
    position: absolute;
    width: 10px;
    height: 10px;
    background: transparent;
    border-radius: 50%;
    top: 20%;
}

.bird::before,
.bird::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 2px;
    background: #333;
    transform-origin: center;
}

.bird::before {
    transform: rotate(45deg);
}

.bird::after {
    transform: rotate(-45deg);
}

.bird:nth-child(1) {
    left: 20%;
    animation: fly 3s infinite;
}

.bird:nth-child(2) {
    left: 40%;
    top: 25%;
    animation: fly 4s infinite;
}

.bird:nth-child(3) {
    left: 60%;
    top: 15%;
    animation: fly 3.5s infinite;
}

@keyframes fly {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
} 