D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
self
/
root
/
proc
/
self
/
root
/
home
/
etb1lp46s9ed
/
www
/
kudlaastraproductions.com
/
css
/
Filename :
style.css
back
Copy
/* Global Styles */ :root { --primary-color: #d4af37; /* Gold */ --secondary-color: #f9f9f9; /* Light Grey */ --bg-color: #ffffff; /* White */ --text-color: #333333; /* Dark Grey */ --text-muted: #666666; --card-bg: #ffffff; --font-heading: 'Playfair Display', serif; --font-body: 'Roboto', sans-serif; } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: var(--font-body); background-color: var(--bg-color); color: var(--text-color); line-height: 1.6; overflow-x: hidden; } a { text-decoration: none; color: inherit; transition: color 0.3s ease; } ul { list-style: none; } img { max-width: 100%; display: block; } /* Typography */ h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--primary-color); margin-bottom: 1rem; } .section-title { font-size: 2.5rem; text-align: center; margin-bottom: 3rem; position: relative; display: inline-block; left: 50%; transform: translateX(-50%); } .section-title::after { content: ''; display: block; width: 60px; height: 3px; background-color: var(--primary-color); margin: 10px auto 0; } /* Buttons */ .btn-primary { display: inline-block; background-color: var(--primary-color); color: #fff; padding: 12px 30px; font-weight: 500; border: none; border-radius: 4px; cursor: pointer; transition: background-color 0.3s ease, transform 0.2s ease; } .btn-primary:hover { background-color: #b3922b; transform: translateY(-2px); } /* Navbar */ .navbar { background-color: #ffffff; padding: 1rem 0; position: fixed; width: 100%; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); } .navbar .container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 20px; } .logo { display: flex; align-items: center; } .logo img { height: 60px; /* Adjust based on header size */ width: auto; mix-blend-mode: multiply; /* Makes white background transparent */ } .logo-text { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--text-color); margin-left: 15px; letter-spacing: 0.5px; } .nav-menu { display: flex; align-items: center; } .nav-menu li { margin-left: 30px; position: relative; } .nav-link { font-weight: 500; font-size: 1rem; color: var(--text-color); } .nav-link:hover { color: var(--primary-color); } /* Dropdown */ .dropdown-content { display: none; position: absolute; background-color: #ffffff; min-width: 200px; box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); z-index: 1; top: 100%; left: 0; border-radius: 4px; } .dropdown-content a { color: var(--text-color); padding: 12px 16px; text-decoration: none; display: block; font-size: 0.9rem; } .dropdown-content a:hover { background-color: #f0f0f0; color: var(--primary-color); } .dropdown:hover .dropdown-content { display: block; } /* Mobile Menu */ .menu-toggle { display: none; cursor: pointer; } .bar { display: block; width: 25px; height: 3px; margin: 5px auto; transition: all 0.3s ease-in-out; background-color: var(--text-color); } /* Hero Section */ .hero { height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; padding-top: 80px; overflow: hidden; } .hero-slider { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; } .slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s ease-in-out; } .slide.active { opacity: 1; } .slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background-color: rgba(255, 255, 255, 0.2); border: 1px solid rgba(255, 255, 255, 0.5); color: #fff; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; z-index: 10; display: flex; justify-content: center; align-items: center; font-size: 1.2rem; transition: all 0.3s ease; backdrop-filter: blur(5px); } .slider-btn:hover { background-color: rgba(255, 255, 255, 0.4); transform: translateY(-50%) scale(1.1); } .prev-btn { left: 20px; } .next-btn { right: 20px; } .slide-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; filter: blur(8px) brightness(0.6); transform: scale(1.1); /* Prevent blur edges */ } .slide-inner { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: contain; background-position: center; background-repeat: no-repeat; z-index: 1; } .hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); z-index: 1; } .hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 20px; } .hero h1 { font-size: 4rem; margin-bottom: 1rem; color: #fff; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); } .hero p { font-size: 1.5rem; margin-bottom: 2rem; color: #f0f0f0; } /* Sections */ .section { padding: 80px 0; } .bg-light { background-color: var(--secondary-color); } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } /* About Section */ .about-content { display: flex; align-items: center; gap: 50px; } .about-text { flex: 1; } .about-text p { margin-bottom: 1.5rem; font-size: 1.1rem; color: var(--text-muted); } .about-image { flex: 1; } .about-image img { border-radius: 8px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); border: 2px solid var(--primary-color); } /* Mission & Vision Section */ .mission-vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; } .mv-card { background: #fff; padding: 40px; border-radius: 8px; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); text-align: center; border-top: 4px solid var(--primary-color); } .mv-card i { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 20px; } .mv-card h3 { margin-bottom: 15px; } /* Services Section */ .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; } .service-card { background-color: var(--card-bg); padding: 40px 30px; border-radius: 8px; text-align: center; transition: transform 0.3s ease; border-bottom: 3px solid transparent; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); } .service-card:hover { transform: translateY(-10px); border-bottom-color: var(--primary-color); } .service-card i { font-size: 3rem; color: var(--primary-color); margin-bottom: 20px; } .service-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--text-color); } .service-card p { color: var(--text-muted); } /* Why Choose Us */ .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; } .feature-item { text-align: center; } .feature-item img { width: 100%; height: 250px; object-fit: cover; border-radius: 8px; margin-bottom: 20px; filter: brightness(1); transition: transform 0.3s ease; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); } .feature-item:hover img { transform: scale(1.02); } .feature-item h3 { font-size: 1.5rem; margin-bottom: 10px; } .feature-item p { color: var(--text-muted); } /* Contact Section */ .contact-wrapper { display: flex; flex-wrap: wrap; gap: 50px; } .contact-info { flex: 1; min-width: 300px; } .info-item { display: flex; align-items: flex-start; margin-bottom: 30px; } .info-item i { font-size: 1.5rem; color: var(--primary-color); margin-right: 20px; margin-top: 5px; } .info-item h4 { font-size: 1.2rem; margin-bottom: 5px; color: var(--text-color); } .info-item p { color: var(--text-muted); } .contact-form { flex: 1; min-width: 300px; background-color: #fff; padding: 40px; border-radius: 8px; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); } .form-group { margin-bottom: 20px; } .form-group input, .form-group textarea { width: 100%; padding: 12px; background-color: #f9f9f9; border: 1px solid #ddd; border-radius: 4px; color: var(--text-color); font-family: var(--font-body); } .form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-color); background-color: #fff; } /* Checkbox Styles */ .checkbox-group { display: flex; align-items: center; gap: 10px; } .checkbox-group input[type="checkbox"] { width: auto; cursor: pointer; } .checkbox-group label { font-size: 0.9rem; color: var(--text-muted); cursor: pointer; } /* Map Section */ .map-container { width: 100%; margin-top: 50px; border-radius: 8px; overflow: hidden; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); border: 1px solid #ddd; } /* Footer */ footer { background-color: #111; padding: 40px 0; text-align: center; color: #fff; } footer p { color: #888; margin-bottom: 15px; } .social-links a { color: #888; font-size: 1.2rem; margin: 0 10px; transition: color 0.3s ease; } .social-links a:hover { color: var(--primary-color); } /* Responsive */ @media (max-width: 768px) { .menu-toggle { display: block; } .menu-toggle.active .bar:nth-child(2) { opacity: 0; } .menu-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); } .menu-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); } .nav-menu { position: fixed; left: -100%; top: 70px; flex-direction: column; background-color: #fff; width: 100%; text-align: center; transition: 0.3s; padding-bottom: 20px; box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); } .nav-menu.active { left: 0; } .nav-menu li { margin: 20px 0; } .dropdown-content { position: static; background-color: transparent; box-shadow: none; display: none; } .dropdown.active .dropdown-content { display: block; } .hero h1 { font-size: 2.5rem; } .about-content { flex-direction: column; } .contact-wrapper { flex-direction: column; } .mission-vision-grid { grid-template-columns: 1fr; } }