:root {

--cream: #EEECE8;

--sage: #8FA67D;

--brown: #BBAA97;

--text: #603503;

}


* {

margin:0;

padding:0;

box-sizing:border-box;

}



body {

font-family: Arial, sans-serif;

background:var(--cream);

color:var(--text);

}



h1,
h2,
h3 {

font-family: Georgia, serif;

font-weight:400;

}
img {

display:block;

max-width:100%;

}
.photo-grid img {

transition:transform .4s ease;

}


.photo-grid img:hover {

transform:scale(1.03);

}



.hero {

height:100vh;

background:

linear-gradient(
rgba(60,50,40,.35),
rgba(60,50,40,.35)
),

url("../images/hero.jpg");

background-size:cover;

background-position:center;

color:white;

}


<div id="header"></div>

display:flex;

justify-content:space-between;

align-items:center;

padding:35px 8%;

}



.logo {

font-family:Georgia, serif;

font-size:28px;

}



nav ul {

display:flex;

gap:30px;

list-style:none;

}



nav a {

color:white;

text-decoration:none;

}



.hero-content {

height:80%;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

text-align:center;

padding:20px;

}



.hero-content h1 {

font-size:55px;

max-width:850px;

}



.hero-content p {

font-size:20px;

max-width:650px;

margin:25px 0;

line-height:1.7;

}



.button {

background:var(--sage);

padding:16px 35px;

border-radius:40px;

color:white;

text-decoration:none;

}



.welcome {

padding:90px 10%;

text-align:center;

}



.welcome p {

max-width:750px;

margin:25px auto;

line-height:1.8;

}



.featured {

padding:60px 8%;

text-align:center;

}



.cards {

display:flex;

gap:30px;

margin-top:40px;

}



.card {

background:white;

padding-bottom:25px;

flex:1;

}



.card img {

width:100%;

height:350px;

object-fit:cover;

}



.card h3 {

margin:20px;

}



.card p {

padding:0 20px;

line-height:1.6;

}



footer {

padding:40px;

background:var(--brown);

color:white;

text-align:center;

}
/* ABOUT PAGE */


.inner-nav {

background:var(--cream);

color:var(--text);

}


.inner-nav a {

color:var(--text);

}



.about-hero {

display:flex;

align-items:center;

gap:60px;

padding:100px 10%;

}



.about-image {

flex:1;

}



.about-image img {

width:100%;

border-radius:20px;

}



.about-text {

flex:1;

}



.about-text p {

line-height:1.8;

margin:20px 0;

}



.experience {

padding:80px 10%;

text-align:center;

}



.experience-grid {

display:flex;

gap:30px;

margin-top:50px;

}



.experience-grid div {

background:white;

padding:35px;

border-radius:15px;

flex:1;

}


.experience-grid p {

line-height:1.7;

margin-top:15px;

}
/* PORTFOLIO */


.portfolio-intro {

text-align:center;

padding:80px 10%;

}


.portfolio-intro p {

max-width:700px;

margin:25px auto;

line-height:1.8;

}



.portfolio-cards {

display:flex;

gap:30px;

padding:40px 8% 100px;

}



.portfolio-card {

background:white;

text-decoration:none;

color:var(--text);

flex:1;

border-radius:20px;

overflow:hidden;

transition:.3s;

}



.portfolio-card:hover {

transform:translateY(-8px);

}



.portfolio-card img {

width:100%;

height:450px;

object-fit:cover;

}



.portfolio-card h2 {

padding:25px 25px 10px;

}



.portfolio-card p {

padding:0 25px 30px;

line-height:1.6;

}
/* GALLERY PAGES */


.gallery-header {

text-align:center;

padding:90px 10% 50px;

}


.gallery-header h1 {

font-size:55px;

margin-bottom:25px;

}



.gallery-header p {

max-width:700px;

margin:auto;

line-height:1.8;

}



.back-button {

display:inline-block;

margin-top:30px;

color:var(--sage);

text-decoration:none;

}



.photo-grid {

display:grid;

grid-template-columns:repeat(3,1fr);

gap:20px;

padding:40px 8% 100px;

}



.photo-grid img {

width:100%;

height:450px;

object-fit:cover;

border-radius:15px;

}
/* MOBILE RESPONSIVE DESIGN */


@media (max-width: 900px) {


nav {

flex-direction:column;

gap:20px;

padding:25px;

}


nav ul {

gap:15px;

flex-wrap:wrap;

justify-content:center;

}


.logo {

text-align:center;

}



.hero-content h1 {

font-size:40px;

}



.hero-content p {

font-size:18px;

}



.about-hero {

flex-direction:column;

padding:60px 8%;

}



.about-text {

text-align:center;

}



.experience-grid {

flex-direction:column;

}



.portfolio-cards {

flex-direction:column;

}



.portfolio-card img {

height:350px;

}



.photo-grid {

grid-template-columns:repeat(2,1fr);

padding:30px 5%;

}



.photo-grid img {

height:300px;

}


}
.services,
.process-grid {

grid-template-columns:1fr;

}



@media (max-width: 600px) {


nav ul {

flex-direction:column;

align-items:center;

}



.hero {

height:90vh;

}


.hero-content h1 {

font-size:34px;

}


.photo-grid {

grid-template-columns:1fr;

}


.photo-grid img {

height:auto;

}


.gallery-header h1 {

font-size:40px;

}


}
.included-grid {

grid-template-columns:1fr;

}
.testimonial-grid {

grid-template-columns:1fr;

}
/* INVESTMENT PAGE */


.investment-header {

text-align:center;

padding:90px 10% 50px;

}



.investment-header p {

max-width:750px;

margin:25px auto;

line-height:1.8;

}



.services {

display:grid;

grid-template-columns:repeat(2,1fr);

gap:30px;

padding:50px 8%;

}



.service-card {

background:white;

padding:40px;

border-radius:20px;

text-align:center;

}



.service-card h2 {

margin-bottom:20px;

}



.service-card p {

line-height:1.7;

}



.price {

color:var(--sage);

font-weight:bold;

margin-top:25px;

}



.process {

padding:90px 8%;

text-align:center;

}



.process-grid {

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

margin-top:50px;

}



.process-grid div {

background:white;

padding:30px;

border-radius:20px;

}



.process-grid p {

line-height:1.7;

margin-top:15px;

}



.investment-cta {

padding:80px 20px;

text-align:center;

}
.included {

padding:80px 8%;

text-align:center;

}


.included-grid {

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

margin-top:40px;

}


.included-grid div {

background:white;

padding:30px;

border-radius:20px;

}


.included-grid p {

line-height:1.7;

margin-top:15px;

}
/* CONTACT PAGE */


.contact-header {

text-align:center;

padding:90px 10% 40px;

}



.contact-header p {

max-width:700px;

margin:25px auto;

line-height:1.8;

}



.contact-form {

max-width:700px;

margin:0 auto;

padding:40px 8% 100px;

}



.contact-form form {

display:flex;

flex-direction:column;

gap:15px;

}



.contact-form label {

font-weight:bold;

margin-top:15px;

}



.contact-form input,
.contact-form textarea,
.contact-form select {

padding:16px;

border:1px solid #ddd;

border-radius:10px;

font-size:16px;

font-family:inherit;

}



.contact-form button {

background:var(--sage);

color:white;

border:none;

padding:18px;

border-radius:40px;

font-size:16px;

cursor:pointer;

margin-top:20px;

}
/* TESTIMONIALS */


.testimonials {

padding:90px 8%;

text-align:center;

background:#EFE7DC;

}



.testimonial-grid {

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:50px;

}



.testimonial {

background:white;

padding:35px;

border-radius:20px;

}



.testimonial p {

line-height:1.8;

font-style:italic;

}



.testimonial h3 {

margin-top:25px;

font-size:18px;

}
.site-footer {

background:var(--brown);

color:white;

text-align:center;

padding:60px 20px;

}


.site-footer a {

color:white;

margin:10px;

text-decoration:none;

}


.logo a {

color:inherit;

text-decoration:none;

}
.logo img{
    height:70px;
    width:auto;
}