/* Reset some default styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Body styling */
body {
font-family: 'Alata', sans-serif;
background-color: #f5f5f5;
line-height: 1.6;
color: #333;
}
/* Headings use Prata */
h1, h2 {
font-family: 'Prata', serif;
}
#wrapper {
padding-left: 20px;
padding-right: 20px;
margin: 0 auto;
min-width: 800px;
min-height: 120vh;
}
/* Top bar */
header {
background-color: #FEB9ED;
padding: 30px 80px;
border-radius: 12px 12px 0 0;
display: flex;
justify-content: space-between;
align-items: center;
}
/* H1 */
header h1 {
font-family: 'Prata', serif;
font-size: 36px;
margin: 0;
color: #FFF;
}
/* Nav container (gray box) */
nav {
background-color: #CACACA;
padding: 15px 30px;
border-radius: 10px;
display: flex;
gap: 40px;
}
/* Nav text also uses Prata */
nav a {
font-family: 'Prata', serif;
color: #FFF;
text-decoration: none;
}
nav a:hover {
text-decoration: underline;
}
nav a.active {
font-weight: bold;
}
 
/* ── MAIN CONTENT AREA ── */
main {
background-color: #CACACA;
padding: 40px 50px 60px 50px;
}
 
/* ── HOME PAGE ── */
.home-heading {
font-family: 'Prata', serif;
font-size: 52px;
color: #fff;
margin-bottom: 30px;
}
.home-layout {
display: flex;
align-items: center;
gap: 40px;
}
.home-text {
flex: 1;
display: flex;
flex-direction: column;
gap: 30px;
}
.home-welcome {
font-family: 'Prata', serif;
font-size: 24px;
color: #fff;
font-weight: bold;
}
.home-bio {
font-family: 'Prata', serif;
font-size: 22px;
color: #fff;
font-weight: bold;
line-height: 1.7;
}
.home-img {
flex: 0 0 380px;
}
.home-img img {
width: 100%;
height: 520px;
object-fit: cover;
object-position: top;
border-radius: 10px;
display: block;
}
 
/* ── ABOUT PAGE ── */
.about-heading {
font-family: 'Prata', serif;
font-size: 52px;
color: #fff;
margin-bottom: 30px;
}
.about-layout {
display: flex;
align-items: center;
gap: 30px;
}
.about-img-left,
.about-img-right {
flex: 0 0 220px;
}
.about-img-left img,
.about-img-right img {
width: 100%;
height: 320px;
object-fit: cover;
border-radius: 6px;
display: block;
}
.about-text {
flex: 1;
font-family: 'Prata', serif;
font-size: 20px;
color: #fff;
line-height: 1.7;
font-weight: bold;
}
 
/* ── GALLERY PAGE ── */
.gallery-heading {
font-family: 'Prata', serif;
font-size: 52px;
color: #fff;
margin-bottom: 40px;
}
.gallery-layout {
display: flex;
gap: 20px;
align-items: flex-start;
}
.gallery-card {
flex: 1;
display: flex;
flex-direction: column;
gap: 14px;
}
.gallery-card img {
width: 100%;
height: 300px;
object-fit: cover;
border-radius: 20px;
display: block;
}
.gallery-card p {
font-family: 'Prata', serif;
font-size: 16px;
font-weight: bold;
color: #fff;
line-height: 1.4;
}
 
/* ── CONTACT PAGE ── */
.contact-section {
display: flex;
gap: 60px;
align-items: flex-start;
}
.contact-left {
flex: 1;
display: flex;
flex-direction: column;
gap: 24px;
}
.contact-heading {
font-family: 'Prata', serif;
font-size: 52px;
color: #fff;
}
.contact-subheading {
font-family: 'Prata', serif;
font-size: 36px;
color: #fff;
font-weight: normal;
}
.contact-img img {
width: 100%;
max-width: 480px;
height: auto;
border-radius: 10px;
display: block;
}
.contact-right {
flex: 0 0 560px;
}
.contact-box {
background-color: #fff;
border-radius: 16px;
padding: 40px 50px;
display: flex;
flex-direction: column;
gap: 36px;
}
.contact-row {
display: flex;
align-items: center;
gap: 20px;
}
.contact-label {
font-family: 'Prata', serif;
font-size: 26px;
color: #FEB9ED;
min-width: 130px;
}
.contact-arrow {
display: inline-flex;
align-items: center;
width: 80px;
height: 2px;
background-color: #888;
position: relative;
}
.contact-arrow::after {
content: '';
position: absolute;
right: -1px;
top: 50%;
transform: translateY(-50%);
border-left: 10px solid #888;
border-top: 6px solid transparent;
border-bottom: 6px solid transparent;
}
.contact-link {
font-family: 'Prata', serif;
font-size: 26px;
color: #FEB9ED;
text-decoration: underline;
}
.contact-link:hover {
opacity: 0.75;
}
 
/* ── LINKS PAGE ── */
.links-section {
display: flex;
gap: 60px;
align-items: flex-start;
}
.links-heading {
font-family: 'Prata', serif;
font-size: 52px;
color: #fff;
flex: 0 0 200px;
}
.links-box {
flex: 1;
background-color: #fff;
border-radius: 16px;
padding: 50px 60px;
display: flex;
flex-direction: column;
gap: 40px;
align-items: center;
}
.links-item {
font-family: 'Alata', sans-serif;
font-size: 22px;
color: #333;
text-decoration: underline;
text-align: center;
}
.links-item:hover {
color: #FEB9ED;
}
 
/* ── MEDIA PAGE ── */
.media-heading {
font-family: 'Prata', serif;
font-size: 52px;
color: #fff;
margin-bottom: 40px;
}
.media-layout {
display: flex;
gap: 40px;
align-items: stretch;
}
.media-box {
flex: 1;
background-color: #fff;
border-radius: 16px;
overflow: hidden;
height: 360px;
}
.media-box iframe {
display: block;
width: 100%;
height: 100%;
border: none;
border-radius: 16px;
}
 
/* ── RESUME PAGE ── */
.resume-section {
display: flex;
flex-direction: column;
gap: 30px;
}
.resume-heading {
font-family: 'Prata', serif;
font-size: 52px;
color: #fff;
}
.resume-link {
font-family: 'Prata', serif;
font-size: 22px;
color: #fff;
text-decoration: underline;
font-weight: bold;
}
.resume-link:hover {
opacity: 0.75;
}
 
/* Footer */
footer {
background-color: #FEB9ED;
text-align: center;
padding: 20px;
font-size: 14px;
color: #FFF;
border-radius: 12px;
margin-top: 20px;
}
 
@media (max-width: 768px) {
#wrapper {
margin: 20px;
padding: 20px;
min-width: unset;
}
.home-layout {
flex-direction: column;
}
.home-img {
flex: unset;
width: 100%;
}
.home-img img {
height: auto;
}
.about-layout {
flex-direction: column;
}
.about-img-left,
.about-img-right {
flex: unset;
width: 100%;
}
.about-img-left img,
.about-img-right img {
height: auto;
}
.gallery-layout {
flex-wrap: wrap;
}
.gallery-card {
flex: 0 0 calc(50% - 10px);
}
.contact-section {
flex-direction: column;
}
.contact-right {
flex: unset;
width: 100%;
}
.links-section {
flex-direction: column;
}
.links-heading {
flex: unset;
}
.links-box {
width: 100%;
padding: 30px 20px;
}
.media-layout {
flex-direction: column;
}
.media-box {
height: 250px;
}
}