/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #8B1A1A;
    background-image: url('../images/kilim-2.jpg');
    /* background-size: 1024px 1024px; */
    background-repeat: repeat;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px 16px;
    box-sizing: border-box;
}

.hero h1,
.site-logo-text,
.center-content h2,
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* ═══════════════════════════════════════
   BORDER FRAME (80px on all sides)
═══════════════════════════════════════ */
.site-border {
    padding: 20px 40px;
    min-height: 100vh;
}

/* ═══════════════════════════════════════
   SITE WRAPPER (white content area)
═══════════════════════════════════════ */
.site-wrapper {
    width: 100%;
    max-width: 1024px;
    min-height: calc(100vh - 80px);
    background-color: #E6D9CC;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
.site-header {
    width: 100%;
    aspect-ratio: 2 / 1;
    max-height: 160px;
	height: 160px;
    background-image: url('../images/background-bookmark.jpg');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.header-center {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-center img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.header-right {
    /* width: 30%; */
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: end;
}

.header-right img {
    width: 140px;
    height: 160px;
    object-fit: fill;
}

/* ═══════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════ */
.hero {
    text-align: center;
    padding: 0px 40px 40px;
}

.hero h1 {
    font-size: 3rem;
    color: #001589;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero .subtitle {
	font-family: 'Playfair Display', serif;
    color: #D1280D;
	font-size: 24px;
	font-weight: 700;
}

/* ═══════════════════════════════════════
   MAIN CONTENT
═══════════════════════════════════════ */
.site-main {
    flex: 1;
    padding: 40px;
}

/* ═══════════════════════════════════════
   SPONSOR COLUMNS
═══════════════════════════════════════ */
.sponsors {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.sponsor-slot {
    flex: 0 0 calc(25% - 12px);
    aspect-ratio: 4/3;
    /* background-color: #e8e0d0;
    border: 1px solid #d4c5b0; */
    overflow: hidden;
    text-decoration: none;
}

.sponsor-slot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: transform 0.2s ease;

}

.sponsor-slot:hover img {
    transform: scale(1.1);
}

.sponsor-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0a090;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ═══════════════════════════════════════
   CENTER TEXT COLUMN
═══════════════════════════════════════ */
.center-content {
    text-align: left;
    padding-bottom: 24px;
}

.center-content h2 {
    font-size: 1.6rem;
    /* color: #8B1A1A; */
    color: #D1280D;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.center-content p {
    line-height: 1.6;
    color: #3a3a3a;
    font-size: 1rem;
    margin-bottom: 16px;
}

.center-content ul, ol {
    padding-left: 40px;
    color: #3a3a3a;
    margin-bottom: 16px;
}

li {
    margin-bottom: 8px;
}

.quote {
    margin-bottom: 0px!important;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer {
    padding: 30px 40px;
    border-top: 1px solid #D9C8B4;
    background-color: #f5f0eb;
}

.footer-inner {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    opacity: 0.8;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: #D1280D;
    transition: fill 0.2s ease;
}

.social-icon:hover svg {
    fill: #A81F0A;
}

.footer-copy, .footer-text{
    font-size: 0.9rem;
    color: #544F49;
    text-align: center;
}

.footer-contact a {
    color: #D1280D;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: #A81F0A;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 900px) {

    body {
        padding: 16px;
    }

    .site-main {
        padding: 24px 16px!important;
    }

    .site-border {
        padding: 30px;
    }

    .sponsor-slot {
        width: calc(50% - 10px);
    }

    @media (max-width: 600px) {
        .sponsor-slot {
            flex: 0 0 calc(50% - 8px); /* 2 per row on mobile */
        }
    }

    .hero h1 {
        font-size: 2rem;
    }
	
	.site-footer {
    	padding: 24px 16px;
	}
}