/* Shampooch - Rebuilt Style Sheet */

/* ---------- Reset ---------- */
*,
*::before,
*::after{
    box-sizing:border-box;
    margin:0;
    padding:0;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#fff;
    color:#423f3f;
    line-height:1.6;
}

/* ---------- Navigation ---------- */

.navbar{
    position:fixed;
    font-family:"Italianno",cursive;
    font-size:2rem;
    top: 20px;
    left: 20px;
    z-index: 1000;
}

.menu-btn {
    width: 50px;
    height: 50px;
    background: #f9dfb8;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 10px;
}

.menu-btn span{
    width:30px;
    height:3px;
    background:#fff;
    border-radius:4px;
    transition:.3s;
}

.menu-btn.active span:nth-child(1){transform:translateY(9px) rotate(45deg);}
.menu-btn.active span:nth-child(2){opacity:0;}
.menu-btn.active span:nth-child(3){transform:translateY(-9px) rotate(-45deg);}

.nav-links{
    list-style:none;
    position:absolute;
    top:80px;
    left:0;
    width:180px;
    background:#B38B69;
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
    z-index:1000;
}

.nav-links.show{max-height:500px;}

.nav-links li{border-bottom:1px solid #000;}
.nav-links li:last-child{border-bottom:none;}

.nav-links a{
    display:block;
    padding:15px 20px;
    color:#423f3f;
    text-decoration:none;
}

.nav-links a:hover{
    background:#423f3f;
    color:#fff;
}

/* ---------- Header ---------- */

header {
    background-color: #000;
    position: relative;
    text-align: center;  
    padding: 20px;
}

header h1{
    color:#B38B69;
    font-family:"Italianno",cursive;
    font-size:3rem;
}

.logo-image{
    width:100%;
    max-width:220px;
    margin:0 auto;
}

.logo-image img{
    width:100%;
    height:auto;
    display:block;
}

/* ---------- About ---------- */

.about-section{
    position:relative;
    max-width:900px;
    margin:40px auto;
    padding:30px;
    font-family:"Italianno",cursive;
    font-size:2rem;
    overflow:hidden;
}

.about-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:url("Gallery/bg.jpg") center/90% no-repeat;
    opacity:.25;
    z-index:-1;
}

.about-section p{margin-bottom:25px;}

/* ---------- Gallery ---------- */

#main-gallery-container{margin:50px 0;}

#gallery{
    width:min(1100px,90%);
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

figure{overflow:hidden;border-radius:8px;}

#gallery img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
    border:4px solid;
    box-shadow:0 6px 15px rgba(0,0,0,.3);
    cursor:pointer;
    transition:transform .3s;
    border-radius: 12px;
}

#gallery img:hover{
	transform:scale(1.05);
	}

figcaption{
    background:rgba(255,255,255,.6);
    text-align:center;
    padding:10px;
    font-size:15px;
}

/* ---------- Lightbox ---------- */

.lightbox{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.9);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.lightbox img{
    max-width:90%;
    max-height:85%;
    border:4px solid #fff;
}

.close,.prev,.next{
    position:absolute;
    color:#fff;
    cursor:pointer;
}

.close{
    top:20px;
    right:35px;
    font-size:45px;
}

.prev,.next{
    top:50%;
    transform:translateY(-50%);
    background:none;
    border:none;
    font-size:50px;
    padding:20px;
}

.prev{left:20px;}
.next{right:20px;}


/*----------- Prices ------------ */

.table{
    width:90%;
    max-width:600px;
    margin:60px auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #f9dfb8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

thead {
    background: #423f3f;
    color: #f9dfb8;
}

thead th {
    padding: 18px;
    font-family: "Italianno", cursive;
    font-size: 2rem;
    font-weight: normal;
}

tbody td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #d8c3a5;
    font-size: 1.1rem;
}

tbody tr:nth-child(even) {
    background: #fffaf3;
}

tbody tr:hover {
    background: #B38B69;
    color: white;
    transition: 0.3s;
}

tbody tr:last-child td {
    border-bottom: none;
}

.breeds {
	position:relative;
    max-width:900px;
    margin:40px auto;
    padding:30px;
    font-family:"Italianno",cursive;
    font-size:2rem;
    overflow:hidden;
    z-index: 0;
  }

.breeds::before{
    content:"";
    position:absolute;
    inset:0;
    background:url("logo.png") center/95% no-repeat;
    opacity:.25;
    z-index:-1;
    }

.tandc {
	position:relative;
    max-width:900px;
    margin:30px auto;
    padding:20px;
    /*font-family:"Italianno",cursive;
    font-size:1.5rem;*/
    overflow:hidden;
    background: #B38B69;
}

.price-heading {
    text-align: center;
    font-family: "Italianno", cursive;
    font-size: 3rem;
    color: #423f3f;
    margin-top: 80px;
    margin-bottom: 30px;
}

/* ---------- Testimonials ---------- */

.testimonial-slider{
    position:relative;
    max-width:800px;
    margin:50px auto;
}

.testimonial{
    display:none;
    background:#f9dfb8;
    padding:40px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.testimonial.active{
	display:block;
	}

.testimonial p{

	margin-bottom:20px;
	font-size:1.1rem;
	font-style:italic;
	}

.testimonial h4{
    font-family:"Italianno",cursive;
    font-size:2rem;
    color:#423f3f;
}

.testimonial-slider button{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:#423f3f;
    color:#fff;
    cursor:pointer;
}

#prev{left:10px;}
#next{right:10px;}

.testimonial-slider button:hover{
    background:#B38B69;
    color:#423f3f;
}

/* ---------- Footer ---------- */

footer{
    background:#f9dfb8;
    text-align:center;
    padding:20px;
    color:#B38B69;
    font-family:"Italianno",cursive;
    font-size:2rem;
}

.footer-links{
    list-style:none;
    display:flex;
    justify-content:center;
    gap:20px;
    margin:20px 0;
}

.footer-links a,
.Email a,
.footer-social a{
    color:#B38B69;
    text-decoration:none;
    transition:color .3s;
}

.footer-links a:hover,
.Email a:hover,
.footer-social a:hover{
    color:#423f3f;
}

/* ---------- Responsive ---------- */

@media (max-width:768px){
    #gallery{grid-template-columns:repeat(2,1fr);}
}

@media (max-width:600px){
    #gallery{grid-template-columns:1fr;}
    .about-section{font-size:1.5rem;padding:20px;}
    header h1{font-size:2.4rem;}
}

@media (max-width:600px){

    .about-section,
    .breeds{
        font-size:1.4rem;
    }

    .price-heading{
        font-size:2rem;
    }

    thead th{
        font-size:1.4rem;
        padding: 12px;
    }

	tbody td{
        font-size:0.95rem;
        padding:12px;
    }
    
    footer{
        font-size:1.4rem;
    }

}

@media (max-width:600px){

.footer-links{
    flex-direction:column;
    gap:10px;
}

}

@media (max-width:600px){

.testimonial-slider button{
    width:36px;
    height:36px;
    font-size:18px;
}

}
@media (max-width:600px){

.prev,
.next{
    font-size:32px;
    padding:10px;
}

.close{
    font-size:36px;
}

}

/* Tablets */
@media (max-width:900px){
    .table{
        padding:0 30px;
    }
}

/* Phones */
@media (max-width:600px){

    #gallery{
        grid-template-columns:1fr;
    }

    .about-section,
    .breeds{
        font-size:1.4rem;
        padding:20px;
    }

    .logo-image{
        width:150px;
    }

    header h1{
        font-size:2.2rem;
    }

    .footer-links{
        flex-direction:column;
    }

    .table{
        padding:0 10px;
        overflow-x:auto;
    }

    thead th{
        font-size:1.4rem;
    }

    .price-heading{
        font-size:2rem;
    }
}