html{
    scroll-behavior:smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

.hero h1{
    font-size:3rem;
    margin-bottom:20px;
    line-height:1.2;
}

button,
a{
    -webkit-tap-highlight-color: transparent;
}

img{
    display:block;
    max-width:100%;
}

.cta a[href^="tel"]{
	display:block;
    font-size:2rem;
    color:#fff;
    text-decoration:none;
    font-weight:bold;
}

.cta a[href^="tel"]:hover{
    color:#00bfff;
}

.cta .btn{
    display:inline-block;
    margin-top:20px;
}

body {
	background: url("images/dumi.jpg") no-repeat center center fixed;
    background-size: cover;
    color: white;
    line-height: 1.6;
}

header {
    position: fixed;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00bfff;
}

nav a {
    margin-left: 25px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

nav a:hover {
    color: #00bfff;
}

.hero {
    min-height:100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('images/herol2.jpg') center/cover no-repeat;
    z-index: -2;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6); /* dark overlay */
    z-index: -1;
}

@media (max-width:768px){

.hero h1{
    font-size:2rem;
}

.hero p{
    font-size:1rem;
}

}

.hero p {
    margin-bottom: 30px;
    color: #ccc;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.primary {
    background: #00bfff;
    color: black;
}

.primary:hover {
    background: #009acd;
}

.secondary {
    border: 2px solid #00bfff;
    color: #00bfff;
}

.secondary:hover {
    background: #00bfff;
    color: black;
}

section{
    padding:100px 10%;
    text-align:center;
}

@media(max-width:768px){

section{
    padding:70px 20px;
}

}

.services h2,
.pricing h2,
.about h2,
.contact h2 {
    margin-bottom: 50px;
    font-size: 2.2rem;
}

.service-grid,
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card,
.price-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    transition: 0.3s;
}

.card:hover,
.price-card:hover {
    transform: translateY(-10px);
    background: #222;
}

.big-gallery {
    text-align: center;
    padding: 120px 10%;
}

@media (max-width:768px){
    .big-gallery{
        padding:60px 20px;
    }
}

.gallery-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:20px;
}

@media(min-width:768px){
    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

.gallery-grid img{
    height:220px;
}

}


.gallery-grid img{
    width:100%;
    height:350px;
    object-fit:cover;
    border-radius:12px;
    transition:transform .3s ease;
}

.price {
    font-size: 2rem;
    color: #00bfff;
    margin: 15px 0;
}

.featured {
    border: 2px solid #00bfff;
    transform: scale(1.05);
}

.about p {
    max-width: 700px;
    margin: auto;
    color: #bbb;
}

.contact p {
    margin-bottom: 30px;
    color: #ccc;
}

footer {
    background: #000;
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #777;
}
.location {
    padding: 60px 20px;
    text-align: center;
    background-color: #111;
    color: white;
}

.location h2 {
    margin-bottom: 10px;
    font-size: 28px;
}

.map-container {
    margin-top: 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    overflow: hidden;
}

.menu-btn{
    display:none;
    font-size:30px;
    background:none;
    border:none;
    color:white;
    cursor:pointer;
}

@media (max-width:768px){

    header{
        flex-wrap:wrap;
        justify-content:space-between;
        align-items:center;
        padding:12px 20px;
    }

    .logo{
        flex:1;
        font-size:1.3rem;
    }

    .menu-btn{
        display:block;
    }

    .nav-links{
        display:none;
        flex-direction:column;
        width:100%;
        text-align:center;
        margin-top:20px;
    }

    .nav-links.active{
        display:flex;
    }
	
	nav a{
    padding:10px 0;
}

    nav a{
        margin:15px 0;
    }
}

.instagram{
    text-align:center;
    padding:40px 20px;
}

.instagram a{
    display:block;
    width:max-content;
    margin:0 auto;
}

.gallery-grid img:hover{
    transform:scale(1.03);
}

.cta{
    padding:100px 20px;
}

.cta h3{
    margin:20px 0;
}

.hero-content{
    max-width:700px;
    width:100%;
}

section{
    scroll-margin-top:100px;
}

.btn:hover{
    transform:translateY(-2px);
}

.menu-btn{
    padding:8px;
}

@media(max-width:768px){

.cta a[href^="tel"]{
    font-size:1.5rem;
}

}

.card,
.price-card{
    transition:transform .3s ease,
               background .3s ease;
}

.instagram img:hover{
    transform:scale(1.05);
}

.btn:focus,
nav a:focus,
.menu-btn:focus{
    outline:2px solid #00bfff;
    outline-offset:3px;
}

@media (max-width:768px){

.buttons{
    flex-direction:column;
    align-items:center;
}

.btn{
    width:220px;
}

}

@media (max-width:768px){

.services h2,
.pricing h2,
.about h2,
.location h2{
    font-size:1.8rem;
}

}

body{
    overflow-x:hidden;
}

@media (max-width:480px){

.service-grid,
.pricing-grid{
    grid-template-columns:1fr;
}

}

@media (max-width:768px){

.instagram img{
    margin:0 auto;
}

}