/*Global style*/

body{
    margin:0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color:#f6f4ef;
    color:#111;
}

/* Header */

header{
    padding:40px 20px 20px 25px;
    text-align:center;
    background: #f7f7f7;
}

header h1{
    font-size: 44px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

header p{
    letter-spacing: 3px;
    font-size: 12px;
    color:#888;
}

/* Navagation */

nav{
    text-align: center;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
    background: white;
}

nav ul{
    display: flex;
    justify-content: center;
    padding:20px 0;
    display: flex;
    gap: 50px;
    list-style: none;
}

nav li{
    display:inline-block;
    margin:0 20px;
}

nav a{
    text-decoration: none;
    color: #333;
    font-size: 20px;
    letter-spacing:2px;
    font-weight: bold;
}

nav a:hover{
    color:#999;
}

/* MAin Section */

main{
    max-width: 1000px;
    margin: auto;
    padding: 60px 30px;
    text-align: center;
}

section{
    margin-top: 80px;
}

section h2{
    font-size:28px;
    letter-spacing:2px;
    font-weight: 400;
}

section p{
    max-width: 600px;
    margin: auto;
    line-height: 1.7;
    color: #444;
}

/* Footer */

footer{
    margin-top: 80px;
    padding: 40px;
    text-align: center;
    font-size: 12px;
    letter-spacing: 2px;
    color:#888;
    border-top: 1px solid #ddd;
}

.hero{
    width: 100%;
    position: relative;
    overflow: hidden;

    min-height: 90vh;
    padding-top: 80px;
    padding-bottom: 80px;
    display:flex;
    align-items: center;
    justify-content: center;

    color: white;
    text-align: center;
}

.hero-img{
    width: 100%;
   height: 200px;
   object-fit: cover;
   object-position:top;
}

.hero-text{
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    font-size: 36px;
    letter-spacing: 6px;
    text-transform: uppercase;
}


.hero-text h2{
    font-size: 28px;
    letter-spacing: 4px;
    font-weight: 300;
}


/* Skills list*/

.skills{
    list-style: none;
    padding: 0;
}

.skills li{
    margin: 10px 0;
    font-size: 16px;
}
#wrapper{
    max-width: 1800px;
    margin: auto;
}

.gallery{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:30px;
    max-width: 1100px;
    margin:40px auto;
}

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

.gallery img{
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

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

a:hover{
    text-decoration: underline;
}

.welcome{
    text-align: center;
    margin-top: -160px;
}

.home-section{
    display:flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin: 50px auto;
    max-width: 1000px;
}
.home-photo{
    width:550px;
    height:auto;
}
.welcome {
    max-width: 450px;
}
.welcome p{
    font-size:20px;
    line-height:1.6;
}

section{
    margin: top 60px;
}

.category-box{
    background: white;
    padding:20px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

h2{
    letter-spacing: 2px;
}
.contact-box{
    background: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
    margin: 40px auto;
    text-align: center;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}
.contact-box p{
    font-size: 18px;
    margin: 10px 0;
}

table{
    max-width: 900px;
    margin: 40px auto;
    border-collapse: collapse;
}

th{
    font-size: 18px;
    padding: 10px;
}

td{
    padding: 12px;
}

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