/* ============================================
   RESET & BASE STYLES
============================================ */

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html {
    scroll-padding-top: 50px;
}

body { 
    font-family: 'Georgia', serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #333;
    background: #f9f9f9;
    overflow-x: hidden;
}

h1, h2, h3 { 
    font-family: 'Helvetica Neue', sans-serif; 
}

/* ============================================
   SITE HEADER & BANNER
============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.site-banner {
    max-height: 150px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background: #ffffff;
}

/* ============================================
   NAVIGATION
============================================ */

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    height: 100px;
    width: auto;
}

/* Desktop Navigation */
.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
}

.nav-links a:hover {
    color: #000;
}

/* ============================================
   DROPDOWN MENU STYLES - DESKTOP
============================================ */

.dropdown {
    position: relative;
}

.dropdown-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
}

/* Desktop dropdown arrow - outside media query so it shows on all screens */
.dropdown-toggle::after {
    content: '▾';
    margin-left: 4px;
    font-size: 0.8em;
    transition: transform 0.3s;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    min-width: 280px;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 8px;
	text-align: center;
}

.dropdown-book {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 5px;
    transition: background 0.2s;
    margin-bottom: 0.5rem;
}

.dropdown-book img {
    width: 60px;
    height: 90px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.dropdown-book a {
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    flex: 1;
}

.book-subtitle {
    font-size: 0.8rem;
    color: #777;
    margin-top: 2px;
}

.dropdown-view-all {
    display: block;
    text-align: center;
    padding: 0.75rem;
    margin-top: 0.5rem;
    background: #f8f8f8;
    border-radius: 5px;
    color: #555;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-top: 1px solid #eee;
    transition: all 0.2s;
}

/* ============================================
   BUTTON STYLES
============================================ */

.btn {
    display: inline-block;
    background: #e63946;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover {
    background: #c1121f;
}

.btn-outline {
    background: transparent;
    border: 2px solid #e63946;
    color: #e63946;
}

.btn-outline:hover {
    background: #e63946;
    color: white;
}

/* ============================================
   BURGER MENU (MOBILE)
============================================ */

#nav-toggle {
    display: none;
}

.burger {
    display: none;
    cursor: pointer;
    z-index: 110;
    padding: 10px;
}

.burger div {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px;
    transition: all 0.3s ease;
}

/* ============================================
   HERO SLIDESHOW
============================================ */

.hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    max-height: 800px;
    max-width: 1200px;
    margin: 1rem auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Hide radio buttons */
.slide-radio {
    display: none;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

/* AUTO-SLIDE ANIMATION */
@keyframes autoSlide {
    0% { opacity: 0; z-index: 1; }
    5% { opacity: 1; z-index: 2; }
    28.33% { opacity: 1; z-index: 2; }
    33.33% { opacity: 0; z-index: 1; }
    100% { opacity: 0; z-index: 1; }
}

/* Apply animation to all slides */
.slide {
    animation: autoSlide 18s infinite;
}

/* Stagger animations - each slide starts 3s apart */
.slide:nth-of-type(1) {
    animation-delay: 0s;
}

.slide:nth-of-type(2) {
    animation-delay: 6s;
}

.slide:nth-of-type(3) {
    animation-delay: 12s;
}

/* Manual control: show correct slide when radio is checked */
#slide-radio-1:checked ~ .slide:nth-of-type(1),
#slide-radio-2:checked ~ .slide:nth-of-type(2),
#slide-radio-3:checked ~ .slide:nth-of-type(3) {
    opacity: 1;
    z-index: 2;
    animation: none;
}

/* Hide other slides when manually controlling */
#slide-radio-1:checked ~ .slide:not(:nth-of-type(1)),
#slide-radio-2:checked ~ .slide:not(:nth-of-type(2)),
#slide-radio-3:checked ~ .slide:not(:nth-of-type(3)) {
    opacity: 0;
    z-index: 1;
    animation: none;
}

/* Slide content styling */
.slide-content {
    width: 90%;
    max-width: 800px;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    transform: scale(1);
    transition: transform 0.3s ease;
    z-index: 3;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 2rem;
}

/* Arrow Navigation */
.slide-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    transform: translateY(-50%);
    z-index: 20;
}

.arrow {
    width: 50px;
    height: 50px;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 21;
}

.arrow:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.arrow::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 3px solid white;
    border-width: 3px 3px 0 0;
}

.arrow-prev::before {
    transform: rotate(-135deg);
    margin-right: 5px;
}

.arrow-next::before {
    transform: rotate(45deg);
    margin-left: 5px;
}

/* Show arrows during AUTO-PLAY - show only slide 1 arrows by default */
.hero:not(:has(#slide-radio-1:checked, #slide-radio-2:checked, #slide-radio-3:checked)) .slide-arrows .arrow-prev-1,
.hero:not(:has(#slide-radio-1:checked, #slide-radio-2:checked, #slide-radio-3:checked)) .slide-arrows .arrow-next-1 {
    display: flex;
}

/* Show arrows during MANUAL control */
#slide-radio-1:checked ~ .slide-arrows .arrow-prev-1,
#slide-radio-1:checked ~ .slide-arrows .arrow-next-1,
#slide-radio-2:checked ~ .slide-arrows .arrow-prev-2,
#slide-radio-2:checked ~ .slide-arrows .arrow-next-2,
#slide-radio-3:checked ~ .slide-arrows .arrow-prev-3,
#slide-radio-3:checked ~ .slide-arrows .arrow-next-3 {
    display: flex;
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 20;
}

.slide-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

/* Active indicator for manual control */
#slide-radio-1:checked ~ .slide-indicators label[for="slide-radio-1"],
#slide-radio-2:checked ~ .slide-indicators label[for="slide-radio-2"],
#slide-radio-3:checked ~ .slide-indicators label[for="slide-radio-3"] {
    background: white;
}

/* Auto-cycle indicator animation */
@keyframes indicatorPulse {
    0%, 100% { background: rgba(255, 255, 255, 0.5); }
    50% { background: white; }
}

/* Apply pulsing animation to indicators during auto-slide */
.hero:not(:has(#slide-radio-1:checked, #slide-radio-2:checked, #slide-radio-3:checked)) .slide-indicator:nth-child(1) {
    animation: indicatorPulse 18s infinite;
}

.hero:not(:has(#slide-radio-1:checked, #slide-radio-2:checked, #slide-radio-3:checked)) .slide-indicator:nth-child(2) {
    animation: indicatorPulse 18s infinite 6s;
}

.hero:not(:has(#slide-radio-1:checked, #slide-radio-2:checked, #slide-radio-3:checked)) .slide-indicator:nth-child(3) {
    animation: indicatorPulse 18s infinite 12s;
}

/* Fix for browsers that don't support :has() */
@supports not selector(:has(*)) {
    /* Fallback: show indicators for first slide by default */
    .slide-indicator:nth-child(1) {
        background: white;
    }
    /* Show arrows for slide 1 by default */
    .arrow-prev-1,
    .arrow-next-1 {
        display: flex;
    }
}

/* ============================================
   WORK IN PROGRESS SECTION
============================================ */

.title {
    text-align: center;
}

.wip {
    padding: 1rem 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.wheel {
    --percent: 65;
    --thickness: 10px;

    width: 100px;
    height: 100px;
    border-radius: 50%;

    background:
        conic-gradient(
            var(--color) calc(var(--percent) * 1%),
            #D3D3D3 0
        );

    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    position: relative;
}

/* Inner cutout to create ring */
.wheel::after {
    content: "";
    position: absolute;
    inset: var(--thickness);
    background: #fff;
    border-radius: 50%;
    z-index: 1;
}

/* Percentage text */
.wheel span {
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Color presets */
.red    { --color: #c0392b; }
.orange { --color: #e67e22; }
.green  { --color: #27ae60; }
.gold   { --color: #c9a44c; }

/* ============================================
   AUTHOR BIO SECTION
============================================ */

.bio {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

.fullbio {
	max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: justify;
}

/* Bio section with text wrapping */
.fullbio-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    overflow: auto; /* Clear the float */
}

.fullbio-container img {
    float: left;
    width: 250px; /* Adjust as needed */
    height: auto;
    margin: 20px 20px 15px 0; /* Top, Right, Bottom, Left */
    border-radius: 8px; /* Optional - adds rounded corners */
    shape-outside: margin-box; /* Creates better text flow */
}

.bio img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 3px solid #ddd;
}

/* ============================================
   BOOKS SECTION
============================================ */

.books {
    position: relative;
    padding: 6rem 2rem;
    text-align: center;
    background-image: url('images/fantasy_space.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: white;
    overflow: hidden;
}

.books::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.books h2, 
.book-grid,
.view-all {
    position: relative;
    z-index: 2;
}

.book-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.book-card {
    width: 200px;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
    color: #333;
}

.book-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.book-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.view-all {
    margin-top: 2rem;
}

/* ============================================
   NEWSLETTER SECTION
============================================ */

.newsletter {
    background: #f0f0f0;
    padding: 4rem 2rem;
    text-align: center;
	content: center;
}

.newsletter input {
    padding: 0.8rem;
    width: 300px;
    max-width: 100%;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
}

.newsletter button {
    padding: 0.8rem 1.5rem;
    background: #333;
    color: white;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

/* thin index page section */
.newsletter-form-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.newsletter-form-wrapper .seva-form.formkit-form {
    max-width: 500px;
    width: 100%;
}

/* ============================================
   FOOTER
============================================ */

footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1rem 0;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
}

/* ============================================
   CONTACT PAGE STYLES 
============================================ */
.contact-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-intro h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

.contact-intro p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.contact-form-container {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ============================================
   DESKTOP-ONLY STYLES (769px and above)
============================================ */

@media (min-width: 769px) {
    /* Desktop hover effects */
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
    }
    
    .dropdown:hover .dropdown-toggle::after {
        transform: rotate(180deg);
    }
    
    .dropdown-book:hover {
        background: #f5f5f5;
    }
    
    .dropdown-book a:hover {
        color: #e63946;
    }
    
    .dropdown-view-all:hover {
        background: #e63946;
        color: white;
    }
}

/* ============================================
   MOBILE RESPONSIVENESS (768px and below)
============================================ */

@media (max-width: 768px) {
	.site-banner {
    max-width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background: #ffffff;
}
	
	.fullbio-container img {
        float: none;
        width: 80%;
        max-width: 300px;
        margin: 0 auto 20px;
        display: block;
    }
	
    /* Hide desktop arrow and show mobile-specific arrow */
    .dropdown-toggle::after {
        content: '▾';
        position: absolute;
        right: 0;
        font-size: 0.9em;
        transition: transform 0.3s;
    }
    
    /* Mobile navigation */
    .nav-links {
        position: fixed;
        inset: 0 0 0 30%;
        background: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        gap: 0rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        padding: 2rem;
        padding-top: 4rem;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 100;
        overflow-y: auto;
    }
    
    .nav-links li {
        width: 100%;
        margin-bottom: 1rem;
    }

    .nav-links a:not(.dropdown-toggle) {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    /* Mobile dropdown toggle */
    .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 0;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
        position: relative;
    }
    
    .dropdown.active .dropdown-toggle::after {
        transform: rotate(180deg);
    }
    
    /* Mobile dropdown menu */
    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0 0 0 1rem;
        opacity: 1;
        visibility: visible;
        display: none;
        margin-top: 0.5rem;
        border-left: 2px solid #e63946;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    /* Mobile dropdown book items */
    .dropdown-book {
        padding: 0.5rem 0;
        margin-bottom: 0.25rem;
        border-bottom: none;
    }
    
    .dropdown-view-all {
        margin-top: 1rem;
        background: #f0f0f0;
        padding: 0.75rem;
        text-align: center;
        display: block;
    }
    
    .dropdown-book {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .dropdown-book a {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }
    
    .book-subtitle {
        font-size: 0.75rem;
        color: #777;
    }
    
    .dropdown-book img {
        width: 50px;
        height: 75px;
    }
    
    /* Burger menu */
    .burger {
        display: block;
        position: relative;
        z-index: 110;
        transition: opacity 0.3s ease;
        margin-left: auto;
    }
    
    /* When menu is open, hide the burger */
    #nav-toggle:checked ~ .burger {
        opacity: 0;
        pointer-events: none;
    }
    
    /* When checkbox is checked, show menu */
    #nav-toggle:checked ~ .nav-links {
        transform: translateX(0);
    }
    
    /* Overlay to close when clicking outside */
    #nav-toggle:checked ~ .nav-overlay {
        display: block;
    }
    
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.3);
        z-index: 99;
    }
    
    /* Close button (X) - hidden by default */
    .close-btn {
        display: none;
        position: fixed;
        top: 1.5rem;
        right: 1.5rem;
        width: 30px;
        height: 30px;
        z-index: 120;
        cursor: pointer;
    }
    
    .close-btn::before,
    .close-btn::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 3px;
        background: #333;
    }
    
    .close-btn::before {
        transform: rotate(45deg);
    }
    
    .close-btn::after {
        transform: rotate(-45deg);
    }
    
    /* When menu is open, show the close button */
    #nav-toggle:checked ~ .close-btn {
        display: block;
    }
    
    /* Hero adjustments */
    .hero {
        height: 50vh;
        min-height: 350px;
        margin: 0 20px;
    }
    
    .hero h1 { 
        font-size: 2rem; 
    }
    
    /* Books section adjustments */
    .book-grid { 
        flex-direction: column; 
        align-items: center; 
    }
    
    .book-card { 
        width: 80%; 
    }
    
    /* Arrow adjustments */
    .arrow {
        width: 40px;
        height: 40px;
    }
    
    .arrow::before {
        width: 15px;
        height: 15px;
        border-width: 2px 2px 0 0;
    }
    
    /* WIP section adjustments */
    .wip {
        padding: 1rem 1rem;
        gap: 1.5rem;
    }
    
    /* Banner adjustments */
    .site-banner {
        max-height: 100px;
    }
	
	/* CONTACT PAGE STYLES */
	.contact-section {
		padding: 40px 20px;
		max-width: 1200px;
		margin: 0 auto;
	}

	.contact-container {
		display: grid;
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.contact-intro h1 {
		font-size: 2.5rem;
		margin-bottom: 15px;
		color: #333;
		text-align: center;
	}

	.contact-intro p {
		margin-bottom: 15px;
		line-height: 1.6;
		color: #555;
	}

	.contact-form-container {
		background: #fff;
		padding: 30px;
		border-radius: 10px;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	}

	.contact-form {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}

	.form-row {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}

	@media (max-width: 768px) {
		.form-row {
			grid-template-columns: 1fr;
		}
	}

	.form-group {
		display: flex;
		flex-direction: column;
	}

	.form-group label {
		margin-bottom: 8px;
		font-weight: 600;
		color: #444;
	}

	.form-group input,
	.form-group select,
	.form-group textarea {
		padding: 12px 15px;
		border: 1px solid #ddd;
		border-radius: 6px;
		font-size: 1rem;
		font-family: inherit;
		transition: border-color 0.3s ease;
	}

	.form-group input:focus,
	.form-group select:focus,
	.form-group textarea:focus {
		outline: none;
		border-color: #4a6fa5;
		box-shadow: 0 0 0 2px rgba(74, 111, 165, 0.2);
	}

	.form-group textarea {
		resize: vertical;
		min-height: 150px;
	}

	.checkbox-group {
		flex-direction: row;
		align-items: center;
		gap: 10px;
	}

	.checkbox-group input {
		width: 18px;
		height: 18px;
	}

	.checkbox-group label {
		margin-bottom: 0;
		font-weight: normal;
	}

	.error-message {
		color: #e74c3c;
		font-size: 0.85rem;
		margin-top: 5px;
		min-height: 20px;
	}

	.form-submit {
		text-align: center;
		margin-top: 20px;
	}

	.btn-submit {
		background-color: #4a6fa5;
		color: white;
		padding: 14px 30px;
		font-size: 1.1rem;
		border: none;
		border-radius: 6px;
		cursor: pointer;
		transition: background-color 0.3s ease;
	}

	.btn-submit:hover {
		background-color: #3a5a8a;
	}

	.btn-submit:disabled {
		background-color: #cccccc;
		cursor: not-allowed;
	}

	.form-status {
		margin-top: 15px;
		padding: 10px;
		border-radius: 6px;
		font-weight: 600;
	}

	.form-status.success {
		background-color: #d4edda;
		color: #155724;
		border: 1px solid #c3e6cb;
	}

	.form-status.error {
		background-color: #f8d7da;
		color: #721c24;
		border: 1px solid #f5c6cb;
	}

	.contact-info {
		margin-top: 20px;
	}

	.info-card {
		background: #f8f9fa;
		padding: 25px;
		border-radius: 10px;
		border-left: 4px solid #4a6fa5;
	}

	.info-card h3 {
		margin-bottom: 15px;
		color: #333;
	}

	.contact-social {
		margin: 20px 0;
		justify-content: flex-start;
	}

	.contact-social .social-icon {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		background: #fff;
		border-radius: 50%;
		margin-right: 10px;
		text-decoration: none;
		font-size: 1.2rem;
		transition: transform 0.3s ease, background-color 0.3s ease;
	}

	.contact-social .social-icon:hover {
		transform: translateY(-3px);
		background-color: #eef2f7;
	}

	.disclaimer {
		font-size: 0.9rem;
		color: #666;
		font-style: italic;
		margin-top: 20px;
		padding-top: 20px;
		border-top: 1px solid #eee;
	}
}