html { scroll-behavior: smooth; }
* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Arial Black', sans-serif; 
    background-color: #000; 
    color: #fff; 
    line-height: 1.6; 
    overflow-x: hidden; 
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* HEADER */
header { 
    background-color: #000; padding: 20px 0; position: fixed; width: 100%; top: 0; z-index: 1000; border-bottom: 2px solid #222; 
}
.header-container { 
    display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 20px; 
}

.logo { 
    font-size: 24px; font-weight: 900; letter-spacing: -1px; text-decoration: none; color: #fff; text-transform: uppercase; 
}
.logo span { color: #a6bdba; }

/* MENU */
.desktop-nav a { 
    text-decoration: none; color: #fff; font-size: 13px; margin-left: 25px; letter-spacing: 1px; font-family: Arial, sans-serif; font-weight: bold; transition: 0.3s; 
}
.desktop-nav a:hover { color: #a6bdba; }

.btn-nav-quote { 
    border: 2px solid #a6bdba; padding: 8px 15px; color: #a6bdba !important; transition: 0.3s; 
}
.btn-nav-quote:hover { background-color: #a6bdba; color: #000 !important; }

/* MOBILE MENU */
.burger-menu { display: none; cursor: pointer; position: relative; z-index: 1100; }
.burger-menu span { display: block; width: 30px; height: 3px; background: #fff; margin: 6px 0; transition: 0.4s; }
.burger-menu.open span:nth-child(1) { transform: rotate(-45deg) translate(-7px, 6px); }
.burger-menu.open span:nth-child(2) { opacity: 0; }
.burger-menu.open span:nth-child(3) { transform: rotate(45deg) translate(-7px, -6px); }

.mobile-nav {
    display: block; position: fixed; top: 0; right: -100%; width: 250px; height: 100vh;
    background: #111; padding-top: 80px; transition: 0.4s; z-index: 1000; border-left: 2px solid #222;
}
.mobile-nav.active { right: 0; }
.mobile-nav a {
    display: block; text-decoration: none; color: #fff; font-size: 16px; padding: 15px 25px;
    border-bottom: 1px solid #222; font-family: Arial, sans-serif; font-weight: bold;
}

/* HERO SECTION */
.hero {
    height: 100vh;
    display: flex; align-items: center; justify-content: center; text-align: center;
    position: relative;
    /* ПУТЬ К ФОТО ИЗ ПАПКИ Photo */
    background-image: url('Photo/my_background.jpg'); 
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
}
.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); }
.hero-content { position: relative; z-index: 2; padding: 20px; }
.hero h1 { font-size: 80px; line-height: 0.9; margin-bottom: 20px; letter-spacing: -3px; text-transform: uppercase; }
.hero p { font-family: Arial, sans-serif; font-size: 18px; max-width: 600px; margin: 0 auto 40px; color: #ccc; }

.btn-hero {
    display: inline-block; padding: 18px 45px; text-decoration: none;
    font-weight: bold; font-size: 16px; background: #fff; color: #000;
    transition: 0.3s; border: 2px solid #fff;
}
.btn-hero:hover { background: #a6bdba; color: #000; border-color: #a6bdba; }

/* SECTIONS */
.section-dark {
    background-color: #0a0a0a; padding: 100px 0; text-align: center; border-top: 1px solid #1a1a1a;
}
.section-dark h2 {
    color: #a6bdba; font-size: 40px; margin-bottom: 30px; text-transform: uppercase;
}
.section-text {
    font-family: Arial, sans-serif; max-width: 800px; margin: 0 auto; color: #ccc; text-align: left;
}
.section-text p { margin-bottom: 20px; }

/* GALLERY */
.about-gallery {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 50px;
}
.gallery-item {
    width: 100%; height: 250px; overflow: hidden; border: 1px solid #333;
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover; transition: 0.3s;
}
.gallery-item img:hover { transform: scale(1.05); }

/* CONTACT PAGE STYLES */
.contact-choice-section {
    min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
    background: #000; padding: 20px; padding-top: 100px;
}
.contact-choice-section h1 { font-size: 50px; margin-bottom: 20px; text-transform: uppercase; }
.contact-choice-section p { font-family: Arial, sans-serif; color: #ccc; margin-bottom: 40px; max-width: 600px; }
.choice-buttons { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.btn-outline {
    padding: 15px 30px; border: 2px solid #fff; color: #fff; text-decoration: none;
    font-weight: bold; text-transform: uppercase; font-family: Arial, sans-serif; transition: 0.3s;
}
.btn-outline:hover { background: #fff; color: #000; }
.contact-details-block { margin-top: 50px; font-family: Arial, sans-serif; color: #888; font-size: 14px; max-width: 600px; }

/* FORM STYLES */
.form-page-container {
    padding-top: 150px; padding-bottom: 100px; background-color: #000; min-height: 100vh;
}
.form-box {
    max-width: 600px; margin: 0 auto; background: #111; padding: 40px; border: 1px solid #333;
}
.form-box h2 { margin-bottom: 30px; text-transform: uppercase; text-align: center; color: #a6bdba; }
.form-box input, .form-box textarea {
    width: 100%; padding: 15px; margin-bottom: 20px;
    background: #000; border: 1px solid #333; color: #fff;
    font-family: Arial, sans-serif; display: block;
}
.form-box input:focus, .form-box textarea:focus { border-color: #a6bdba; outline: none; }
.btn-submit {
    background: #a6bdba; color: #000; border: none; padding: 15px; width: 100%;
    font-weight: bold; cursor: pointer; text-transform: uppercase; font-size: 16px; transition: 0.3s;
}
.btn-submit:hover { background: #fff; }

/* FOOTER */
footer { background: #000; padding: 50px 0; border-top: 1px solid #222; text-align: center; font-family: Arial, sans-serif; }
.footer-info h3 { font-size: 16px; margin-bottom: 15px; }
.footer-info p { margin-bottom: 8px; color: #888; font-size: 14px; }
.footer-info a { color: #fff; text-decoration: none; }

/* MOBILE */
@media (max-width: 768px) {
    .hero h1 { font-size: 40px; }
    .desktop-nav { display: none; }
    .burger-menu { display: block; }
    .about-gallery { grid-template-columns: 1fr; }
    .choice-buttons { flex-direction: column; width: 100%; }
    .btn-outline { width: 100%; }
}