
	:root {
		--color-primary: #8B5A8E;
		--color-secondary: #D4A5A5;
		--color-accent: #F4E4D4;
		--color-dark: #2C2C2C;
		--color-light: #FAF8F3;
		--color-text: #3E3E3E;
		--color-border: #E8D9CC;
		--color-error: #E8726F;
	}

	* {
		margin: 0;
		padding: 0;
		box-sizing: border-box;
	}

	html {
		scroll-behavior: smooth;
	}

	body {
		font-family: 'Georgia', 'Garamond', serif;
		color: var(--color-text);
		background-color: var(--color-light);
		line-height: 1.6;
	}

	/* Typography */
	h1 {
		font-size: 3rem;
		font-weight: 700;
		color: var(--color-primary);
		margin-bottom: 1rem;
		letter-spacing: -0.5px;
	}

	h2 {
		font-size: 2.2rem;
		font-weight: 700;
		color: var(--color-primary);
		margin-bottom: 1.5rem;
		position: relative;
		padding-bottom: 1rem;
	}

	h2::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 60px;
		height: 3px;
		background: linear-gradient(to right, var(--color-secondary), transparent);
	}

	h3 {
		font-size: 1.5rem;
		font-weight: 600;
		color: var(--color-primary);
		margin-bottom: 0.8rem;
	}

	p {
		font-size: 1.05rem;
		line-height: 1.8;
		margin-bottom: 1rem;
	}

	/* Navigation */
	nav {
		position: fixed;
		top: 0;
		width: 100%;
		background: rgba(255, 248, 243, 0.95);
		backdrop-filter: blur(10px);
		padding: 1.2rem 2rem;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
		z-index: 1000;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.logo-container {
		display: flex;
		align-items: center;
		gap: 0.5rem;
		text-decoration: none;
		font-size: 1.3rem;
		font-weight: 700;
		color: var(--color-primary);
	}

	.logo-symbol {
		font-size: 1.8rem;
	}

	nav ul {
		display: flex;
		list-style: none;
		gap: 2.5rem;
	}

	nav a {
		text-decoration: none;
		color: var(--color-text);
		font-weight: 500;
		font-size: 0.95rem;
		transition: color 0.3s ease;
		position: relative;
	}

	nav a::after {
		content: '';
		position: absolute;
		bottom: -5px;
		left: 0;
		width: 0;
		height: 2px;
		background: var(--color-secondary);
		transition: width 0.3s ease;
	}

	nav a:hover::after {
		width: 100%;
	}

	/* Hero Section */
	.hero {
		margin-top: 80px;
		padding: 6rem 2rem;
		background: linear-gradient(135deg, rgba(139, 90, 142, 0.08) 0%, rgba(212, 165, 165, 0.06) 100%);
		text-align: center;
	}

	.hero-content {
		max-width: 800px;
		margin: 0 auto;
	}

	.hero h1 {
		font-size: 3.5rem;
		margin-bottom: 1.5rem;
	}

	.hero-subtitle {
		font-size: 1.3rem;
		color: var(--color-secondary);
		font-style: italic;
		margin-bottom: 2.5rem;
		font-family: 'Georgia', serif;
	}

	.cta-button {
		display: inline-block;
		padding: 1rem 2.5rem;
		background: var(--color-primary);
		color: white;
		text-decoration: none;
		border-radius: 50px;
		font-weight: 600;
		transition: all 0.3s ease;
		border: 2px solid var(--color-primary);
		cursor: pointer;
		font-family: inherit;
		font-size: 1rem;
	}

	.cta-button:hover {
		background: white;
		color: var(--color-primary);
		box-shadow: 0 8px 25px rgba(139, 90, 142, 0.2);
		transform: translateY(-2px);
	}

	.cta-button.secondary {
		background: transparent;
		color: var(--color-primary);
		border: 2px solid var(--color-primary);
	}

	.cta-button.secondary:hover {
		background: var(--color-primary);
		color: white;
	}

	/* Section Styling */
	section {
		padding: 5rem 2rem;
		width: 100%;
	}

	section > * {
		max-width: 1200px;
		margin: 0 auto;
	}

	/* About Section */
	.about {
		background-color: white;
		margin: 0;
		width: 100%;
	}

	.about-content {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 4rem;
		align-items: center;
	}

	.about-text h2 {
		margin-bottom: 1.5rem;
	}

	.about-highlight {
		background: var(--color-accent);
		padding: 2rem;
		border-radius: 10px;
		margin-top: 1.5rem;
		border-left: 4px solid var(--color-secondary);
	}

	.about-highlight p {
		margin: 0;
		font-style: italic;
		color: var(--color-primary);
	}

	/* Featured Section */
	.featured {
		background: linear-gradient(135deg, rgba(212, 165, 165, 0.1) 0%, rgba(139, 90, 142, 0.05) 100%);
	}

	.featured-container {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 4rem;
		align-items: center;
	}

	.featured-book {
		text-align: center;
	}

	.book-cover {
		width: 100%;
		max-width: 320px;
		height: 450px;
		background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
		border-radius: 12px;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0 auto 2rem;
		box-shadow: 0 15px 40px rgba(139, 90, 142, 0.25);
		color: white;
		flex-direction: column;
		padding: 2rem;
		font-size: 1.1rem;
		font-weight: 500;
		text-align: center;
		line-height: 1.6;
	}

	.book-title {
		font-size: 1.8rem;
		margin-bottom: 1rem;
		font-weight: 700;
	}

	.book-author {
		font-size: 1.1rem;
		opacity: 0.95;
		font-style: italic;
	}

	.featured-info h2 {
		margin-bottom: 1.5rem;
	}

	.featured-info p {
		margin-bottom: 1rem;
	}

	.book-details {
		background: white;
		padding: 2rem;
		border-radius: 10px;
		margin-top: 2rem;
		border: 1px solid var(--color-border);
	}

	.book-detail {
		margin-bottom: 1rem;
		display: flex;
		justify-content: space-between;
	}

	.book-detail-label {
		font-weight: 600;
		color: var(--color-primary);
	}

	/* Submissions Section */
	.submissions {
		background-color: #FEF5F0;
		text-align: center;
	}

	.submissions-box {
		background: white;
		padding: 3rem 2rem;
		border-radius: 15px;
		border-top: 5px solid var(--color-secondary);
		max-width: 600px;
		margin: 0 auto;
		box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	}

	.submissions-box h2 {
		text-align: center;
		margin-bottom: 1.5rem;
	}

	.status-badge {
		display: inline-block;
		background: var(--color-error);
		color: white;
		padding: 0.6rem 1.5rem;
		border-radius: 50px;
		font-weight: 600;
		font-size: 0.9rem;
		margin-bottom: 1.5rem;
	}

	.submissions-box p {
		font-size: 1.1rem;
		margin-bottom: 1rem;
	}

	/* Contact Section */
	.contact {
		background-color: white;
		margin: 0;
	}

	.contact-content {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 4rem;
	}

	.contact-info h3 {
		margin-bottom: 1.5rem;
	}

	.contact-info p {
		margin-bottom: 1.5rem;
	}

	.contact-item {
		margin-bottom: 2rem;
		padding-bottom: 2rem;
		border-bottom: 1px solid var(--color-border);
	}

	.contact-item:last-child {
		border-bottom: none;
		margin-bottom: 0;
		padding-bottom: 0;
	}

	.contact-label {
		font-weight: 600;
		color: var(--color-primary);
		display: block;
		margin-bottom: 0.5rem;
	}

	/* Form Styling */
	.form-group {
		margin-bottom: 1.5rem;
	}

	.form-group label {
		display: block;
		margin-bottom: 0.5rem;
		font-weight: 600;
		color: var(--color-primary);
		font-size: 0.95rem;
	}

	.form-group input,
	.form-group textarea {
		width: 100%;
		padding: 0.9rem;
		border: 1px solid var(--color-border);
		border-radius: 8px;
		font-family: inherit;
		font-size: 1rem;
		transition: border-color 0.3s ease, box-shadow 0.3s ease;
		background-color: var(--color-light);
	}

	.form-group input:focus,
	.form-group textarea:focus {
		outline: none;
		border-color: var(--color-primary);
		box-shadow: 0 0 0 3px rgba(139, 90, 142, 0.1);
	}

	.form-group textarea {
		resize: vertical;
		min-height: 120px;
	}

	#submitBtn {
		width: 100%;
		padding: 1rem;
		background: var(--color-primary);
		color: white;
		border: none;
		border-radius: 8px;
		font-weight: 600;
		cursor: pointer;
		font-size: 1rem;
		transition: all 0.3s ease;
	}

	#submitBtn:hover {
		background: var(--color-primary);
		transform: translateY(-2px);
		box-shadow: 0 8px 20px rgba(139, 90, 142, 0.2);
	}

	.form-message {
		padding: 1rem;
		border-radius: 8px;
		margin-bottom: 1.5rem;
		display: none;
	}

	.form-message.success {
		background: rgba(76, 175, 80, 0.1);
		color: #2E7D32;
		border-left: 4px solid #4CAF50;
		display: block;
	}

	.form-message.error {
		background: rgba(232, 114, 111, 0.1);
		color: var(--color-error);
		border-left: 4px solid var(--color-error);
		display: block;
	}

	/* Footer */
	footer {
		background: var(--color-dark);
		color: white;
		padding: 3rem 2rem;
		text-align: center;
	}

	footer p, footer a {
		margin-bottom: 0.5rem;
		color: #CCC;
	text-decoration:none;
	}

	.footer-content {
		max-width: 1200px;
		margin: 0 auto;
	}

	.footer-brand {
		font-size: 1.3rem;
		font-weight: 700;
		margin-bottom: 1rem;
		color: var(--color-secondary);
	}

	.footer-divider {
		width: 50px;
		height: 2px;
		background: var(--color-secondary);
		margin: 1.5rem auto;
	}

	/* Responsive Design */
	@media (max-width: 768px) {
		nav ul {
			gap: 1.5rem;
			font-size: 0.85rem;
		}

		h1 {
			font-size: 2rem;
		}

		h2 {
			font-size: 1.6rem;
		}

		.hero {
			padding: 3rem 1rem;
			margin-top: 70px;
		}

		.hero h1 {
			font-size: 2.2rem;
		}

		section {
			padding: 3rem 1rem;
		}

		.about-content,
		.featured-container,
		.contact-content {
			grid-template-columns: 1fr;
			gap: 2rem;
		}

		.book-cover {
			max-width: 250px;
			height: 350px;
		}
	}