* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #1a1a2e;
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: #c9a03d;
    font-size: 28px;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
	white-space: nowrap;
}

.nav a:hover {
    color: #c9a03d;
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    color: white;
}

/* Hero Section */
.hero {
    height: 85vh;
    min-height: 900px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 70px;
    background-image: url('https://anubis-hound.ru/images/oblozhka.png');
    background-size: cover;
    background-position: right center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    position: relative;
    color: white;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    z-index: 1;
}

.hero-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-content h1 span {
    color: #c9a03d;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: #c9a03d;
    color: #1a1a2e;
}

.btn-primary:hover {
    background: #b8902a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.btn-outline {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline:hover {
    background: white;
    color: #1a1a2e;
    transform: translateY(-2px);
}

.btn-small {
    padding: 8px 20px;
    font-size: 14px;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    font-size: 18px;
}

.section-title-small {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: #1a1a2e;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-card i {
    font-size: 48px;
    color: #c9a03d;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.feature-card p {
    color: #666;
}

/* Dogs & Puppies Grids */
.dogs-grid, .puppies-grid, .graduates-grid, .news-grid, .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.dog-card, .puppy-card, .graduate-card, .news-card, .service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.dog-card:hover, .puppy-card:hover, .graduate-card:hover, .news-card:hover, .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.dog-image, .puppy-image, .graduate-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.dog-image img, .puppy-image img, .graduate-image img, .news-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.dog-card:hover .dog-image img, .puppy-card:hover .puppy-image img {
    transform: scale(1.05);
}

.dog-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #c9a03d;
    color: #1a1a2e;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.status-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.status-badge.available {
    background: #28a745;
    color: white;
}

.status-badge.reserved {
    background: #ffc107;
    color: #333;
}

.status-badge.sold {
    background: #6c757d;
    color: white;
}

.dog-info, .puppy-info, .graduate-info, .news-content {
    padding: 20px;
}

.dog-info h3, .puppy-info h3, .graduate-info h3, .news-content h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #1a1a2e;
}

.breed {
    color: #c9a03d;
    font-weight: 500;
    margin-bottom: 10px;
}

.price {
    font-size: 22px;
    font-weight: bold;
    color: #c9a03d;
    margin: 10px 0;
}

/* News */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

.news-date {
    font-size: 12px;
    color: #888;
    display: block;
    margin-bottom: 8px;
}

.news-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.news-description {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin: 10px 0;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    color: #c9a03d;
    cursor: pointer;
    background: none;
    border: none;
    font-weight: 500;
}

/* Стили для описания новостей */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1001;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    max-width: 700px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 25px;
    border-radius: 15px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
}

.modal img {
    width: 100%;
    margin: 15px 0;
    border-radius: 10px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 20px;
    color: white;
    transition: bottom 0.3s;
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Services */
.service-card {
    text-align: center;
    padding: 30px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 32px;
    color: #c9a03d;
}

.service-price {
    margin-top: 15px;
    font-size: 20px;
    font-weight: bold;
    color: #c9a03d;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.review-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-author i {
    margin-right: 8px;
    color: #c9a03d;
}

.review-rating i {
    color: #ffc107;
}

.review-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.review-form-wrapper h3 {
    text-align: center;
    margin-bottom: 25px;
    color: #1a1a2e;
}

/* Contacts */
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 32px;
    color: #c9a03d;
}

.contact-item h3 {
    color: #1a1a2e;
    margin-bottom: 5px;
}

.contacts-form form, .contact-form-wrapper {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contacts-form h3 {
    margin-bottom: 20px;
    color: #1a1a2e;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #c9a03d;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta p {
    margin-bottom: 25px;
    font-size: 18px;
}

.services-cta {
    text-align: center;
    padding: 60px 0;
    background: #f8f9fa;
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: #a0aec0;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #a0aec0;
    text-decoration: none;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    color: white;
}

.social-links a:hover {
    background: #c9a03d;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Alerts */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.form-message {
    margin-top: 15px;
}

/* Loading */
.loading {
    text-align: center;
    padding: 40px;
    color: #666;
}

.loading i {
    margin-right: 8px;
}

.text-center {
    text-align: center;
    margin-top: 30px;
}

.map-wrapper {
    margin-top: 0px;
}

.map-wrapper h3 {
    margin-bottom: 20px;
    color: #1a1a2e;
}

.map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Контейнер для двух колонок (контакты + карта) */
.contacts-two-columns {
    display: flex;
    gap: 40px; /* Расстояние между колонками */
    align-items: flex-start; /* Выравнивание по верхнему краю */
}

/* Левая колонка с контактами */
.contacts-info {
    flex: 1; /* Ширина больше, чем у карты (можно настроить) */
}

/* Правая колонка с картой */
.map-wrapper {
    flex: 1; /* Ширина карты */
}

/* Адаптивность: на планшетах и телефонах колонки становятся друг под другом */
@media (max-width: 768px) {
    .contacts-two-columns {
        flex-direction: column;
        gap: 30px;
    }
    
    .contacts-info,
    .map-wrapper {
        flex: 1; /* На мобильных ширина = 100% */
        width: 100%;
    }
}

/* About Page */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    color: #1a1a2e;
    margin-bottom: 20px;
}

.about-text h3 {
    margin: 20px 0 15px;
    color: #1a1a2e;
}

.principles-list {
    list-style: none;
    margin: 20px 0;
}

.principles-list li {
    margin-bottom: 10px;
}

.principles-list i {
    color: #28a745;
    margin-right: 10px;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 40px; }
    .about-grid { grid-template-columns: 1fr; }
    .contacts-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .mobile-toggle { display: block; }
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: #1a1a2e;
        transition: left 0.3s;
        z-index: 999;
    }
    .nav.active { left: 0; }
    .nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
	.nav a {
        display: block;
        padding: 10px 0;
    }
	
	
    .hero-content h1 { font-size: 32px; }
    .hero-buttons { flex-direction: column; gap: 10px; }
    .section-title h2 { font-size: 28px; }
    section { padding: 50px 0; }
    .page-header h1 { font-size: 32px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
} 