:root {
    --background-color: #fff8f0; /* Creamy white */
    --text-color: #4a4a4a; /* Soft black */
    --primary-color: #ff6f61; /* Coral */
    --primary-light: #ff9e8f;
    --secondary-color: #6b5b95; /* Muted purple */
    --light-gray: #f2e9e4; /* Light beige */
    --dark-gray: #c9ada7; /* Dusty rose */
    --border-color: #e0dcd7;
    --card-background: #ffffff;
    --gradient-start: #ff6f61;
    --gradient-end: #ff9e8f;
    --icon-color: #4a4a4a;
}

html.dark-mode {
    --background-color: #2c2c2c;
    --text-color: #f2e9e4;
    --primary-color: #ff8c7a;
    --primary-light: #ffb3a7;
    --secondary-color: #a08db8;
    --light-gray: #3a3a3a;
    --dark-gray: #5c5c5c;
    --border-color: #4a4a4a;
    --card-background: #333333;
    --gradient-start: #ff8c7a;
    --gradient-end: #ffb3a7;
    --icon-color: #f2e9e4;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.8;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.container {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    padding: 10px 0;
}

header {
    background-color: transparent;
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

header .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

header h1 {
    display: none; /* Removed for a more personal feel */
}

nav {
    display: flex;
    align-items: center;
}

nav button {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9em;
    margin-left: 10px;
    transition: all 0.3s ease;
}

nav button:hover {
    opacity: 0.8;
}

#theme-toggle {
    background: var(--dark-gray);
    padding: 8px; /* Adjust padding for icon */
    display: flex;
    align-items: center;
    justify-content: center;
}

#theme-toggle svg {
    width: 20px;
    height: 20px;
    stroke: var(--icon-color);
    transition: stroke 0.5s ease;
}

/* Hide/show icons based on theme */
html.dark-mode .sun-icon {
    display: block;
}

html.dark-mode .moon-icon {
    display: none;
}

html:not(.dark-mode) .sun-icon {
    display: none;
}

html:not(.dark-mode) .moon-icon {
    display: block;
}


#language-toggle {
    background: var(--dark-gray);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9em;
    margin-left: 10px;
    transition: all 0.3s ease;
}

#language-toggle:hover {
    opacity: 0.8;
}


main section {
    padding: 30px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

main section:last-of-type {
    border-bottom: none;
}

.hero {
    background: none;
    padding: 0 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.8em;
    color: var(--primary-color);
}

.hero p {
    font-size: 1.2em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.call-to-action {
    display: none;
}

.about h3, .qa-section h3, .contact h3, .photo-carousel-section h3 {
    font-size: 2em;
    margin-bottom: 5px;
    color: var(--secondary-color);
    font-style: italic;
}

.carousel-container {
    position: relative;
    max-width: 600px;
    margin: auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.carousel-slide {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    cursor: pointer; /* Indicate image is clickable */
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 1.5em;
    z-index: 100;
}

.prev-btn {
    left: 10px;
    border-radius: 50%;
}

.next-btn {
    right: 10px;
    border-radius: 50%;
}

.qa-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: left;
    margin-top: 30px;
}

.qa-item {
    background-color: var(--card-background);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--primary-color);
}

.qa-item h4 {
    font-size: 1.2em;
    color: var(--primary-color);
    margin: 0 0 10px 0;
}

.qa-item p {
    font-size: 1em;
    margin: 0;
}

footer {
    background-color: transparent;
    color: var(--text-color);
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
    font-size: 0.9em;
}
