/* Modern Enhanced Design for Dhivya Arts & Crafts */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #f37121;
    --primary-dark: #d65e1a;
    --primary-light: #ff8c42;
    --secondary-color: #25D366;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-light: #f9f9f9;
    --bg-white: #fff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    padding: 24px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    height: 70px;
    width: auto;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.tagline {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 8px;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.header-nav {
    background: var(--bg-white);
    border-bottom: 3px solid var(--primary-color);
}

.header-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-nav nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    flex: 1;
}

.header-nav a {
    padding: 18px 24px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    border-right: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.header-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.header-nav a:hover::before,
.header-nav a.active::before {
    width: 100%;
}

.header-nav a:hover,
.header-nav a.active {
    color: var(--primary-color);
    background: rgba(243, 113, 33, 0.05);
}

.mobile-menu-toggle {
    display: none;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 4px;
}

/* Banner Styles */
.banner {
    background: linear-gradient(135deg, #ff8c42 0%, #f37121 50%, #d65e1a 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)" /></svg>');
    opacity: 0.3;
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    animation: fadeInUp 0.8s ease;
}

.banner-subtitle {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.banner-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.cta-btn {
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    box-shadow: var(--shadow-md);
}

.cta-btn.primary {
    background: white;
    color: var(--primary-color);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.cta-btn.secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.achievement-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.15);
    padding: 16px 24px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.badge-icon {
    font-size: 32px;
}

.badge strong {
    display: block;
    font-size: 18px;
}

.badge small {
    display: block;
    font-size: 12px;
    opacity: 0.9;
}

/* Videos Section */
.videos-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 48px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.video-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.video-item.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.video-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.video-item h3 {
    font-family: 'Oswald', sans-serif;
    color: var(--text-dark);
    padding: 20px;
    font-size: 20px;
    background: linear-gradient(to bottom, white, var(--bg-light));
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-desc {
    padding: 16px 20px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.youtube-subscribe {
    text-align: center;
}

.youtube-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #FF0000;
    color: white;
    padding: 18px 36px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.youtube-btn:hover {
    background: #cc0000;
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.youtube-icon {
    font-size: 20px;
}

/* Main Content */
.main-content {
    padding: 80px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
}

.highlight-box {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 32px;
    box-shadow: var(--shadow-md);
}

.cta-heading {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 16px;
}

.phone-highlight {
    font-size: 24px;
    font-weight: 700;
}

.phone-highlight a {
    color: white;
    text-decoration: none;
    border-bottom: 2px solid white;
}

.lead-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 48px;
    text-align: center;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 64px;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.feature-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
}

.feature-card h4 {
    color: var(--text-dark);
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* About Section */
.about-section {
    margin-top: 64px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: start;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.image-caption {
    background: var(--primary-color);
    color: white;
    padding: 12px;
    text-align: center;
    font-weight: 600;
    margin-top: -4px;
    border-radius: 0 0 12px 12px;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-size: 36px;
}

.about-intro .lead {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.about-text p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.achievements {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
    margin: 24px 0;
    border-left: 4px solid var(--primary-color);
}

.achievements h3 {
    color: var(--text-dark);
    margin-bottom: 16px;
    font-size: 20px;
}

.achievement-list {
    list-style: none;
    padding: 0;
}

.achievement-list li {
    padding: 8px 0;
    font-size: 15px;
    color: var(--text-light);
}

.contact-note {
    background: #fff9f5;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin-top: 24px;
}

/* Free Tutorials Section */
.free-tutorials-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 16px;
    margin-top: 48px;
}

.free-tutorials-section h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.tutorial-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.tutorial-list li {
    background: rgba(255,255,255,0.15);
    padding: 16px;
    border-radius: 8px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-box {
    background: white;
    padding: 28px;
    margin-bottom: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.sidebar-box.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.sidebar-box:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.sidebar-box h3 {
    font-family: 'Oswald', sans-serif;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 22px;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 12px;
}

/* Reviews Box */
.rating {
    text-align: center;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.stars {
    color: #FFD700;
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.rating strong {
    font-size: 24px;
    color: var(--text-dark);
}

.review-count {
    color: var(--text-light);
    font-size: 14px;
}

.stars-small {
    color: #FFD700;
    font-size: 14px;
}

.review-item {
    border-top: 2px solid var(--border-color);
    padding-top: 16px;
    margin-top: 16px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.review-item.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.reviewer-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 15px;
}

.review-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    font-style: italic;
}

.review-link {
    display: block;
    text-align: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 16px;
    padding: 12px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
}

.review-link:hover {
    background: var(--primary-color);
    color: white;
}

/* Contact Box */
.contact-info {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px;
    background: var(--bg-light);
    border-radius: 8px;
}

.contact-item .icon {
    font-size: 24px;
}

.contact-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

.contact-btn {
    display: block;
    text-align: center;
    padding: 14px;
    text-decoration: none;
    margin-top: 12px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.phone-btn {
    background: #03E78B;
    color: white;
}

.phone-btn:hover {
    background: #02c474;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: #1fa855;
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
}

.instagram-btn:hover {
    opacity: 0.9;
}

/* Hours Box */
.hours-box p {
    margin-bottom: 12px;
    color: var(--text-light);
}

.hours-box .note {
    background: #fff9f5;
    padding: 12px;
    border-radius: 6px;
    font-size: 13px;
    margin-top: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: white;
    padding: 48px 0 24px;
    margin-top: 80px;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    height: 70px;
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    padding: 8px 16px;
    border-radius: 6px;
}

.footer-links a:hover {
    background: var(--primary-color);
}

.copyright {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 8px;
}

.made-with {
    font-size: 13px;
    color: #999;
}

/* Floating Contacts */
.floating-contacts {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

.float-btn:hover {
    transform: scale(1.15) rotate(5deg);
}

.float-btn.phone {
    background: #03E78B;
    animation-delay: 0s;
}

.float-btn.whatsapp {
    background: #25D366;
    animation-delay: 0.1s;
}

.float-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    animation-delay: 0.2s;
}

.float-btn.maps {
    background: #37AA66;
    animation-delay: 0.3s;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-section {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
    }
    
    .banner-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .header-nav nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: white;
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: var(--shadow-md);
    }
    
    .header-nav nav.active {
        display: flex;
    }
    
    .header-nav a {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .banner {
        padding: 48px 0;
    }
    
    .banner-title {
        font-size: 28px;
    }
    
    .banner-subtitle {
        font-size: 16px;
    }
    
    .achievement-badges {
        flex-direction: column;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .tutorial-list {
        grid-template-columns: 1fr;
    }
    
    .floating-contacts {
        bottom: 16px;
        right: 16px;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta-heading {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .banner-cta {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .logo {
        height: 60px;
    }
}
