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

body {
    font-family: 'Montserrat', Arial, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #222728;
}

/* Header */
.header {
    background: #000;
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo a img,
.logo a span {
    display: inline-block;
    vertical-align: middle;
}

.logo a:hover {
    color: #ccc;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #ccc;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
}

/* Main Content */
.main {
    margin-top: 0;
}

/* Screen Sections */
.screen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border: 1px solid #000;
    background: #fff;
}

.screen-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.gallery .screen-content {
    max-width: 100%;
    width: 100%;
}

/* Screen 1 - Hero */
.hero {
    background: #fff;
    position: relative;
    background-image: url('../pics/master.jpg');
    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(0, 0, 0, 0.5);
    z-index: 1;
}

.hero .screen-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero h1 {
    text-transform: uppercase;
    font-size: 5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Общие стили для заголовков */
h1 {
    font-size: 6rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: #fff;
}

h2 {
    font-size: 4.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    color: #fff;
    text-transform: uppercase;
}

h3 {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
    color: #fff;
}

h4 {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
    color: #fff;
}

p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: #000;
    color: #fff;
    text-decoration: none;
    border: 1px solid #000;
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Screen 2 - Photo Gallery */
.gallery {
    background: #000;
    color: #fff;
}

/* Limit second screen (gallery) to a maximum of 80vh */
.screen.gallery {
    height: 90vh;
    min-height: 0;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
}
.gallery-slider {
    position: relative;
    height: 90vh;
    overflow: hidden;
    margin-bottom: 2rem;
    cursor: grab;
}
.gallery .fotorama .gallery .fotorama__stage img, 
.gallery .fotorama__img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    top: 0 !important;
}

/* Fit gallery content within 80vh: adjust paddings and text spacing */
.screen.gallery {
	padding: 1rem;
}

.gallery .screen-content h2 {
	margin-bottom: 0.5rem;
}

.gallery .screen-content p {
	margin-bottom: 0.5rem;
}

/* Layout for gallery content to fit inside the block */
.gallery .screen-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Ensure Slick slider uses remaining space and doesn't overflow */
.gallery .gallery-slider {
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
    height: 100%;
    position: relative;
}

/* Slick slider custom styling */
.gallery .slick-slider {
    height: 100%;
    width: 100%;
}

.gallery .slick-list,
.gallery .slick-track {
    height: 100%;
    width: 100%;
}

.gallery .slide {
    height: 100%;
    width: 100%;
}

.gallery .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Make sure Slick elements are visible */
.gallery .slick-slide {
    height: 100%;
    width: 100%;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.gallery .slick-slide.slick-center {
    opacity: 1;
}

.gallery .slick-slide > div {
    height: 100%;
    width: 100%;
}

/* Center mode styling - show edges of adjacent slides */
.gallery .slick-slide:not(.slick-center) {
    transform: scale(0.9);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery .slick-slide.slick-center {
    transform: scale(1);
}

/* Ensure proper spacing between slides */
.gallery .slick-track {
    display: flex;
    align-items: center;
}

/* Add some padding to the gallery container for better edge visibility */
.gallery .gallery-slider {
    padding: 0 2%;
}

/* Custom Slick dots and arrows */
.gallery .slick-dots {
    bottom: 20px;
    z-index: 10;
}

.gallery .slick-dots li {
    margin: 0 5px;
}

.gallery .slick-dots li button:before {
    color: #fff;
    font-size: 12px;
    opacity: 0.7;
}

.gallery .slick-dots li.slick-active button:before {
    opacity: 1;
}

.gallery .slick-prev,
.gallery .slick-next {
    z-index: 10;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

.gallery .slick-prev:hover,
.gallery .slick-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.gallery .slick-prev {
    left: 20px;
}

.gallery .slick-next {
    right: 20px;
}

.gallery .slick-prev:before,
.gallery .slick-next:before {
    color: #fff;
    font-size: 20px;
}

.gallery-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    position: relative;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(100%);
    transition: transform 0.5s ease-in-out;
}

.gallery-slide.active {
    transform: translateX(0);
}

.gallery-slide.prev {
    transform: translateX(-100%);
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    pointer-events: none;
}

.gallery-prev,
.gallery-next {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    pointer-events: auto;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: rgba(0, 0, 0, 0.9);
}

/* Screen 3 - Services */
.services {
    padding: 6rem 4rem;
    background: #222728;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0;
    margin-bottom: 4rem;
    border: 2px solid #fff;
    border-radius: 0;
    overflow: hidden;
}

.service-item {
    text-align: left;
    padding: 2rem;
    border: 2px solid #fff;
    border-radius: 0;
    transition: all 0.3s ease;
    background: #000;
    color: #fff;
    position: relative;
    margin: 0;
}

.service-item:not(:last-child) {
    border-right: 2px solid #fff;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #fff;
    text-align: left;
    text-transform: uppercase;
}

.service-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #fff;
    text-align: left;
}

.reels-zone {
    text-align: center;
    padding: 2rem;
    border: 2px solid #fff;
    border-radius: 8px;
    background: #333;
}

.reels-zone h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #fff;
}

.reels-zone p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.background-colors {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.color-item {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.color-item:hover {
    transform: scale(1.1);
}

.color-item:last-child {
    color: #000;
    text-shadow: none;
}


.equipment-section h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-transform: uppercase;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    border-radius: 0;
    overflow: hidden;
}

.equipment-card {
    background: #000;
    border: 2px solid #fff;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: none;
    position: relative;
    margin: 0;
}

/* Убираем границы между карточками, так как теперь есть отступы */

.equipment-card {
    background: #000;
    border: 2px solid #000;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
}

.equipment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.equipment-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.equipment-card:hover .equipment-image img {
    transform: scale(1.05);
}

.equipment-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.equipment-content h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #fff;
    text-align: left;
}

.equipment-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #fff;
    margin: 0;
    text-align: left;
}

.equipment-content strong {
    color: #fff;
    font-weight: 600;
}

/* Screen 4 - Portfolio */
.portfolio {
    background: #222728;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.portfolio-item {
    background: #333;
    border: 1px solid #fff;
    overflow: hidden;
}

.portfolio-video {
    width: 100%;
    height: 350px;
    background: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-bottom: 1px solid #fff;
}

.portfolio-info {
    padding: 1.5rem;
}

/* Screen 3 - Pricing */
.pricing {
    background: #222728;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: #1A1A1A;
    padding: 2rem;
    border: 1px solid #333;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background-image: radial-gradient(circle, #666 1px, transparent 1px);
    background-size: 8px 8px;
    opacity: 0.3;
}

.pricing-card.featured {
    background: #222;
    border: 2px solid #444;
    transform: scale(1.05);
}

.pricing-card h3 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.pricing-card p {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-card ul li {
    color: #ccc;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 1rem 0;
    color: #fff;
    line-height: 1;
}

.price:not(:last-child) {
    margin-bottom: 0.5rem;
}

/* Screen 4 - Booking Calendar */
.booking {
    background: #fff;
    position: relative;
    background-image: url('../pics/book_back.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.booking .screen-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.booking .screen-content h2 {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}

.booking .screen-content p {
    color: #fff;
}

.calendar-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border: 1px solid #000;
    max-width: 800px;
    margin: 0 auto;
    color: #000;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calendar-header h3 {
    color: #000 !important;
}

.calendar-nav {
    background: #000;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 1.2rem;
}

.calendar-nav:hover {
    background: #333;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.weekday {
    text-align: center;
    font-weight: bold;
    padding: 0.5rem;
    background: #f0f0f0;
    border: 1px solid #000;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.calendar-day {
    background: #fff;
    padding: 1rem;
    border: 1px solid #000;
    cursor: pointer;
    text-align: center;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-day.available {
    background: #f0f0f0;
}

.calendar-day.booked {
    background: #000;
    color: #fff;
    cursor: not-allowed;
}

.calendar-day.selected {
    background: #000;
    color: #fff;
}

.calendar-day.other-month {
    color: #ccc;
    cursor: default;
}

.calendar-day.past {
    background: #ccc;
    color: #666;
    cursor: not-allowed;
}

.time-slot.past {
    background: #ccc;
    color: #666;
    cursor: not-allowed;
}

.time-slots {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #000;
}

.time-slots h4 {
    color: #000 !important;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.5rem;
    margin-top: 1rem;
}

.time-slot {
    background: #fff;
    padding: 0.5rem;
    border: 1px solid #000;
    text-align: center;
    cursor: pointer;
    font-size: 0.9rem;
}

.time-slot.available {
    background: #f0f0f0;
}

.time-slot.booked {
    background: #000;
    color: #fff;
    cursor: not-allowed;
}

.time-slot.selected {
    background: #000;
    color: #fff;
}

.time-slot.disabled {
    background: #ccc;
    color: #666;
    cursor: not-allowed;
}

/* Форма бронирования */
.booking-form {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #000;
}

.booking-form h4 {
    margin-bottom: 1.5rem;
    color: #000 !important;
    font-size: 1.5rem;
}

.booking-form .form-group {
    margin-bottom: 1rem;
    text-align: left;
}

.booking-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #000;
}

.booking-form .form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #000;
    font-size: 1rem;
    background: #fff;
    color: #000;
}

.selected-date-display,
.selected-times-display {
    padding: 0.8rem;
    background: #f0f0f0;
    border: 1px solid #000;
    border-radius: 4px;
    font-weight: bold;
    color: #000;
    margin-top: 0.5rem;
}

.booking-form .submit-btn {
    background: #000;
    color: #fff;
    padding: 1rem 2rem;
    border: 1px solid #000;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    margin-top: 1rem;
    transition: background 0.3s ease;
    display: block;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.booking-form .submit-btn:hover {
    background: #333;
}

.booking-form .submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Screen 5 - Contact */
.contact {
    background: url('../loca/1.jpg') center center/cover no-repeat;
    position: relative;
}

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

.contact .screen-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.contact .screen-content h2 {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}

.contact .screen-content p {
    color: #fff;
}

.contact .screen-content strong {
    color: #fff;
}

.contact .screen-content a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact .screen-content a:hover {
    color: #ccc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-map {
    height: 400px;
    background: #f0f0f0;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: #666;
}

.map-placeholder h3 {
    margin-bottom: 1rem;
    color: #000;
}

.map-placeholder p {
    color: #666;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.contact-details {
    margin-top: 1rem;
}

.contact-form {
    background: #fff;
    padding: 2rem;
    border: 1px solid #000;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #000;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #000;
    font-size: 1rem;
    background: #fff;
    color: #000;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    background: #000;
    color: #fff;
    padding: 1rem 2rem;
    border: 1px solid #000;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #333;
}

/* Contact Gallery */
.contact-gallery {
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.contact-slider {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.contact-slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.contact-slide.active {
    opacity: 1;
}

.contact-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.contact-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.2rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3;
}

.contact-nav:hover {
    background: rgba(0, 0, 0, 0.9);
}

.contact-prev {
    left: 10px;
}

.contact-next {
    right: 10px;
}

/* Footer */
.footer {
    background: #222728;
    color: #fff;
    padding: 3rem 0 1rem;
    border-top: 1px solid #000;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section p {
    color: #ccc;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #000;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-row .form-group {
        margin-bottom: 1rem;
    }

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

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

    h1 {
        font-size: 2.1rem;
        font-weight: 600;
    }

    h2 {
        font-size: 2rem;
        font-weight: 600;
    }

    h3 {
        font-size: 1.5rem;
        font-weight: 600;
    }

    h4 {
        font-size: 1.2rem;
        font-weight: 600;
    }

    p {
        font-size: 1rem;
    }

    .contact-content {
        padding-top: 50px;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-map {
        height: 300px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card h3 {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-item {
        padding: 1.5rem;
    }
    
    .service-item h3 {
        font-size: 1.3rem;
    }
    
    .background-colors {
        gap: 0.5rem;
    }
    
    .color-item {
        width: 60px;
        height: 60px;
        font-size: 0.8rem;
    }
    
    .equipment-section {
        padding: 1.5rem;
    }
    
    .equipment-category {
        padding: 1rem;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .equipment-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .equipment-section {
        padding: 2rem 1rem;
    }
    
    .services {
        padding: 3rem 1rem;
    }
    
    .equipment-content h4 {
        font-size: 1.2rem;
    }
    
    .gallery-slider {
        height: 80vh;
    }
    
    .gallery-nav {
        gap: 1rem;
    }

    .calendar-grid {
        grid-template-columns: repeat(7, 1fr);
        gap: 0.3rem;
    }

    .calendar-day {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
}

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

    .screen {
        padding: 1rem;
    }

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

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

    h1 {
        font-size: 2rem;
        font-weight: 600;
    }

    h2 {
        font-size: 1.8rem;
        font-weight: 600;
    }

    h3 {
        font-size: 1.3rem;
        font-weight: 600;
    }

    h4 {
        font-size: 1.1rem;
        font-weight: 600;
    }

    p {
        font-size: 0.95rem;
    }

    .calendar-container {
        padding: 1rem;
    }

    .calendar-day {
        padding: 0.3rem;
        font-size: 0.8rem;
    }
} 