/* ===================================
   Angelina - Custom Styles
   =================================== */
:root {
            --color-primary: #000; /* Светло-бежевый (Hero) */
            --color-secondary: #EEE; /* Очень светлый фон */
            --color-dark-beige: #D8CCC5; /* Фон прайса */
            --color-accent: #e52e71; /* Коричневый текст/кнопки */
            --color-text: #555555;
            --font-serif: 'Playfair Display', serif;
            --font-sans: 'Poppins', sans-serif;
        }

        body {
            font-family: var(--font-sans);
            color: var(--color-text);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            font-family: var(--font-serif);
            color: #2c2c2c;
        }

        /* Utilities */
        .section-padding {
            padding: 80px 0;
        }
        .text-accent {
            color: var(--color-accent);
        }
        .page-header{
			padding-top: 130px;
			text-align: center;
			background: #000;
			padding-bottom: 50px;
			color: var(--color-accent);
        }
		.page-header h1{
			color: var(--color-accent);
		}
        /* Buttons Animation */
        .btn-custom {
            background-color: #e52e71;
            color: #fff;
            border-radius: 0;
            padding: 12px 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            transition: transform 0.3s ease, background-color 0.3s ease;
            border: none;
        }
        .btn-custom:hover {
            background-color: #333;
            color: #fff;
            transform: translateY(-3px);
        }

        /* Navbar Styles (Sticky & Logo) */
        .navbar {
            background-color: transparent;
            padding-top: 20px;
            padding-bottom: 20px;
            transition: all 0.4s ease;
            z-index: 1030;
        }
        .navbar-brand {
            font-family: var(--font-serif);
            font-size: 1.8rem; 
            font-weight: 700;
            color: #FFF;
            display: flex;
            align-items: center;
            transition: font-size 0.3s ease;
        }
		.navbar-brand:focus, .navbar-brand:hover{
			color: var(--color-accent);
		}
        .navbar-brand i {
            font-size: 1.4rem;
            color: var(--color-accent);
            margin-right: 10px;
        }
        .nav-link {
            color: #FFF !important;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 1px;
            margin-left: 15px;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: var(--color-accent) !important;
        }

        /* Scrolled Navbar State */
        .navbar.navbar-scrolled {
            background-color: #fff !important;
			color: #000 !important;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            padding-top: 10px !important;
            padding-bottom: 10px !important;
        }
        .navbar.navbar-scrolled .navbar-brand {
            font-size: 1.5rem;
        }
		.navbar.navbar-scrolled .nav-link {
            color: #333 !important;
		}
		.navbar.navbar-scrolled .navbar-brand{
			color: #000;
		}
        /* Hero Section */
		.navbar-toggler{
			color: var(--color-secondary);
		}
        .hero-section {
            background-color: var(--color-primary);
            min-height: 90vh; /* Чуть выше для эффекта */
            display: flex;
            align-items: center;
            position: relative;
            padding-top: 100px; /* Компенсация фиксированной шапки */
            padding-bottom: 50px;
			color: #FFF;
        }
		@media screen and (max-width: 991px){
			.hero-section {
				background-size: cover !important;
				background-position: 60% 0% !important;
			}
			.navbar {
	            background-color: rgba(0,0,0,0.7);
			}
			.img-fluid.w-50{
				width: 100% !important;
			}
		}
		.hero-section h1, .hero-section h2, .hero-section h3, .hero-section h4, .hero-section h5{
			color: #FFF;
		}
		.hero-subtitle.text-muted{
			color: #CCC !important;
		}
        .hero-title {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 15px;
        }
        .hero-subtitle {
            font-size: 1.1rem;
            font-weight: 400;
            letter-spacing: 0.5px;
            margin-bottom: 25px;
        }
        .hero-img-wrapper img {
            border-radius: 0; 
            max-height: 600px;
            object-fit: cover;
            /*box-shadow: -20px 20px 0 rgba(255,255,255,0.2);*/ /* Декоративный элемент */
        }
        .badge-custom {
            background-color: #2c2c2c;
            font-weight: 400;
            letter-spacing: 1px;
            padding: 8px 12px;
        }

        /* About Section */
        .about-section {
            background-color: #fff;
        }
        .about-img-main {
            width: 90%;
            margin-left: auto;
            display: block;
            border: 10px solid #EFE6DD;
            transition: transform 0.5s ease;
        }
        .about-img-small {
            margin-top: 20px;
            width: 45%;
            display: inline-block;
            margin-right: 5px;
            transition: transform 0.3s ease;
            cursor: pointer;
        }
        .about-img-small:hover {
            transform: scale(1.05);
        }

        /* Services Section */
        .services-section {
            background-color: var(--color-secondary);
        }
        .service-card {
            position: relative;
            margin-top: 30px;
            border: none;
            background: transparent;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .service-card img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }
        .service-label {
            position: absolute;
            top: 20px;
            right: -10px;
            background: #EFE6DD;
            padding: 10px 20px;
            writing-mode: vertical-rl;
            text-orientation: mixed;
            font-family: var(--font-serif);
            letter-spacing: 2px;
            height: 200px;
            text-align: center;
            font-size: 0.9rem;
            color: #333;
        }

        /* Pricing Section */
        .pricing-section {
            background-color: var(--color-dark-beige);
            color: #fff;
        }
        .pricing-section h2, .pricing-section p {
            color: #fff;
        }
        .price-item {
            margin-bottom: 25px;
            transition: transform 0.3s ease;
            cursor: default;
        }
        .price-item:hover {
            transform: translateX(10px);
        }
        .price-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            font-family: var(--font-serif);
            font-size: 1.2rem;
            margin-bottom: 5px;
        }
        .price-dots {
            flex-grow: 1;
            border-bottom: 1px dotted rgba(255,255,255,0.5);
            margin: 0 15px;
        }
        .price-desc {
            font-size: 0.85rem;
            opacity: 0.8;
            font-style: italic;
        }

        /* Gallery Animation */
        .gallery-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            margin-bottom: 24px;
            transition: transform 0.3s ease, opacity 0.3s ease;
            cursor: pointer;
        }
        .gallery-img:hover {
            opacity: 0.9;
            transform: scale(1.03);
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
        }

        /* Blog Animation */
        .blog-item-wrapper {
            display: flex;
            align-items: center;
            margin-bottom: 50px;
            transition: transform 0.3s ease;
        }
        .blog-item-wrapper:hover {
            transform: translateY(-5px);
        }
        .blog-item-wrapper img {
            transition: filter 0.3s ease, transform 0.3s ease;
            border-radius: 4px;
        }
        .blog-item-wrapper:hover img {
            filter: brightness(0.95);
        }
        .blog-date {
            font-size: 0.8rem;
            text-transform: uppercase;
            color: #999;
            margin-bottom: 10px;
        }
        .blog-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            transition: color 0.3s ease;
        }
        .blog-item-wrapper:hover .blog-title {
            color: var(--color-accent);
        }
        .read-more {
            text-transform: uppercase;
            font-size: 0.75rem;
            letter-spacing: 2px;
            color: #333;
            text-decoration: none;
            border-bottom: 1px solid #333;
            padding-bottom: 2px;
            transition: all 0.3s ease;
        }
        .read-more:hover {
            color: var(--color-accent);
            border-color: var(--color-accent);
        }

        /* Footer / Video */
        .footer-top {
            background-color: #000;
            padding: 80px 0;
        }
        .play-btn {
            width: 80px;
            height: 80px;
            border: 2px solid #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 24px;
            color: #fff;
            text-decoration: none;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }
        .play-btn:hover {
            transform: scale(1.1);
            background-color: rgba(255,255,255,0.2);
            color: #fff;
        }
        .testimonial-card {
            background: #EEE;
            padding: 40px;
            border-radius: 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        .testimonial-text {
            font-style: italic;
            font-family: var(--font-serif);
            margin-bottom: 20px;
        }

        .main-footer {
            background-color: #EEE;
            padding: 60px 0 30px;
            text-align: center;
            font-size: 0.9rem;
        }
        .footer-logos img {
            height: 40px;
            margin: 0 20px;
            opacity: 0.6;
            margin-bottom: 30px;
            transition: transform 0.3s ease, opacity 0.3s ease;
            filter: grayscale(100%);
        }
        .footer-logos img:hover {
            transform: scale(1.1);
            opacity: 1;
            filter: grayscale(0%);
        }
		.footer-top{
			position: relative;
		}
		.footer-top .bg-video {
		    position: absolute;
		    top: 50%;
		    left: 50%;
		    width: 100%;
		    height: 100%;
		    object-fit: cover;
		    transform: translate(-50%, -50%);
		    z-index: 1;
		    opacity: 0.4; /* Можно регулировать прозрачность */
		}
		
		/* Чтобы текст был читаемым */
		.footer-top .container {
		    position: relative;
		    z-index: 2;
		}

