body {
    font-family: 'Old Standard TT', serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #e3e3e3 0%, #cfcfcf 60%, #bdbdbd 100%);
    color: #23395d;
    min-height: 100vh;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, #e3e3e3 0%, #cfcfcf 60%, #bdbdbd 100%);
    color: #181d2f;
    text-align: left;
    padding: 32px 20px 24px 20px;
    box-shadow: 0 4px 12px rgba(180, 180, 180, 0.15);
    letter-spacing: 2px;
    font-family: 'Old Standard TT', serif;
    /* Add space for nav on the right */
}

.header-left {
    display: flex;
    flex-direction: column;
    padding-left: 100px;
    flex: 1;
}

.header-title {
    margin: 0;
    font-size: 2rem; /* Reduced from 2.7rem */
    font-weight: 800;
    color: #181d2f;
    font-family: 'Old Standard TT', serif;
    letter-spacing: 2px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.08), 0 1px 0 #fff;
}

.header-quote {
    margin-top: 12px;
    font-size: 1.25rem;
    font-style: italic;
    color: #4e5a6d;
    letter-spacing: 1px;
    font-family: 'Old Standard TT', serif;
}

.header-nav {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: center;
    flex: 1;
    margin: 0;
    /* Center in header */
}

.header-nav a {
    background: none;
    color: #181d2f;
    text-decoration: none;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 32px;
    border: none;
    transition: 
        background 0.2s, 
        color 0.2s, 
        box-shadow 0.2s, 
        border-color 0.2s,
        transform 0.15s;
    font-size: 1.15rem;
    box-shadow: none;
    letter-spacing: 1px;
    font-family: 'Old Standard TT', serif;
    margin-left: 0;
    margin-right: 0;
    outline: none;
    position: relative;
    overflow: hidden;
}
.header-nav a:hover, .header-nav a:focus {
    background: #e0f7fa;
    color: #2193b0;
    border: none;
    box-shadow: none;
    transform: translateY(-2px) scale(1.04);
    z-index: 1;
}

.gallery {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255,255,255,0.7);
    border-radius: 16px;
    margin: 32px auto;
    max-width: 1200px;
    box-shadow: 0 8px 24px rgba(33, 147, 176, 0.10);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(33, 147, 176, 0.18);
    margin: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
}
img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(33, 147, 176, 0.25);
}

footer {
    background: linear-gradient(90deg, #e3e3e3 0%, #cfcfcf 60%, #bdbdbd 100%);
    color: #fff;
    text-align: left;
    padding: 16px 10px;
    box-shadow: 0 -2px 8px rgba(180, 180, 180, 0.10);
    letter-spacing: 1px;
}

.about-me {
    text-align: center;
    padding: 48px 0 40px 0;
    background: none;
    border-radius: 0;
    margin: 32px 0;
    max-width: none;
    width: auto;
    box-shadow: none;
}

.about-me h2 {
    margin-top: 0;
    color: #23395d;
    font-size: 2.3rem;
    font-weight: 700;
    font-family: 'Old Standard TT', serif;
}

.about-me p {
    font-size: 1.35rem;
    color: #181d2f;
    margin-top: 18px;
    line-height: 1.7;
    text-align: center;
    margin-left: 0;
    width: 100%;
    max-width: 1050px;
    margin-right: auto;
    margin-left: auto;
    font-family: 'Old Standard TT', serif;
}

.about-photo {
    margin: 24px 0 18px 0;
    display: flex;
    justify-content: center;
    padding-left: 0;
}

.about-photo img {
    width: 100%;
    max-width: 1050px;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(33, 147, 176, 0.18);
    background: #fff;
    display: block;
    margin-left: 0;
}

/* Import Old Standard TT font */
@import url('https://fonts.googleapis.com/css2?family=Old+Standard+TT:wght@400;700&display=swap');

@media (max-width: 700px) {
  .header-nav {
    position: absolute;
    top: 80px;
    right: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(33,147,176,0.13);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 0;
    min-width: 160px;
    display: none;
    z-index: 100;
  }
  .header-nav.show {
    display: flex;
  }
  .header-nav a {
    width: 100%;
    padding: 16px 24px;
    font-size: 1.2rem;
    color: #181d2f;
    border-radius: 0;
    border: none;
    background: none;
    box-shadow: none;
    text-align: left;
  }
  .header-nav a:hover {
    background: #e0f7fa;
    color: #2193b0;
  }
  .header-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 2.2rem;
    color: #181d2f;
    cursor: pointer;
    margin-left: auto;
    margin-right: 16px;
    z-index: 101;
  }
}

@media (min-width: 701px) {
  .header-menu-btn {
    display: none;
  }
  .header-nav {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: none;
    box-shadow: none;
    min-width: unset;
    padding: 0;
    align-items: center;
    gap: 18px;
  }
}