:root {
    --primary: #c41e3a; /* Deep Red/Magenta for fashion feel */
    --secondary: #1a1a1a;
    --accent: #d4af37; /* Gold for elegance */
    --text-main: #333333;
    --text-light: #666666;
    --bg-light: #ffffff;
    --bg-cream: #faf7f2;
    --border-color: #e0e0e0;
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 48px;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.top-accent-bar {
    height: 8px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    width: 100%;
}

.placeholder-image.square {
    aspect-ratio: 1/1;
}

.enroll-box {
    padding: 20px;
    border: 2px dashed var(--accent);
    border-radius: 12px;
    margin-top: var(--spacing-sm);
}

.enroll-title {
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.enroll-text {
    font-size: 0.9rem;
    color: var(--text-light);
}

.footer-title {
    color: var(--accent);
    margin-bottom: 15px;
}

.copyright {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

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

body {
    font-family: 'Playfair Display', serif;
    background-color: var(--bg-cream);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

p {
    font-family: 'Inter', sans-serif;
}

.poster-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    box-shadow: var(--shadow);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Background Texture Effects */
.poster-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-cream);
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
        url('https://images.unsplash.com/photo-1558769132-cb1aea458c5e?auto=format&fit=crop&q=80&w=1500');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.poster-container > * {
    position: relative;
    z-index: 1;
}

.fashion-bg-element {
    position: absolute;
    width: 300px;
    height: 400px;
    background: url('https://images.unsplash.com/photo-1537832816519-689ad163238b?auto=format&fit=crop&q=80&w=800') center/cover;
    opacity: 0.1;
    top: 20%;
    right: -50px;
    transform: rotate(15deg);
    border-radius: 20px;
    pointer-events: none;
}

.fashion-bg-element.left {
    top: 60%;
    left: -80px;
    transform: rotate(-10deg);
    background-image: url('https://images.unsplash.com/photo-1445205170230-053b83016050?auto=format&fit=crop&q=80&w=800');
}

/* Header Section */
header {
    padding: var(--spacing-xl) var(--spacing-lg);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.college-logo {
    width: 120px;
    height: auto;
    margin-bottom: var(--spacing-md);
}

.college-name {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
    font-weight: 900;
}

.affiliation {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-top: var(--spacing-xs);
}

/* Hero Section */
.hero {
    padding: var(--spacing-xl) var(--spacing-lg);
    background-color: var(--secondary);
    color: white;
    text-align: center;
    position: relative;
}

.hero h2 {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: var(--spacing-sm);
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(to right, #ffffff, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Main Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-md) var(--spacing-xl);
    padding: var(--spacing-lg);
}

.about-section {
    position: relative;
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--accent);
}

.about-text {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
}

/* Course Details Pills */
.details-bar {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.detail-item {
    background: var(--bg-cream);
    padding: 12px 24px;
    border-radius: 50px;
    border-left: 4px solid var(--primary);
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: bold;
}

.detail-value {
    font-weight: bold;
    color: var(--secondary);
}

/* Lists Styles */
.lists-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

ul {
    list-style: none;
}

li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    font-family: 'Inter', sans-serif;
}

li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Footer & Contact */
footer {
    margin-top: auto;
    background: var(--secondary);
    color: white;
    padding: var(--spacing-xl) var(--spacing-lg);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
}

.contact-info {
    flex: 1;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.whatsapp-channels {
    flex: 1;
    text-align: right;
}

.whatsapp-btn {
    display: inline-block;
    background: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    font-size: 0.9rem;
    transition: transform 0.2s;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
}

.placeholder-image {
    background: #f5f5f5;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.placeholder-image::after {
    content: '';
    color: #999;
    font-style: italic;
}

.img-sketch {
    background-image: url('https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?auto=format&fit=crop&q=80&w=800');
    background-size: cover;
    background-position: center;
}

.img-fabrics {
    background-image: url('https://images.unsplash.com/photo-1490481651871-ab68de25d43d?auto=format&fit=crop&q=80&w=800');
    background-size: cover;
    background-position: center;
    aspect-ratio: 1/1;
}

.accent-line {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: var(--spacing-md) auto;
}

/* Responsive */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .lists-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-channels {
        text-align: center;
    }
}
