/* css sheet used to style a website,controlling colors,fonts and the layout. Linking one style sheet makes it easy to keep design consistent and to easily make changes */
body {
    margin: 0;
    background-color: #cfe3b4; /* light green background */
    font-family: "Niagara Solid";
	font-size:40px;
}


@font-face {
    font-family: 'Prata';
    src: url('Prata-Regular.ttf');
}

/*  NAV BAR */
header {
    background-color: #8b1e3f; 
    padding: 15px 40px;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-links li:before {
    content: "•";
    color: #cfe3b4;   /* green dot */
    margin-right: 8px;
}
/* Navigation links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #cfe3b4;
}

/*  HOME PAGE  */
.container {
    padding: 40px;
    text-align: center;
}

.container img {
    width: 80%;
    max-width: 1000px;
}

/* ABOUT PAGE  */
.about-container {
    max-width: 800px;
    margin: auto;
    padding: 60px;
    min-height: 100vh;

    color: #8b1e3f;
	font-size: 22px;
    text-align: center;
    font-family: 'Prata', serif; /* only affects About page */
}

/* Quote styling */
.about-container blockquote {
    font-style: italic;
    margin-bottom: 30px;
}

/* Accordion */
details {
    margin-top: 20px;
}

summary {
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
}
h1{
	color:#8b1e3f;
	text-align: center;
}
h2{
	color:#8b1e3f;
	text-align: center;
}
footer{
 color: #cfe3b4;
 background: #8b1e3f; 
 text-align: center;
 padding: 20px; /* added to homepage for website consistebncy */
	 }
.work-container{
    background: #8b1e3f;
    width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    column-gap: 5%;
    padding: 40px;
}

.card{
	color:#8b1e3f;
	background: #cfe3b4;
	text-align: center;
	flex:0 0 21.25%;
	margin-bottom: 5%;
}
img{     width: 100%;
 padding-top: 20px;
}
.portfolio-video{
	padding-top: 20px;
    display: flex;
    justify-content: center;
    margin: 0 auto; /* Ensures the container itself is centered */
}
/* CONTACT PAGE */
.contact-container {
    background-color: #cfe3b4;
    min-height: 100vh;
    padding: 60px;
    text-align: center;
}

.contact-box {
    background-color: #8b1e3f;
    color: #cfe3b4;
    padding: 30px;
    max-width: 500px;
    margin: 40px auto;
    border-radius: 10px;
}

.contact-box p {
    margin: 10px 0;
}
