@charset "UTF-8";
/* CSS Document */

/*  Fonts  */
@font-face {
    font-family: 'raleway-regular';
    src: url('../fonts/raleway-regular.eot');
    src: url('../fonts/raleway-regular.eot?#iefix') format('embedded-opentype'),
         url('../fonts/raleway-regular.woff') format('woff'),
         url('../fonts/raleway-regular.ttf') format('truetype'),
         url('../fonts/raleway-regular.svg#ralewayregular') format('svg');
    font-weight: normal;
    font-style: normal;

}


@font-face {
    font-family: 'raleway-bold';
    src: url('../fonts/raleway-bold.eot');
    src: url('../fonts/raleway-bold.eot?#iefix') format('embedded-opentype'),
         url('../fonts/raleway-bold.woff') format('woff'),
         url('../fonts/raleway-bold.ttf') format('truetype'),
         url('../fonts/raleway-bold.svg#ralewaybold') format('svg');
    font-weight: normal;
    font-style: normal;

}



@font-face {
    font-family: 'raleway-semibold';
    src: url('../fonts/raleway-semibold.eot');
    src: url('../fonts/raleway-semibold.eot?#iefix') format('embedded-opentype'),
         url('../fonts/raleway-semibold.woff') format('woff'),
         url('../fonts/raleway-semibold.ttf') format('truetype'),
         url('../fonts/raleway-semibold.svg#ralewaysemibold') format('svg');
    font-weight: normal;
    font-style: normal;

}

p {color:#4B4848;}

/* Hero Section */


.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #f0f0f0;
	margin-bottom: 20px;
}

/* Hero Images (stacked absolutely) */
.hero-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(60%);
}

.hero-image:first-child {
    opacity: 1;
}

/* Hero Text Overlay */
.hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    max-width: 90%;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
	color: white;
}

.hero-text p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    line-height: 1.4;
	background-color: grey;
}

.cta-button {
    margin: 10px;
    padding: 12px 30px;
    background-color: #333;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #444;
    transform: translateY(-2px);
}


/* Responsive Breakpoints */
@media (max-width: 992px) {
    .hero-text h1 { font-size: 3rem; }
    .hero-text p { font-size: 1.2rem; }
    .cta-button { padding: 10px 25px; font-size: 0.95rem; }
    .hero-prev, .hero-next { font-size: 2rem; }
}

@media (max-width: 600px) {
    .hero { height: 80vh; }
    .hero-text h1 { font-size: 2.2rem; }
    .hero-text p { font-size: 1rem; }
    .cta-button { padding: 8px 20px; font-size: 0.9rem; }
    .hero-prev, .hero-next { font-size: 1.8rem; }
}



/* About Section */
.about {
    padding: 50px 20px;
    background-color: #d9bda5;
    text-align: center;
	margin-bottom: 20px;
}

.about h2 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-top: 20px;
}

.cta-link {
    font-size: 1.1em;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
}

.cta-link:hover {
    color: #444;
}



/* Featured Works Section */
.featured-works {
    padding: 50px 20px;
    text-align: center;
	background-color: #e5cbba;
		margin-bottom: 20px;
}

.featured-works h2 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 20px;
}

.featured-works p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-top: 20px;
}


.work-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.work-item p {padding-bottom: 20px;}

.work-title {
    margin-top: 10px;
    font-size: 1.5em;
    font-weight: bold;
}

.cta-link {
    font-size: 1.1em;
    color: #333;
    text-decoration: underline;
    font-weight: bold;
    margin-top: 40px;
}

.cta-link:hover {
    color: #444;
}

/* Quote Section */
.quote {
    padding: 40px 20px;
    background-color: #967259;
    text-align: center;
    font-style: italic;
		margin-bottom: 20px;

}

.quote blockquote {
    font-size: 2em;
    line-height: 1.6;
	text-align: center;
    margin: 0;
    color: #333;
}

.quote p {
    margin-top: 10px;
    font-size: 1.1em;
    color: #555;
}

/* Process Section (Video/Image with Quote on Top) */
.process {
    padding: 50px 20px;
    background-color: #dbc1ac;
    text-align: center;
	margin-bottom: 20px;
}

.process-content blockquote {
    font-size: 1.5em;
    font-style: italic;
    color: #333;
    margin-bottom: 20px;
}

.process-media video {
    width: 100%;
    max-width: 900px;
    margin: 20px auto;
}

.process-media img {
    width: 100%;
    max-width: 900px;
    margin: 20px auto;
}

/* Latest News Section */
.latest-news {
    padding: 50px 20px;
    text-align: center;
    background-color: #ece0d1;
		margin-bottom: 20px;
}

.latest-news h2 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 20px;
}

.latest-news p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-top: 20px;
}

.latest-news a {
    color: #333;
        text-decoration: underline;
    font-weight: bold;
}

.latest-news a:hover {
    color: #444;
}

/* Contact/Commissions Section */
.contact {
    padding: 50px 20px ;
    text-align: center;
    background-color: #ece0d1;
		margin-bottom: 150px;
}

.contact h2 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 20px;
	color: white;
}

.contact p {
    font-size: 1.2em;
    line-height: 1.6;
     margin-top: 20px;
		color: black;
}


.contact a {
    color: #333;
        text-decoration: underline;
    font-weight: bold;	color: black;
}

.contact a:hover {
    color: darkgrey;
}
