/* ========================================
   Bulls2Gum - Pension Canine Styles
   ======================================== */

/* Variables CSS */
:root {
    --primary-dark: #1a1a1a;
    --primary-dark-hover: #2d2d2d;
    --accent: #9E5E0C;
    --accent-hover: #7A4A09;
    --text-light: #ffffff;
    --text-muted: #cccccc;
    --text-dark: #333333;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --bg-alt: #e8e8e8;
    --border-light: #dddddd;
    --shadow: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-hover: 0 6px 20px rgba(0,0,0,0.15);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
 font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   Header
   ======================================== */
header {
    background-color: #9e5e0c;
    color: var(--text-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 66px;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.03);
}

.logo img {
    height: 66px;
    width: auto;
    object-fit: contain;
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-list a {
    color: #ffffff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav-list a:hover,
.nav-list a:focus {
    color: #2b1a0f;
    background-color: rgba(255,255,255,0.15);
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.burger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: var(--transition);
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    background-image:
        linear-gradient(rgba(20, 12, 5, 0.65), rgba(20, 12, 5, 0.65)),
        url('chien.webp');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 6rem 2rem;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.tagline {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #f0f0f0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.since {
    font-size: 1.1rem;
    color: #f4c17a;
    font-weight: 600;
    margin-bottom: 2rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent);
    color: var(--text-light);
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* ========================================
   Sections
   ======================================== */
.section {
    padding: 5rem 2rem;
}

.section-alt {
    background-color: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #666;
    font-size: 1.1rem;
}

/* ========================================
   Prestations Grid
   ======================================== */
.prestations-grid {
    display: grid;
    gap: 2rem;
}

.prestation-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.prestation-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.prestation-card h3 {
    color: var(--accent);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.prestation-card p {
    color: #555;
    line-height: 1.7;
}

/* ========================================
   Tarifs Grid
   ======================================== */
.tarifs-grid {
    display: grid;
    gap: 2rem;
}

.tarif-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent);
}

.tarif-card.featured {
    border-left-color: var(--accent);
    transform: scale(1.02);
}

.tarif-card h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.tarif-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
}

.tarif-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.tarif-details {
    list-style: disc;
    padding-left: 1.5rem;
}

.tarif-details li {
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* ========================================
   À Propos
   ======================================== */
.apropos-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.apropos-text h3 {
    color: var(--accent);
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
}

.apropos-text h3:first-child {
    margin-top: 0;
}

.apropos-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.apropos-text ul {
    margin-bottom: 1rem;
}

.apropos-text ul li {
    color: #555;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.apropos-text ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.warning {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    border-radius: var(--radius);
    color: #856404 !important;
}

.apropos-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.apropos-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* ========================================
   Galerie
   ======================================== */
.galerie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.galerie-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.galerie-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.galerie-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

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

.contact-info {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.contact-info h3 {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-info address {
    font-style: normal;
}

.contact-info p {
    color: #555;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-info a {
    color: var(--accent);
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-cta {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-cta p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* ========================================
   Footer
   ======================================== */
footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 3rem;
}

.footer-brand h3 {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-muted);
}

.footer-brand .since {
    margin-top: 1rem;
    margin-bottom: 0;
    font-size: 1rem;
}

.footer-links h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-address h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.footer-address address {
    font-style: normal;
}

.footer-address p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.footer-address .morbihan {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ========================================
   Popup Modal (Mentions / CGV / Contact)
   ======================================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--bg-white);
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.modal-header {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 1.3rem;
    margin: 0;
    color: var(--text-light);
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--accent);
}

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    max-height: calc(85vh - 60px);
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.modal-body h3 {
    color: var(--accent);
    font-size: 1.1rem;
    margin: 1.2rem 0 0.5rem;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    margin-bottom: 0.8rem;
}

.modal-body ul {
    padding-left: 1.5rem;
    list-style: disc;
    margin-bottom: 0.8rem;
}

.modal-body ul li {
    margin-bottom: 0.4rem;
}

/* ========================================
   Responsive Design
   ======================================== */

/* Tablet and below */
@media (max-width: 768px) {
    .header-container {
        padding: 0.5rem 1rem;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #9e5e0c;
        padding: 2rem;
        transform: translateY(-150%);
        transition: var(--transition);
        box-shadow: var(--shadow);
    }
    
    .main-nav.active {
        transform: translateY(0);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-list a {
        display: block;
        padding: 1rem;
        text-align: center;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .hero {
        padding: 4rem 1.5rem;
        min-height: 50vh;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 3rem 1.5rem;
    }
    
    .section h2 {
        font-size: 2rem;
    }
    
    .prestations-grid,
    .tarifs-grid {
        grid-template-columns: 1fr;
    }
    
    .tarif-card.featured {
        transform: none;
    }
    
    .apropos-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .galerie-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Mobile small */
@media (max-width: 560px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section h2 {
        font-size: 1.6rem;
    }
    
    .tarif-price {
        font-size: 2rem;
    }
    
    .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }
    
    .prestation-card,
    .tarif-card,
    .contact-info,
    .contact-cta {
        padding: 1.5rem;
    }
    
    .footer-container {
        gap: 2rem;
    }
    
    .galerie-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Section Tarifs : cards en colonne (grille) ===== */
.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.tarif-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.tarif-card h3 {
    color: #9e5e0c;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.tarif-card .prix {
    font-size: 2rem;
    font-weight: bold;
    color: #2b1a0f;
    margin: 15px 0;
}

.tarif-card .prix span {
    font-size: 1rem;
    font-weight: normal;
    color: #666;
}

.tarif-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    flex-grow: 1;
    text-align: left;
}

.tarif-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

/* ===== Section Prestations : cards sur 2 colonnes ===== */
.prestations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.prestation-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.prestation-card:hover {
    transform: translateY(-5px);
}

.prestation-card .icon {
    font-size: 2.5rem;
    color: #9e5e0c;
    flex-shrink: 0;
}

.prestation-card h3 {
    color: #2b1a0f;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.prestation-card p {
    color: #555;
    line-height: 1.6;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .tarifs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .prestations-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .tarifs-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== Prestation card : titre au-dessus du texte ===== */
.prestation-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.prestation-card:hover {
    transform: translateY(-5px);
}

.prestation-card .icon {
    font-size: 2.2rem;
    color: #9e5e0c;
    margin-bottom: 5px;
}

.prestation-card h3 {
    color: #2b1a0f;
    font-size: 1.25rem;
    margin: 0;
}

.prestation-card p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}
/* ===== Tarif card : liste améliorée ===== */
.tarif-card ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    flex-grow: 1;
    text-align: left;
}

.tarif-card ul li {
    padding: 4px 0;
    border-bottom: none;
    line-height: 1.4;
    position: relative;
    padding-left: 22px;
    color: #444;
    font-size: 0.95rem;
}

.tarif-card ul li::before {
    content: "•";
    color: #9e5e0c;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1.4;
}