html{
    margin: 0;
}
body{
    margin: 0;
    background-color: #93B3A6;
    
}
main{
    margin: auto;
    max-width: 1080px;
    background-color: #ffffff;
    font-family: sans-serif;
    box-shadow: 0 0 2px black;
}
/* ****************** */
/* NAVIGATION STYLING */
/* ****************** */
nav{
    padding: .4rem;
    display: flex;
    align-items: center;
    margin: 0 20px;
    justify-content: space-between;
}

.logo{
    border-right: 1px solid black;
    display: flex;
    align-items: center;
    letter-spacing: normal;
    padding-right: 10px;
}

.initials{
    margin-right: 12px;
    font-family: "Great Vibes", cursive;
    font-size: 2rem;
    font-weight: 500;
}

.logo-brand{
    font-family: "Zalando Sans Expanded", sans-serif;
    font-size: 1.3rem;
    font-weight: 100;
}

.nav-items{
    display: flex;
    gap: 28px;
}
.nav-items > a{
    position: relative;
    text-decoration: none;
    font-family: sans-serif;
    color: black;
    padding: 8px 10px
}
.nav-items a::after{
    content:"";
    position:absolute;
    bottom:-4px;
    left:0;
    width:0;
    height:2px;
    background:#6b9080;
    transition:.2s;
}
.nav-items a:hover::after{
    width:100%;
}

/* ************ */
/* NAV DROPDOWN */
/* ************ */
.nav-dropdown{
    position: relative;
    display: flex;
    align-items: center;
}
.nav-dropdown a{
    position: relative;
    text-decoration: none;
    font-family: sans-serif;
    color: black;
    padding: 8px 10px
}
.dropdown-menu{
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 160px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    z-index: 3;
}
.dropdown-menu > a{
    position: relative;
    padding: 10px 16px;
    text-decoration: none;
    color: black;
    font-family: sans-serif;
}
.dropdown-menu a:hover{
    background: #f4f4f4;
}
.nav-dropdown:hover .dropdown-menu{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.page-title{
    text-align: center;
    font-family: "Great Vibes", cursive;
    padding: 10px;
    font-size: 2.2rem;
    font-weight: 500;
}

/* ***************** */
/* main hero styling */
/* ***************** */

.slideshow{
    height: 600px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.slide{
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 3s ease-in-out;

}
.slide.active{
    opacity: 1;
}
.slideshow::before{
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.35)
    );
    z-index: 1;
    backdrop-filter: blur(1px);
}
.hero-container{
    padding: 0 20px;
    z-index: 2;
}
.hero-content{
    font-family: "Playfair Display", serif;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    position: relative;
    color: whitesmoke;
    text-shadow: 0 3px 12px rgba(0,0,0,0.6);
}
.hero-content > h1{
    font-size: 4rem;
    margin-bottom: 16px;
    font-weight: 600;
}
.hero-content > p{
    font-size: 1.8rem;
    font-weight: 300;
}
.hero-buttons-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
}
 .hero-buttons-container {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 32px;
}
.btn {
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
    text-overflow: 0;
}

/* Primary Button (Order Portrait) */
.btn-primary {
    background-color: #6b9080;
    color: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

/* Secondary Button (View Gallery) */
.btn-secondary {
    background-color: whitesmoke;
    color: #333;
    
}

/* Hover Effects */
.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.6);
}

.btn-secondary:hover {
    background-color: white;
    color: #6b9080;
    transform: translateY(-1px);
}

/* ******************* */
/* FEATURED SECTION STYLES */
/* ******************* */
.home-portrait-featured, .pet-portrait-featured{
    /* border: 1px solid red; */
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin: 100px 60px;
}
.home-image-container, .pet-image-container{
    /* border: 1px solid black; */
    width: 50%;
}
.home-featured-img, .pet-featured-img{
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.home-text-container,.pet-text-container{
    /* border: 1px solid black; */
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: start;
    text-align: start;
    padding: 0px 16px 16px 16px;
    max-width: 500px;
}
.home-image-text, .pet-image-text{
    font-size: 1.3rem;
    line-height: 1.6;
    color: #333;
    max-width: 500px;
}
.order-btn{
    text-decoration: none;
    color: white;
    background-color: #6b9080;
    padding: 12px 20px;
    border-radius: 6px;
    box-shadow: 1px 1px 4px #000000;
}
.order-btn:hover{
    background-color: #4f6f63;
    transform: translateY(-1px);
}

/* ************** */
/* GALLERY STYLES */
/* ************** */

.gallery{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.gallery > img{
    min-width: 100px;
    max-width: 360px;
    
}

/* ******************** */
/* MEET ARTIST SECTION STYLES */
/* ******************** */
.about-artist{
    /* border: 2px solid red; */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}
.artist-bio-container{
    display: flex;
    align-items: center;
}
.artist-image-container > img{
    border: 4px solid #6b907f;
    margin-right: 10px;
}
.artist-text-container{
    /* border: 2px solid blue; */
    margin: 0;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.artist-text-container > p{
    font-size: 1.3rem;
    font-weight: 200;
    line-height: 1.6;
    color: #333;
    max-width: 500px;
}

/* ********************* */
/* PROCESS SECTION STYLES*/
/* ********************* */

.process-intro{
    font-size: 1.3rem;
    line-height: 1.6;
    width: 80%;
    text-align: center;
    margin: auto;
    color: #333;
}
.step-card{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 1rem;
}
.step-image{
    width: 40%;
    height: auto;
}
.step-image > img{
    width: 100%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}
.step-text{
    width: 60%;
    font-size: 1.3rem;
    line-height: 1.6;
    color: #333;
    max-width: 500px;
}

/* ********************** */
/* PRICING SECTION STYLES */
/* ********************** */
.pricing-section {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-section h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-family: sans-serif;
}

.pricing-table th,
.pricing-table td {
    padding: 16px 12px;
    text-align: left;
}

.pricing-table thead {
    border-bottom: 2px solid #6b9080;
}

.pricing-table tbody tr {
    border-bottom: 1px solid #eee;
}

.pricing-table th {
    font-weight: 600;
}

.pricing-table td:first-child {
    font-weight: 500;
}