/* style.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.98);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(135deg, #ff6c10 0%, #feae58 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav a {
    margin-left: 30px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #ff6c10;
}

/* Hero Section */
.hero {
    padding: 120px 20px;
    background: linear-gradient(135deg, #ffeaa7, #f06f05);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    align-items: center;
    gap: 40px;
}

.hero-text h1 {
    font-size: 42px;
    color: #2d3436;
    line-height: 1.3;
    margin-bottom: 15px;
}

.hero-text span {
    color: #e17055;
    font-weight: bold;
}

.hero-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
}

.hero-btn {
    background: #e17055;
    padding: 15px 28px;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
    display: inline-block;
}

.hero-btn:hover {
    background: #d35400;
    transform: translateY(-3px);
}

.hero-image {
    text-align: center;
}

.hero-image img {
    width: 508px;
    height: 712px;
    max-width: 100%;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0px 8px 20px rgba(0,0,0,0.25));
}


.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: #ff6c10;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeInUp 1s;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ff6c10 0%, #feae58 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: #ff6c10;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #ff6c10;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* Packages Section */
.packages {
    background: #f8f9fa;
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #ff6c10 0%, #feae58 100%);
    margin: 20px auto 0;
    border-radius: 2px;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.package-card {
    background: white;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 108, 16, 0.25);
}

.package-icon {
  width: 60px;
  height: 60px;
  background: #f5f5f5;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px;
}

.package-icon i {
  width: 30px;
  height: 30px;
  stroke-width: 1.6;
  color: #333;
}


.package-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ff6c10;
    font-weight: 600;
}

.package-price {
    font-size: 36px;
    font-weight: bold;
    background: linear-gradient(135deg, #ff6c10 0%, #feae58 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 15px 0;
}

.package-description {
    color: #666;
    margin-bottom: 25px;
    min-height: 60px;
    line-height: 1.6;
}

.book-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #ff6c10 0%, #feae58 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.book-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 108, 16, 0.4);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    animation: fadeIn 0.3s;
    overflow-y: auto;
}

.modal-content {
    background: white;
    margin: 50px auto;
    padding: 40px;
    border-radius: 20px;
    max-width: 550px;
    position: relative;
    animation: slideIn 0.3s;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.close {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 32px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
}

.close:hover {
    color: #333;
    transform: rotate(90deg);
}

.modal-title {
    font-size: 26px;
    margin-bottom: 30px;
    color: #ff6c10;
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff6c10;
    box-shadow: 0 0 0 3px rgba(255, 108, 16, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #ff6c10 0%, #feae58 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 108, 16, 0.4);
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.footer-info p {
    margin: 5px 0;
    font-size: 15px;
}

.footer-info strong {
    color: #feae58; /* highlight orange */
}

/* Social Section */
.footer-social {
    margin: 25px 0 10px;
}

.footer-social h4 {
    margin-bottom: 10px;
    font-size: 17px;
    font-weight: 600;
    color: #feae58;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 8px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: #ffffff20;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
}

.social-links a:hover {
    background: #feae58;
    transform: translateY(-3px);
}

.social-links svg {
    width: 22px;
    height: 22px;
    stroke: white;
    stroke-width: 1.8;
}

/* Hover effect icon berubah warna */
.social-links a:hover svg {
    stroke: #2c3e50;
}

.footer-copy {
    margin-top: 20px;
    opacity: 0.7;
    font-size: 14px;
}



/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
        text-align: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .hero p {
        font-size: 16px;
    }

    .hero-text h1 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .package-grid {
        grid-template-columns: 1fr;
    }
    
    nav a {
        margin-left: 15px;
        font-size: 14px;
    }
    
    .modal-content {
        margin: 20px;
        padding: 30px 20px;
    }

    /* Tombol Daftar di Navigation */
    .btn-daftar {
        background: linear-gradient(135deg, #ff6c10 0%, #feae58 100%);
        color: white !important;
        padding: 10px 20px;
        border-radius: 25px;
        transition: all 0.3s;
    }

    .btn-daftar:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 108, 16, 0.4);
    }

    /* About Section */
.about {
    padding: 80px 20px;
    background: #f8f9fa;
    text-align: center;
}

.about .section-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-text {
    max-width: 800px;
    margin: 10px auto 20px auto;
    font-size: 17px;
    line-height: 1.7;
    color: #333;
}

.about strong {
    color: #ff8a00; /* warna oranye biar matching dengan tema */
}

.section-people {
    margin-top: 40px;
    text-align: center;
}
.people-img {
    width: 80%;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.form-group label {
    font-weight: 600;
}

.form-group a {
    color: #007bff;
    text-decoration: underline;
}




}
